Changeset c8dc9ac in mainline for uspace/srv/hid/compositor


Ignore:
Timestamp:
2016-10-11T08:20:59Z (9 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
48eb2fc2
Parents:
6eda732 (diff), 523b17a (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge from lp:~werkov/helenos/various-fixes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/hid/compositor/compositor.c

    r6eda732 rc8dc9ac  
    471471                                                /* FIXME: Ghost is currently drawn based on the bounding
    472472                                                 * rectangle of the window, which is sufficient as long
    473                                                  * as the windows can be rotated only by 90 degrees. 
     473                                                 * as the windows can be rotated only by 90 degrees.
    474474                                                 * For ghost to be compatible with arbitrary-angle
    475475                                                 * rotation, it should be drawn as four lines adjusted
     
    910910                        if (!win) {
    911911                                async_answer_2(callid, ENOMEM, 0, 0);
     912                                fibril_mutex_unlock(&window_list_mtx);
    912913                                return;
    913914                        }
     
    928929                                window_destroy(win);
    929930                                async_answer_2(callid, EINVAL, 0, 0);
     931                                fibril_mutex_unlock(&window_list_mtx);
    930932                                return;
    931933                        }
     
    935937                                window_destroy(win);
    936938                                async_answer_2(callid, EINVAL, 0, 0);
     939                                fibril_mutex_unlock(&window_list_mtx);
    937940                                return;
    938941                        }
     
    10531056
    10541057        /* Create surface with respect to the retrieved mode. */
    1055         surface_t *new_surface = surface_create(new_mode.screen_width, 
     1058        surface_t *new_surface = surface_create(new_mode.screen_width,
    10561059            new_mode.screen_height, NULL, SURFACE_FLAG_SHARED);
    10571060        if (!new_surface) {
Note: See TracChangeset for help on using the changeset viewer.