Changeset a3f63ac in mainline for uspace/lib/congfx
- Timestamp:
- 2019-09-24T11:13:18Z (6 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- aac5069
- Parents:
- 00e8290
- git-author:
- Jiri Svoboda <jiri@…> (2019-08-23 17:43:11)
- git-committer:
- Jiri Svoboda <jiri@…> (2019-09-24 11:13:18)
- Location:
- uspace/lib/congfx
- Files:
-
- 2 added
- 4 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/congfx/include/congfx/console.h
r00e8290 ra3f63ac 27 27 */ 28 28 29 /** @addtogroup lib gfx29 /** @addtogroup libcongfx 30 30 * @{ 31 31 */ … … 34 34 */ 35 35 36 #ifndef _ GFX_BACKEND_CONSOLE_H37 #define _ GFX_BACKEND_CONSOLE_H36 #ifndef _CONGFX_CONSOLE_H 37 #define _CONGFX_CONSOLE_H 38 38 39 39 #include <io/console.h> 40 40 #include <stdio.h> 41 #include <types/ gfx/backend/console.h>41 #include <types/congfx/console.h> 42 42 #include <types/gfx/context.h> 43 43 #include <types/gfx/ops/context.h> -
uspace/lib/congfx/include/types/congfx/console.h
r00e8290 ra3f63ac 27 27 */ 28 28 29 /** @addtogroup lib gfx29 /** @addtogroup libcongfx 30 30 * @{ 31 31 */ … … 34 34 */ 35 35 36 #ifndef _ GFX_TYPES_BACKEND_CONSOLE_H37 #define _ GFX_TYPES_BACKEND_CONSOLE_H36 #ifndef _CONGFX_TYPES_CONSOLE_H 37 #define _CONGFX_TYPES_CONSOLE_H 38 38 39 39 struct console_gc; -
uspace/lib/congfx/private/console.h
r00e8290 ra3f63ac 27 27 */ 28 28 29 /** @addtogroup lib gfx29 /** @addtogroup libcongfx 30 30 * @{ 31 31 */ … … 35 35 */ 36 36 37 #ifndef _ GFX_PRIVATE_BACKEND_CONSOLE_H38 #define _ GFX_PRIVATE_BACKEND_CONSOLE_H37 #ifndef _CONGFX_PRIVATE_CONSOLE_H 38 #define _CONGFX_PRIVATE_CONSOLE_H 39 39 40 #include <gfx/context.h> 40 41 #include <io/console.h> 41 42 #include <stdio.h> 42 #include "../context.h"43 43 44 44 /** Actual structure of graphics context. 45 45 * 46 * This is private to lib gfx. It is not visible to clients nor backends.46 * This is private to libcongfx. It is not visible to clients nor backends. 47 47 */ 48 48 struct console_gc { -
uspace/lib/congfx/src/console.c
r00e8290 ra3f63ac 27 27 */ 28 28 29 /** @addtogroup lib gfx29 /** @addtogroup libcongfx 30 30 * @{ 31 31 */ … … 38 38 */ 39 39 40 #include < gfx/backend/console.h>40 #include <congfx/console.h> 41 41 #include <gfx/context.h> 42 42 #include <gfx/render.h> 43 43 #include <io/pixel.h> 44 44 #include <stdlib.h> 45 #include "../ ../private/backend/console.h"46 #include "../ ../private/color.h"45 #include "../private/console.h" 46 #include "../private/color.h" 47 47 48 48 static errno_t console_gc_set_color(void *, gfx_color_t *);
Note:
See TracChangeset
for help on using the changeset viewer.