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
path: root/intern
diff options
context:
space:
mode:
authorDamien Plisson <damien.plisson@yahoo.fr>2009-10-26 21:00:06 +0300
committerDamien Plisson <damien.plisson@yahoo.fr>2009-10-26 21:00:06 +0300
commit2b1705afff5dcf32d152598ae12e4dd3e1a58ab5 (patch)
tree30a938d9b5ccab30f98bf39102610a5c374b7542 /intern
parentc4067b62d14cf3a7365c6c1b6b342b7dc04780af (diff)
Cocoa/Mac:
- fix bad window context initialization bug introduced in rev # 24081
Diffstat (limited to 'intern')
-rw-r--r--intern/ghost/intern/GHOST_WindowCocoa.mm2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/ghost/intern/GHOST_WindowCocoa.mm b/intern/ghost/intern/GHOST_WindowCocoa.mm
index 42d7de3f2df..7716175b9f6 100644
--- a/intern/ghost/intern/GHOST_WindowCocoa.mm
+++ b/intern/ghost/intern/GHOST_WindowCocoa.mm
@@ -181,7 +181,7 @@ GHOST_WindowCocoa::GHOST_WindowCocoa(
GHOST_TDrawingContextType type,
const bool stereoVisual
) :
- GHOST_Window(title, left, top, width, height, state, type,stereoVisual),
+ GHOST_Window(title, left, top, width, height, state, GHOST_kDrawingContextTypeNone, stereoVisual),
m_customCursor(0)
{
NSOpenGLPixelFormatAttribute pixelFormatAttrsWindow[40];