Changeset 7470d97 in mainline for uspace/lib/ui/test/wdecor.c
- 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
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/ui/test/wdecor.c
r252d03c r7470d97 41 41 PCUT_TEST_SUITE(wdecor); 42 42 43 static errno_t testgc_set_clip_rect(void *, gfx_rect_t *); 43 44 static errno_t testgc_set_color(void *, gfx_color_t *); 44 45 static errno_t testgc_fill_rect(void *, gfx_rect_t *); … … 51 52 52 53 static gfx_context_ops_t ops = { 54 .set_clip_rect = testgc_set_clip_rect, 53 55 .set_color = testgc_set_color, 54 56 .fill_rect = testgc_fill_rect, … … 845 847 } 846 848 849 static errno_t testgc_set_clip_rect(void *arg, gfx_rect_t *rect) 850 { 851 (void) arg; 852 (void) rect; 853 return EOK; 854 } 855 847 856 static errno_t testgc_set_color(void *arg, gfx_color_t *color) 848 857 {
Note:
See TracChangeset
for help on using the changeset viewer.