Changeset 55798 in vbox
- Timestamp:
- May 11, 2015 10:42:40 AM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 100235
- Location:
- trunk/src/VBox
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/GuestHost/OpenGL/include/cr_glstate.h
r52329 r55798 271 271 /* override default draw and read buffers to be used for offscreen rendering */ 272 272 GLint idOverrrideFBO; 273 uint32_t u32Version; 273 274 uint32_t cElements; 274 275 CRFBDataElement aElements[1]; -
trunk/src/VBox/GuestHost/OpenGL/state_tracker/state_diff.c
r55212 r55798 314 314 #endif 315 315 316 /* Before SSM version SHCROGL_SSM_VERSION_WITH_SEPARATE_DEPTH_STENCIL_BUFFERS 317 * saved state file contined invalid DEPTH/STENCIL data. In order to prevent 318 * crashes and improper guest App behavior, this data should be ignored. */ 319 if ( data->u32Version < SHCROGL_SSM_VERSION_WITH_SEPARATE_DEPTH_STENCIL_BUFFERS 320 && ( el->enmFormat == GL_DEPTH_COMPONENT 321 || el->enmFormat == GL_STENCIL_INDEX 322 || el->enmFormat == GL_DEPTH_STENCIL)) 323 continue; 324 316 325 if (el->enmFormat == GL_DEPTH_COMPONENT || el->enmFormat == GL_DEPTH_STENCIL) 317 326 { -
trunk/src/VBox/HostServices/SharedOpenGL/crserverlib/server_main.c
r55766 r55798 1289 1289 } 1290 1290 } 1291 1292 pData->u32Version = version; 1291 1293 1292 1294 pData->cElements = 0;
Note:
See TracChangeset
for help on using the changeset viewer.