-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release notes: https://gitlab.freedesktop.org/wlroots/wlroots/-/releases/0.17.0 The following things were affected/added: + The output mode change event was removed in favor of the general output commit event. Remove the mode handler code instead of adapting to the changes, as there may be better ways to handle it. (https://gitlab.freedesktop.org/wlroots/wlroots/-/merge_requests/3911). + Use the wlr_scene_output_layout helper, which sets various things up that were implicilty done before. https://gitlab.freedesktop.org/wlroots/wlroots/-/merge_requests/4318 + Since the backend no longer changes the ouput mode behind our code's back, we handle listen to the `request_state` event to have the previous behavior. https://gitlab.freedesktop.org/wlroots/wlroots/-/merge_requests/2693 + Use the wlr_output_state event to atomically update the output state upon initialization. + Change where the xdg map events are stored: https://gitlab.freedesktop.org/wlroots/wlroots/-/merge_requests/4043
- Loading branch information
Showing
13 changed files
with
52 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
#include <hrt/hrt_input.h> | ||
|
||
#include <wlr/types/wlr_xcursor_manager.h> | ||
#include <wlr/types/wlr_cursor.h> | ||
|
||
void hrt_seat_set_cursor_img(struct hrt_seat *seat, char *img_name) { | ||
seat->cursor_image = img_name; | ||
wlr_xcursor_manager_set_cursor_image(seat->xcursor_manager, | ||
seat->cursor_image, seat->cursor); | ||
wlr_cursor_set_xcursor(seat->cursor, seat->xcursor_manager, | ||
seat->cursor_image); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters