[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [54815] trunk/blender/intern/ghost/intern: Hopefully last round of fixes for all OSes

Antony Riakiotakis kalast at gmail.com
Sun Feb 24 15:27:59 CET 2013


Revision: 54815
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=54815
Author:   psy-fi
Date:     2013-02-24 14:27:59 +0000 (Sun, 24 Feb 2013)
Log Message:
-----------
Hopefully last round of fixes for all OSes

Modified Paths:
--------------
    trunk/blender/intern/ghost/intern/GHOST_SystemCarbon.cpp
    trunk/blender/intern/ghost/intern/GHOST_SystemCarbon.h
    trunk/blender/intern/ghost/intern/GHOST_SystemCocoa.h
    trunk/blender/intern/ghost/intern/GHOST_SystemCocoa.mm
    trunk/blender/intern/ghost/intern/GHOST_SystemWin32.cpp
    trunk/blender/intern/ghost/intern/GHOST_SystemWin32.h

Modified: trunk/blender/intern/ghost/intern/GHOST_SystemCarbon.cpp
===================================================================
--- trunk/blender/intern/ghost/intern/GHOST_SystemCarbon.cpp	2013-02-24 14:02:45 UTC (rev 54814)
+++ trunk/blender/intern/ghost/intern/GHOST_SystemCarbon.cpp	2013-02-24 14:27:59 UTC (rev 54815)
@@ -411,6 +411,7 @@
 		GHOST_TWindowState state,
 		GHOST_TDrawingContextType type,
 		bool stereoVisual,
+		const bool exclusive,
 		const GHOST_TUns16 numOfAASamples,
 		const GHOST_TEmbedderWindowID parentWindow)
 {

Modified: trunk/blender/intern/ghost/intern/GHOST_SystemCarbon.h
===================================================================
--- trunk/blender/intern/ghost/intern/GHOST_SystemCarbon.h	2013-02-24 14:02:45 UTC (rev 54814)
+++ trunk/blender/intern/ghost/intern/GHOST_SystemCarbon.h	2013-02-24 14:27:59 UTC (rev 54815)
@@ -121,6 +121,7 @@
 	    GHOST_TWindowState state,
 	    GHOST_TDrawingContextType type,
 	    const bool stereoVisual,
+		const bool exclusive = false,
 	    const GHOST_TUns16 numOfAASamples = 0,
 	    const GHOST_TEmbedderWindowID parentWindow = 0
 	    );

Modified: trunk/blender/intern/ghost/intern/GHOST_SystemCocoa.h
===================================================================
--- trunk/blender/intern/ghost/intern/GHOST_SystemCocoa.h	2013-02-24 14:02:45 UTC (rev 54814)
+++ trunk/blender/intern/ghost/intern/GHOST_SystemCocoa.h	2013-02-24 14:27:59 UTC (rev 54815)
@@ -119,6 +119,7 @@
 	    GHOST_TWindowState state,
 	    GHOST_TDrawingContextType type,
 	    const bool stereoVisual = false,
+		const bool exclusive = false,
 	    const GHOST_TUns16 numOfAASamples = 0,
 	    const GHOST_TEmbedderWindowID parentWindow = 0
 	    );

Modified: trunk/blender/intern/ghost/intern/GHOST_SystemCocoa.mm
===================================================================
--- trunk/blender/intern/ghost/intern/GHOST_SystemCocoa.mm	2013-02-24 14:02:45 UTC (rev 54814)
+++ trunk/blender/intern/ghost/intern/GHOST_SystemCocoa.mm	2013-02-24 14:27:59 UTC (rev 54815)
@@ -734,6 +734,7 @@
 	GHOST_TWindowState state,
 	GHOST_TDrawingContextType type,
 	bool stereoVisual,
+	const bool exclusive,
 	const GHOST_TUns16 numOfAASamples,
 	const GHOST_TEmbedderWindowID parentWindow
 )

Modified: trunk/blender/intern/ghost/intern/GHOST_SystemWin32.cpp
===================================================================
--- trunk/blender/intern/ghost/intern/GHOST_SystemWin32.cpp	2013-02-24 14:02:45 UTC (rev 54814)
+++ trunk/blender/intern/ghost/intern/GHOST_SystemWin32.cpp	2013-02-24 14:27:59 UTC (rev 54815)
@@ -225,7 +225,7 @@
 		const STR_String& title,
 		GHOST_TInt32 left, GHOST_TInt32 top, GHOST_TUns32 width, GHOST_TUns32 height,
 		GHOST_TWindowState state, GHOST_TDrawingContextType type,
-		bool stereoVisual, const GHOST_TUns16 numOfAASamples, const GHOST_TEmbedderWindowID parentWindow)
+		bool stereoVisual, const bool exclusive, const GHOST_TUns16 numOfAASamples, const GHOST_TEmbedderWindowID parentWindow)
 {
 	GHOST_Window *window = 0;
 	window = new GHOST_WindowWin32(this, title, left, top, width, height, state, type, stereoVisual, numOfAASamples, parentWindow);

Modified: trunk/blender/intern/ghost/intern/GHOST_SystemWin32.h
===================================================================
--- trunk/blender/intern/ghost/intern/GHOST_SystemWin32.h	2013-02-24 14:02:45 UTC (rev 54814)
+++ trunk/blender/intern/ghost/intern/GHOST_SystemWin32.h	2013-02-24 14:27:59 UTC (rev 54815)
@@ -128,6 +128,7 @@
 	    GHOST_TInt32 left, GHOST_TInt32 top, GHOST_TUns32 width, GHOST_TUns32 height,
 	    GHOST_TWindowState state, GHOST_TDrawingContextType type,
 	    const bool stereoVisual = false,
+		const bool exclusive = false,
 	    const GHOST_TUns16 numOfAASamples = 0,
 	    const GHOST_TEmbedderWindowID parentWindow = 0);
 




More information about the Bf-blender-cvs mailing list