Changeset 7470d97 in mainline for uspace/lib/gfx/include
- Timestamp:
- 2021-04-30T15:05:06Z (4 years ago)
- Branches:
- master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 051349b
- Parents:
- 252d03c
- Location:
- uspace/lib/gfx/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/gfx/include/gfx/render.h
r252d03c r7470d97 42 42 #include <types/gfx/context.h> 43 43 44 extern errno_t gfx_set_clip_rect(gfx_context_t *, gfx_rect_t *); 44 45 extern errno_t gfx_set_color(gfx_context_t *, gfx_color_t *); 45 46 extern errno_t gfx_fill_rect(gfx_context_t *, gfx_rect_t *); -
uspace/lib/gfx/include/types/gfx/ops/context.h
r252d03c r7470d97 47 47 /** Graphics context ops */ 48 48 typedef struct { 49 /** Set clipping rectangle */ 50 errno_t (*set_clip_rect)(void *, gfx_rect_t *); 49 51 /** Set drawing color */ 50 52 errno_t (*set_color)(void *, gfx_color_t *);
Note:
See TracChangeset
for help on using the changeset viewer.