Changeset f73a8e3 in mainline
- Timestamp:
- 2021-03-08T16:21:42Z (4 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 17fac946
- Parents:
- d6c4d40
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/congfx/src/console.c
rd6c4d40 rf73a8e3 50 50 static errno_t console_gc_set_color(void *, gfx_color_t *); 51 51 static errno_t console_gc_fill_rect(void *, gfx_rect_t *); 52 static errno_t console_gc_update(void *); 52 53 static errno_t console_gc_bitmap_create(void *, gfx_bitmap_params_t *, 53 54 gfx_bitmap_alloc_t *, void **); … … 59 60 .set_color = console_gc_set_color, 60 61 .fill_rect = console_gc_fill_rect, 62 .update = console_gc_update, 61 63 .bitmap_create = console_gc_bitmap_create, 62 64 .bitmap_destroy = console_gc_bitmap_destroy, … … 117 119 crect.p1.x, crect.p1.y); 118 120 121 return EOK; 122 } 123 124 /** Update console GC. 125 * 126 * @param arg Console GC 127 * 128 * @return EOK on success or an error code 129 */ 130 static errno_t console_gc_update(void *arg) 131 { 132 console_gc_t *cgc = (console_gc_t *) arg; 133 134 /* 135 * XXX Before actually deferring update to here (and similarly other 136 * GC implementations) need to make sure all consumers properly 137 * call update. 138 */ 139 (void) cgc; 119 140 return EOK; 120 141 }
Note:
See TracChangeset
for help on using the changeset viewer.