8 Jun
2023
8 Jun
'23
3:20 p.m.
Rémi Bernon (@rbernon) commented about dlls/win32u/sysparams.c:
return ERROR_SUCCESS; }
+static DISPLAYCONFIG_ROTATION get_dc_rotation(const DEVMODEW *devmode) +{ + if (devmode->dmFields & DM_DISPLAYORIENTATION) + return devmode->dmDisplayOrientation + 1; + else + return DISPLAYCONFIG_ROTATION_IDENTITY; +} + +static DISPLAYCONFIG_SCANLINE_ORDERING get_dc_scanline_ordering(const DEVMODEW *devmode)
```suggestion:-0+0 static DISPLAYCONFIG_SCANLINE_ORDERING get_dc_scanline_ordering( const DEVMODEW *devmode ) ``` -- https://gitlab.winehq.org/wine/wine/-/merge_requests/2957#note_35143