Changeset 41128 in vbox for trunk/src/VBox/GuestHost/OpenGL/include
- Timestamp:
- May 3, 2012 8:19:54 AM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 77736
- Location:
- trunk/src/VBox/GuestHost/OpenGL/include
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/GuestHost/OpenGL/include/cr_glstate.h
r41109 r41128 240 240 typedef DECLCALLBACK(CRContext*) FNCRSTATE_CONTEXT_GET(void*); 241 241 typedef FNCRSTATE_CONTEXT_GET *PFNCRSTATE_CONTEXT_GET; 242 DECLEXPORT(int32_t) crStateLoadContext(CRContext *pContext, CRHashTable * pCtxTable, PFNCRSTATE_CONTEXT_GET pfnCtxGet, PSSMHANDLE pSSM );242 DECLEXPORT(int32_t) crStateLoadContext(CRContext *pContext, CRHashTable * pCtxTable, PFNCRSTATE_CONTEXT_GET pfnCtxGet, PSSMHANDLE pSSM, uint32_t u32Version); 243 243 DECLEXPORT(void) crStateFreeShared(CRContext *pContext, CRSharedState *s); 244 244 DECLEXPORT(void) crStateFreeShared(CRContext *pContext, CRSharedState *s); -
trunk/src/VBox/GuestHost/OpenGL/include/cr_server.h
r41057 r41128 30 30 extern "C" { 31 31 #endif 32 33 #define SHCROGL_SSM_VERSION 2934 32 35 33 #define CR_MAX_WINDOWS 100 -
trunk/src/VBox/GuestHost/OpenGL/include/cr_version.h
r40124 r41128 8 8 #define CR_VERSION_H 9 9 10 #define SHCROGL_SSM_VERSION_BEFORE_CTXUSAGE_BITS 28 11 #define SHCROGL_SSM_VERSION 29 10 12 11 13 /* These define the Chromium release number. -
trunk/src/VBox/GuestHost/OpenGL/include/state/cr_attrib.h
r15532 r41128 257 257 GLboolean enabled2D[CR_MAX_TEXTURE_UNITS]; 258 258 GLboolean enabled3D[CR_MAX_TEXTURE_UNITS]; 259 # ifdef CR_ARB_texture_cube_map259 # ifdef CR_ARB_texture_cube_map 260 260 GLboolean enabledCubeMap[CR_MAX_TEXTURE_UNITS]; 261 # endif261 # endif 262 262 CRTextureObj *current1D[CR_MAX_TEXTURE_UNITS]; 263 263 CRTextureObj *current2D[CR_MAX_TEXTURE_UNITS]; 264 264 CRTextureObj *current3D[CR_MAX_TEXTURE_UNITS]; 265 # ifdef CR_ARB_texture_cube_map265 # ifdef CR_ARB_texture_cube_map 266 266 CRTextureObj *currentCubeMap[CR_MAX_TEXTURE_UNITS]; 267 # endif267 # endif 268 268 GLcolorf borderColor[4]; /* 4 = 1D, 2D, 3D and cube map textures */ 269 269 GLenum minFilter[4]; … … 271 271 GLenum wrapS[4]; 272 272 GLenum wrapT[4]; 273 # ifdef CR_OPENGL_VERSION_1_2273 # ifdef CR_OPENGL_VERSION_1_2 274 274 GLenum wrapR[4]; 275 275 GLfloat priority[4]; … … 278 278 GLint baseLevel[4]; 279 279 GLint maxLevel[4]; 280 # endif280 # endif 281 281 282 282 GLuint curTextureUnit;
Note:
See TracChangeset
for help on using the changeset viewer.