Changeset 56946 in vbox for trunk/src/VBox
- Timestamp:
- Jul 15, 2015 6:52:00 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/SharedOpenGL/crserverlib/server_lists.c
r56566 r56946 124 124 125 125 126 #ifndef VBOX_WITH_CR_DISPLAY_LISTS 126 127 /** 127 128 * Translate an array of display list IDs from various datatypes to GLuint … … 224 225 } 225 226 } 226 227 #endif 227 228 228 229 void SERVER_DISPATCH_APIENTRY 229 230 crServerDispatchCallLists( GLsizei n, GLenum type, const GLvoid *lists ) 230 231 { 232 #ifndef VBOX_WITH_CR_DISPLAY_LISTS 231 233 if (!cr_server.sharedDisplayLists) { 232 234 /* need to translate IDs */ … … 238 240 type = GL_UNSIGNED_INT; 239 241 } 242 #endif 240 243 241 244 if (cr_server.curClient->currentCtxInfo->pContext->lists.mode == 0) { … … 250 253 } 251 254 255 #ifndef VBOX_WITH_CR_DISPLAY_LISTS 252 256 if (!cr_server.sharedDisplayLists) { 253 257 crFree((void *) lists); /* malloc'd above */ 254 258 } 259 #endif 255 260 } 256 261
Note:
See TracChangeset
for help on using the changeset viewer.