Changeset 53554 in vbox
- Timestamp:
- Dec 16, 2014 9:25:31 PM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 97309
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/VBoxOGLTest.h
r52622 r53554 23 23 * terms and conditions of either the GPL or the CDDL or both. 24 24 */ 25 #ifndef ___VBoxOGLTest_h __26 #define ___VBoxOGLTest_h __25 #ifndef ___VBoxOGLTest_h 26 #define ___VBoxOGLTest_h 27 27 28 28 #include <iprt/cdefs.h> … … 30 30 RT_C_DECLS_BEGIN 31 31 32 bool RTCALL VBoxOglIsOfflineRenderingAppropriate( );33 bool RTCALL VBoxOglIs3DAccelerationSupported( );32 bool RTCALL VBoxOglIsOfflineRenderingAppropriate(void ); 33 bool RTCALL VBoxOglIs3DAccelerationSupported(void); 34 34 35 35 RT_C_DECLS_END 36 36 37 #endif /* #ifndef ___VBoxOGLTest_h__*/37 #endif /* !___VBoxOGLTest_h */ -
trunk/src/VBox/HostServices/SharedOpenGL/OpenGLTest/OpenGLTest.cpp
r50406 r53554 30 30 #include <VBox/VBoxOGLTest.h> 31 31 32 bool RTCALL VBoxOglIs3DAccelerationSupported( )32 bool RTCALL VBoxOglIs3DAccelerationSupported(void) 33 33 { 34 34 if (RTEnvExist("VBOX_CROGL_FORCE_SUPPORTED")) -
trunk/src/VBox/HostServices/SharedOpenGL/OpenGLTest/OpenGLTestDarwin.cpp
r53546 r53554 34 34 #include <VBox/VBoxOGLTest.h> 35 35 36 bool RTCALL VBoxOglIsOfflineRenderingAppropriate( )36 bool RTCALL VBoxOglIsOfflineRenderingAppropriate(void) 37 37 { 38 38 /* It is assumed that it is makes sense to enable offline rendering … … 110 110 } 111 111 112 bool RTCALL VBoxOglIs3DAccelerationSupported( )112 bool RTCALL VBoxOglIs3DAccelerationSupported(void) 113 113 { 114 114 if (RTEnvExist("VBOX_CROGL_FORCE_SUPPORTED"))
Note:
See TracChangeset
for help on using the changeset viewer.