Changeset 62782 in vbox for trunk/src/VBox/GuestHost
- Timestamp:
- Jul 31, 2016 10:50:29 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 109369
- Location:
- trunk/src/VBox/GuestHost/OpenGL/include
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/GuestHost/OpenGL/include/chromium.h
r55628 r62782 39 39 # define WIN32_LEAN_AND_MEAN 40 40 # define WGL_APIENTRY __stdcall 41 # include <windows.h> 41 # ifdef VBOX 42 # include <iprt/win/windows.h> 43 # else 44 # include <windows.h> 45 # endif 42 46 #elif defined(DARWIN) 43 47 /* nothing */ … … 434 438 #endif 435 439 436 typedef void (*CR_GLXFuncPtr)( );440 typedef void (*CR_GLXFuncPtr)(void); 437 441 #ifndef GLX_ARB_get_proc_address 438 442 #define GLX_ARB_get_proc_address 1 … … 796 800 extern void APIENTRY crVBoxTexPresent(GLuint texture, GLuint cfg, GLint xPos, GLint yPos, GLint cRects, const GLint *pRects); 797 801 798 typedef int (CR_APIENTRY *CR_PROC)( );802 typedef int (CR_APIENTRY *CR_PROC)(void); 799 803 CR_PROC APIENTRY crGetProcAddress( const char *name ); 800 804 -
trunk/src/VBox/GuestHost/OpenGL/include/cr_dll.h
r15532 r62782 10 10 #if defined(WINDOWS) 11 11 #define WIN32_LEAN_AND_MEAN 12 # ifdef VBOX 13 # include <iprt/win/windows.h> 14 # else 12 15 #include <windows.h> 16 # endif 13 17 #endif 14 18 -
trunk/src/VBox/GuestHost/OpenGL/include/cr_glstate.h
r55798 r62782 208 208 DECLEXPORT(void) crStateInit(void); 209 209 DECLEXPORT(void) crStateDestroy(void); 210 DECLEXPORT(void) crStateVBoxDetachThread( );211 DECLEXPORT(void) crStateVBoxAttachThread( );210 DECLEXPORT(void) crStateVBoxDetachThread(void); 211 DECLEXPORT(void) crStateVBoxAttachThread(void); 212 212 DECLEXPORT(CRContext *) crStateCreateContext(const CRLimitsState *limits, GLint visBits, CRContext *share); 213 213 DECLEXPORT(CRContext *) crStateCreateContextEx(const CRLimitsState *limits, GLint visBits, CRContext *share, GLint presetID); 214 214 DECLEXPORT(void) crStateMakeCurrent(CRContext *ctx); 215 215 DECLEXPORT(void) crStateSetCurrent(CRContext *ctx); 216 DECLEXPORT(void) crStateCleanupCurrent( );216 DECLEXPORT(void) crStateCleanupCurrent(void); 217 217 DECLEXPORT(CRContext *) crStateGetCurrent(void); 218 218 DECLEXPORT(void) crStateDestroyContext(CRContext *ctx); … … 223 223 224 224 void crStateSyncHWErrorState(CRContext *ctx); 225 GLenum crStateCleanHWErrorState( );225 GLenum crStateCleanHWErrorState(void); 226 226 227 227 #define CR_STATE_CLEAN_HW_ERR_WARN(_s) do {\ … … 296 296 DECLEXPORT(int32_t) crStateSaveGlobals(PSSMHANDLE pSSM); 297 297 298 DECLEXPORT(CRSharedState *) crStateGlobalSharedAcquire( );299 DECLEXPORT(void) crStateGlobalSharedRelease( );298 DECLEXPORT(CRSharedState *) crStateGlobalSharedAcquire(void); 299 DECLEXPORT(void) crStateGlobalSharedRelease(void); 300 300 #endif 301 301 -
trunk/src/VBox/GuestHost/OpenGL/include/cr_server.h
r55832 r62782 44 44 #define CR_MAX_CLIENTS 64 45 45 46 /* @todo must match MaxGuestMonitors from SchemaDefs.h*/46 /** @todo must match MaxGuestMonitors from SchemaDefs.h*/ 47 47 #define CR_MAX_GUEST_MONITORS VBOX_VIDEO_MAX_SCREENS 48 48
Note:
See TracChangeset
for help on using the changeset viewer.