Changeset 84e74ea in mainline for uspace/srv/hid/display/window.c
- Timestamp:
- 2020-06-08T18:30:52Z (5 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- bc492d5
- Parents:
- a65b0c8
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/display/window.c
ra65b0c8 r84e74ea 84 84 bparams.rect = params->rect; 85 85 86 dgc = ds_display_get_gc(wnd->display); // XXX86 dgc = ds_display_get_gc(wnd->display); 87 87 if (dgc != NULL) { 88 88 rc = gfx_bitmap_create(dgc, &bparams, NULL, &wnd->bitmap); … … 268 268 return rc; 269 269 270 gc = ds_display_get_gc(wnd->display); // XXX270 gc = ds_display_get_gc(wnd->display); 271 271 if (gc != NULL) { 272 272 gfx_set_color(gc, color); … … 695 695 errno_t rc; 696 696 697 dgc = ds_display_get_gc(wnd->display); // XXX697 dgc = ds_display_get_gc(wnd->display); 698 698 if (dgc != NULL) { 699 699 gfx_bitmap_params_init(&bparams);
Note:
See TracChangeset
for help on using the changeset viewer.