Changeset 978c9bc5 in mainline for uspace/srv/hid/display/display.c
- Timestamp:
- 2020-06-04T16:18:04Z (5 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- d70e7b7b
- Parents:
- dbef30f
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/display/display.c
rdbef30f r978c9bc5 553 553 errno_t rc; 554 554 ds_window_t *wnd; 555 ds_seat_t *seat; 555 556 556 557 /* Paint background */ … … 569 570 } 570 571 572 seat = ds_display_first_seat(disp); 573 while (seat != NULL) { 574 rc = ds_seat_paint_pointer(seat, rect); 575 if (rc != EOK) 576 return rc; 577 578 seat = ds_display_next_seat(seat); 579 } 580 571 581 return EOK; 572 582 }
Note:
See TracChangeset
for help on using the changeset viewer.