Changeset 523b17a in mainline
- Timestamp:
- 2015-06-17T23:49:07Z (9 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c8dc9ac
- Parents:
- cf3aee19
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/compositor/compositor.c
rcf3aee19 r523b17a 470 470 /* FIXME: Ghost is currently drawn based on the bounding 471 471 * rectangle of the window, which is sufficient as long 472 * as the windows can be rotated only by 90 degrees. 472 * as the windows can be rotated only by 90 degrees. 473 473 * For ghost to be compatible with arbitrary-angle 474 474 * rotation, it should be drawn as four lines adjusted … … 909 909 if (!win) { 910 910 async_answer_2(callid, ENOMEM, 0, 0); 911 fibril_mutex_unlock(&window_list_mtx); 911 912 return; 912 913 } … … 927 928 window_destroy(win); 928 929 async_answer_2(callid, EINVAL, 0, 0); 930 fibril_mutex_unlock(&window_list_mtx); 929 931 return; 930 932 } … … 934 936 window_destroy(win); 935 937 async_answer_2(callid, EINVAL, 0, 0); 938 fibril_mutex_unlock(&window_list_mtx); 936 939 return; 937 940 } … … 1052 1055 1053 1056 /* Create surface with respect to the retrieved mode. */ 1054 surface_t *new_surface = surface_create(new_mode.screen_width, 1057 surface_t *new_surface = surface_create(new_mode.screen_width, 1055 1058 new_mode.screen_height, NULL, SURFACE_FLAG_SHARED); 1056 1059 if (!new_surface) {
Note:
See TracChangeset
for help on using the changeset viewer.