Changeset 56948 in vbox for trunk/src/VBox
- Timestamp:
- Jul 16, 2015 9:08:42 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/SharedOpenGL/dlm/dlm_lists.c
r56943 r56948 273 273 274 274 275 /* This routine translates guest Display List IDs in given format to host IDs. 275 /* This routine translates guest Display List IDs in given format to host IDs 276 * and return resulting IDs as an array of elements of type GL_UNSIGNED_INT. 276 277 * It is based on TranslateListIDs() function from crserverlib/server_lists.c. */ 277 278 static bool … … 366 367 if (aHostIDs) 367 368 { 369 /* Convert IDs. Resulting array contains elements of type of GL_UNSIGNED_INT. */ 368 370 if (crDLMConvertListIDs(pListState, n, type, lists, aHostIDs)) 369 dispatchTable->CallLists(n, type, aHostIDs);371 dispatchTable->CallLists(n, GL_UNSIGNED_INT, aHostIDs); 370 372 else 371 373 crDebug("DLM: CallLists() failed.");
Note:
See TracChangeset
for help on using the changeset viewer.