Changeset b5c7cee in mainline
- Timestamp:
- 2020-03-16T13:23:13Z (5 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 1a1271d
- Parents:
- b3825aa
- git-author:
- Jiri Svoboda <jiri@…> (2020-03-15 20:22:57)
- git-committer:
- Jiri Svoboda <jiri@…> (2020-03-16 13:23:13)
- Location:
- uspace/srv/hid/display
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/display/seat.c
rb3825aa rb5c7cee 90 90 if (wnd != NULL) 91 91 ds_window_post_focus_event(wnd); 92 93 ds_window_bring_to_top(wnd); 92 94 } 93 95 -
uspace/srv/hid/display/window.c
rb3825aa rb5c7cee 108 108 gfx_rect_translate(&wnd->dpos, &crect, &drect); 109 109 110 /* Render a copyto the backbuffer */110 /* Render into the backbuffer */ 111 111 for (y = crect.p0.y; y < crect.p1.y; y++) { 112 112 for (x = crect.p0.x; x < crect.p1.x; x++) { … … 116 116 } 117 117 118 return gfx_fill_rect(ds_display_get_gc(wnd->display), &drect); 118 /* Repaint this area of the display */ 119 return ds_display_paint(wnd->display, &drect); 119 120 } 120 121 … … 183 184 gfx_rect_t swrect; 184 185 gfx_rect_t crect; 186 gfx_rect_t drect; 185 187 gfx_coord_t x, y; 186 188 pixelmap_t pixelmap; … … 212 214 /* Offset for rendering on screen = window pos + offs */ 213 215 gfx_coord2_add(&cbm->wnd->dpos, &offs, &doffs); 216 217 /* Resulting rectangle on the screen we are drawing into */ 218 gfx_rect_translate(&doffs, &crect, &drect); 214 219 215 220 rc = gfx_bitmap_get_alloc(cbm->bitmap, &alloc); … … 233 238 } 234 239 235 return gfx_bitmap_render(cbm->bitmap, &crect, &doffs); 240 /* Repaint this area of the display */ 241 return ds_display_paint(cbm->wnd->display, &drect); 236 242 } 237 243 … … 394 400 } 395 401 402 void ds_window_bring_to_top(ds_window_t *wnd) 403 { 404 ds_display_t *disp = wnd->display; 405 406 ds_display_remove_window(wnd); 407 ds_display_add_window(disp, wnd); 408 } 409 396 410 /** Get generic graphic context from window. 397 411 * -
uspace/srv/hid/display/window.h
rb3825aa rb5c7cee 53 53 extern void ds_window_destroy(ds_window_t *); 54 54 extern errno_t ds_window_resize(ds_window_t *, gfx_coord2_t *, gfx_rect_t *); 55 extern void ds_window_bring_to_top(ds_window_t *); 55 56 extern gfx_context_t *ds_window_get_ctx(ds_window_t *); 56 57 extern errno_t ds_window_paint(ds_window_t *, gfx_rect_t *);
Note:
See TracChangeset
for help on using the changeset viewer.