2 Simple DirectMedia Layer
3 Copyright (C) 1997-2015 Sam Lantinga <slouken@libsdl.org>
5 This software is provided 'as-is', without any express or implied
6 warranty. In no event will the authors be held liable for any damages
7 arising from the use of this software.
9 Permission is granted to anyone to use this software for any purpose,
10 including commercial applications, and to alter it and redistribute it
11 freely, subject to the following restrictions:
13 1. The origin of this software must not be misrepresented; you must not
14 claim that you wrote the original software. If you use this software
15 in a product, an acknowledgment in the product documentation would be
16 appreciated but is not required.
17 2. Altered source versions must be plainly marked as such, and must not be
18 misrepresented as being the original software.
19 3. This notice may not be removed or altered from any source distribution.
22 /* Windows includes: */
24 #ifdef __cplusplus_winrt
29 #include "SDL_video.h"
30 #include "SDL_events.h"
32 #if NTDDI_VERSION >= NTDDI_WINBLUE /* ApplicationView's functionality only becomes
33 useful for SDL in Win[Phone] 8.1 and up.
34 Plus, it is not available at all in WinPhone 8.0. */
35 #define SDL_WINRT_USE_APPLICATIONVIEW 1
39 #include "../SDL_sysvideo.h"
40 #include "../SDL_egl_c.h"
43 /* Private display data */
44 typedef struct SDL_VideoData {
45 /* An object created by ANGLE/WinRT (OpenGL ES 2 for WinRT) that gets
46 * passed to eglGetDisplay and eglCreateWindowSurface:
48 IUnknown *winrtEglWindow;
51 /* The global, WinRT, SDL Window.
52 For now, SDL/WinRT only supports one window (due to platform limitations of
55 extern SDL_Window * WINRT_GlobalSDLWindow;
57 /* Updates one or more SDL_Window flags, by querying the OS' native windowing APIs.
58 SDL_Window flags that can be updated should be specified in 'mask'.
60 extern void WINRT_UpdateWindowFlags(SDL_Window * window, Uint32 mask);
61 extern "C" Uint32 WINRT_DetectWindowFlags(SDL_Window * window); /* detects flags w/o applying them */
63 /* Display mode internals */
66 // Windows::Graphics::Display::DisplayOrientations currentOrientation;
67 //} SDL_DisplayModeData;
69 #ifdef __cplusplus_winrt
71 /* A convenience macro to get a WinRT display property */
72 #if NTDDI_VERSION > NTDDI_WIN8
73 #define WINRT_DISPLAY_PROPERTY(NAME) (Windows::Graphics::Display::DisplayInformation::GetForCurrentView()->NAME)
75 #define WINRT_DISPLAY_PROPERTY(NAME) (Windows::Graphics::Display::DisplayProperties::NAME)
78 /* Converts DIPS to physical pixels */
79 #define WINRT_DIPS_TO_PHYSICAL_PIXELS(DIPS) ((int)(0.5f + (((float)(DIPS) * (float)WINRT_DISPLAY_PROPERTY(LogicalDpi)) / 96.f)))
82 /* Internal window data */
85 SDL_Window *sdlWindow;
86 Platform::Agile<Windows::UI::Core::CoreWindow> coreWindow;
87 #ifdef SDL_VIDEO_OPENGL_EGL
88 EGLSurface egl_surface;
90 #if SDL_WINRT_USE_APPLICATIONVIEW
91 Windows::UI::ViewManagement::ApplicationView ^ appView;
95 #endif // ifdef __cplusplus_winrt