Changeset 78a71936 in mainline
- Timestamp:
- 2019-10-15T16:33:25Z (5 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- dcc4cb31
- Parents:
- 159776f
- Location:
- uspace/lib/gfx
- Files:
-
- 4 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/gfx/include/types/gfx/ops/context.h
r159776f r78a71936 40 40 41 41 #include <errno.h> 42 #include <types/gfx/bitmap.h> 42 43 #include <types/gfx/color.h> 43 44 #include <types/gfx/coord.h> … … 50 51 /** Fill rectangle using the current drawing color */ 51 52 errno_t (*fill_rect)(void *, gfx_rect_t *); 53 /** Create bitmap */ 54 errno_t (*bitmap_create)(void *, gfx_bitmap_params_t *, void *, 55 gfx_bitmap_t **); 56 /** Delete bitmap */ 57 errno_t (*bitmap_delete)(void *, gfx_bitmap_t *); 58 /** Render bitmap */ 59 errno_t (*bitmap_render)(void *, gfx_bitmap_t *, gfx_rect_t *, 60 gfx_coord2_t *); 61 /** Get bitmap allocation info */ 62 errno_t (*bitmap_get_alloc)(void *, gfx_bitmap_t *, 63 gfx_bitmap_alloc_t *); 52 64 } gfx_context_ops_t; 53 65 -
uspace/lib/gfx/meson.build
r159776f r78a71936 28 28 29 29 src = files( 30 'src/bitmap.c', 30 31 'src/color.c', 31 32 'src/context.c', -
uspace/lib/gfx/private/color.h
r159776f r78a71936 38 38 #define _GFX_PRIVATE_COLOR_H 39 39 40 #include <types/gfx/ops/context.h>41 42 40 /** Actual structure of graphics color. 43 41 *
Note:
See TracChangeset
for help on using the changeset viewer.