Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2019-11-05 17:33:23 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2019-11-05 17:38:03 +0300
commit1b46b7c42f6a7ce2e0506a1cedf6e2bd084c4894 (patch)
tree31ea8b1dee8386cb260b407c1834628b836eeba4 /intern/ghost/intern/GHOST_SystemSDL.cpp
parent8c2672db0da108b8af849b83fe148976101a1710 (diff)
Fix build errors in GHOST SDL
Diffstat (limited to 'intern/ghost/intern/GHOST_SystemSDL.cpp')
-rw-r--r--intern/ghost/intern/GHOST_SystemSDL.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/intern/ghost/intern/GHOST_SystemSDL.cpp b/intern/ghost/intern/GHOST_SystemSDL.cpp
index e3f6f4b6bb1..06a82db1de5 100644
--- a/intern/ghost/intern/GHOST_SystemSDL.cpp
+++ b/intern/ghost/intern/GHOST_SystemSDL.cpp
@@ -59,7 +59,7 @@ GHOST_IWindow *GHOST_SystemSDL::createWindow(const STR_String &title,
GHOST_GLSettings glSettings,
const bool exclusive,
const bool /* is_dialog */,
- const GHOST_TEmbedderWindowID parentWindow)
+ const GHOST_IWindow *parentWindow)
{
GHOST_WindowSDL *window = NULL;
@@ -70,10 +70,10 @@ GHOST_IWindow *GHOST_SystemSDL::createWindow(const STR_String &title,
width,
height,
state,
- parentWindow,
type,
((glSettings.flags & GHOST_glStereoVisual) != 0),
- exclusive);
+ exclusive,
+ parentWindow);
if (window) {
if (GHOST_kWindowStateFullScreen == state) {