Changeset 69390 in vbox for trunk/src/VBox/HostServices/SharedOpenGL/unpacker/unpack_shaders.c
- Timestamp:
- Oct 26, 2017 5:17:51 PM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 118714
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/SharedOpenGL/unpacker/unpack_shaders.c
-
Property svn:keywords
changed from
Id
toId Revision
r62489 r69390 1 1 /* $Id$ */ 2 3 2 /** @file 4 3 * VBox OpenGL DRI driver functions … … 265 264 void crUnpackExtendGetAttachedObjectsARB(void) 266 265 { 267 268 269 270 271 266 VBoxGLhandleARB containerObj = READ_DATA(8, VBoxGLhandleARB); 267 GLsizei maxCount = READ_DATA(12, GLsizei); 268 SET_RETURN_PTR(16); 269 SET_WRITEBACK_PTR(24); 270 cr_unpackDispatch.GetAttachedObjectsARB(containerObj, maxCount, NULL, NULL); 272 271 } 273 272 274 273 void crUnpackExtendGetInfoLogARB(void) 275 274 { 276 277 278 279 280 275 VBoxGLhandleARB obj = READ_DATA(8, VBoxGLhandleARB); 276 GLsizei maxLength = READ_DATA(12, GLsizei); 277 SET_RETURN_PTR(16); 278 SET_WRITEBACK_PTR(24); 279 cr_unpackDispatch.GetInfoLogARB(obj, maxLength, NULL, NULL); 281 280 } 282 281 … … 330 329 void crUnpackExtendGetUniformsLocations(void) 331 330 { 332 333 334 335 336 331 GLuint program = READ_DATA(8, GLuint); 332 GLsizei maxcbData = READ_DATA(12, GLsizei); 333 SET_RETURN_PTR(16); 334 SET_WRITEBACK_PTR(24); 335 cr_unpackDispatch.GetUniformsLocations(program, maxcbData, NULL, NULL); 337 336 } 338 337 -
Property svn:keywords
changed from
Note:
See TracChangeset
for help on using the changeset viewer.