Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
ae231451
Commit
ae231451
authored
Apr 03, 2023
by
Alexandros Frantzis
Committed by
Alexandre Julliard
Apr 04, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winewayland.drv: Set the current mode using gdi_device_manager.
Signed-off-by:
Alexandros Frantzis
<
alexandros.frantzis@collabora.com
>
parent
4232312d
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
display.c
dlls/winewayland.drv/display.c
+4
-2
No files found.
dlls/winewayland.drv/display.c
View file @
ae231451
...
...
@@ -124,9 +124,11 @@ static void wayland_add_device_modes(const struct gdi_device_manager *device_man
RB_FOR_EACH_ENTRY
(
output_mode
,
&
output
->
modes
,
struct
wayland_output_mode
,
entry
)
{
DEVMODEW
mode
;
DEVMODEW
mode
=
{.
dmSize
=
sizeof
(
mode
)};
BOOL
mode_is_current
=
output_mode
==
output
->
current_mode
;
populate_devmode
(
output_mode
,
&
mode
);
device_manager
->
add_mode
(
&
mode
,
FALSE
,
param
);
if
(
mode_is_current
)
mode
.
dmFields
|=
DM_POSITION
;
device_manager
->
add_mode
(
&
mode
,
mode_is_current
,
param
);
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment