winemac: Add support for a high-resolution ("Retina") rendering mode.
commit1c94bf396f6ed41bf999ab1db36e645b9ad035e9
authorKen Thomases <ken@codeweavers.com>
Thu, 5 May 2016 18:53:36 +0000 (5 13:53 -0500)
committerAlexandre Julliard <julliard@winehq.org>
Fri, 6 May 2016 02:45:24 +0000 (6 11:45 +0900)
tree09710f517be6351fb98cfa4199d549cb09b56ee7
parent91733274a4bebbe388740fbcc81a1f62b3e25a78
winemac: Add support for a high-resolution ("Retina") rendering mode.

When this Retina mode is enabled and the primary display is in the user's
default configuration, Wine gets told that screen and window sizes and mouse
coordinates are twice what Cocoa reports them as in its virtual coordinate
system ("points").  The Windows apps then renders at that high resolution and
the Mac driver blits it to screen.  If the screen is actually a Retina display
in a high-DPI mode, then this extra detail will be preserved.  Otherwise, the
rendering will be downsampled and blurry.

This is intended to be combined with increasing the Windows DPI, as via winecfg.
If that is doubled to 192, then, in theory, graphical elements will remain the
same visual size on screen but be rendered with finer detail.  Unfortunately,
many Windows programs don't correctly handle non-standard DPI so the results
are not always perfect.

The registry setting to enable Retina mode is:

[HKEY_CURRENT_USER\Software\Wine\Mac Driver]
"RetinaMode"="y"

Note that this setting is not looked for in the AppDefaults\<exe name> key
because it doesn't make sense for only some processes in a Wine session to see
the high-resolution sizes and coordinates.

Signed-off-by: Ken Thomases <ken@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
14 files changed:
dlls/winemac.drv/cocoa_app.m
dlls/winemac.drv/cocoa_display.m
dlls/winemac.drv/cocoa_event.m
dlls/winemac.drv/cocoa_opengl.h
dlls/winemac.drv/cocoa_opengl.m
dlls/winemac.drv/cocoa_window.h
dlls/winemac.drv/cocoa_window.m
dlls/winemac.drv/display.c
dlls/winemac.drv/gdi.c
dlls/winemac.drv/macdrv.h
dlls/winemac.drv/macdrv_cocoa.h
dlls/winemac.drv/macdrv_main.c
dlls/winemac.drv/opengl.c
dlls/winemac.drv/surface.c