Changeset f0ccb2ab in mainline for uspace/lib/ui/src
- Timestamp:
- 2021-04-09T22:41:22Z (4 years ago)
- Branches:
- master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 4d2a4cd
- Parents:
- f536a16
- git-author:
- Jiri Svoboda <jiri@…> (2021-04-02 17:35:19)
- git-committer:
- jxsvoboda <5887334+jxsvoboda@…> (2021-04-09 22:41:22)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/ui/src/dummygc.c
rf536a16 rf0ccb2ab 43 43 static errno_t dummygc_set_color(void *, gfx_color_t *); 44 44 static errno_t dummygc_fill_rect(void *, gfx_rect_t *); 45 static errno_t dummygc_update(void *); 45 46 static errno_t dummygc_bitmap_create(void *, gfx_bitmap_params_t *, 46 47 gfx_bitmap_alloc_t *, void **); … … 53 54 .set_color = dummygc_set_color, 54 55 .fill_rect = dummygc_fill_rect, 56 .update = dummygc_update, 55 57 .bitmap_create = dummygc_bitmap_create, 56 58 .bitmap_destroy = dummygc_bitmap_destroy, … … 128 130 (void) arg; 129 131 (void) rect; 132 return EOK; 133 } 134 135 /** Update dummy GC 136 * 137 * @param arg Argument (dummy_gc_t) 138 * @return EOK on success or an error code 139 */ 140 static errno_t dummygc_update(void *arg) 141 { 142 (void) arg; 130 143 return EOK; 131 144 }
Note:
See TracChangeset
for help on using the changeset viewer.