Changeset 69390 in vbox for trunk/src/VBox/HostServices/SharedOpenGL/unpacker
- Timestamp:
- Oct 26, 2017 5:17:51 PM (7 years ago)
- Location:
- trunk/src/VBox/HostServices/SharedOpenGL/unpacker
- Files:
-
- 29 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/SharedOpenGL/unpacker/unpack.def
-
Property svn:keywords
changed from
Id
toId Revision
-
Property svn:keywords
changed from
-
trunk/src/VBox/HostServices/SharedOpenGL/unpacker/unpack.py
-
Property svn:keywords
changed from
Id
toId Revision
-
Property svn:keywords
changed from
-
trunk/src/VBox/HostServices/SharedOpenGL/unpacker/unpack_arrays.c
-
Property svn:keywords
changed from
Id
toId Revision
-
Property svn:keywords
changed from
-
trunk/src/VBox/HostServices/SharedOpenGL/unpacker/unpack_bounds.c
-
Property svn:keywords
changed from
Id
toId Revision
-
Property svn:keywords
changed from
-
trunk/src/VBox/HostServices/SharedOpenGL/unpacker/unpack_bufferobject.c
-
Property svn:keywords
changed from
Id
toId Revision
-
Property svn:keywords
changed from
-
trunk/src/VBox/HostServices/SharedOpenGL/unpacker/unpack_calllists.c
-
Property svn:keywords
changed from
Id
toId Revision
-
Property svn:keywords
changed from
-
trunk/src/VBox/HostServices/SharedOpenGL/unpacker/unpack_clipplane.c
-
Property svn:keywords
changed from
Id
toId Revision
-
Property svn:keywords
changed from
-
trunk/src/VBox/HostServices/SharedOpenGL/unpacker/unpack_context.c
-
Property svn:keywords
changed from
Id
toId Revision
-
Property svn:keywords
changed from
-
trunk/src/VBox/HostServices/SharedOpenGL/unpacker/unpack_drawpixels.c
-
Property svn:keywords
changed from
Id
toId Revision
-
Property svn:keywords
changed from
-
trunk/src/VBox/HostServices/SharedOpenGL/unpacker/unpack_extend.py
-
Property svn:keywords
changed from
Id
toId Revision
r63939 r69390 34 34 """) 35 35 36 -
Property svn:keywords
changed from
-
trunk/src/VBox/HostServices/SharedOpenGL/unpacker/unpack_fence.c
-
Property svn:keywords
changed from
Id
toId Revision
-
Property svn:keywords
changed from
-
trunk/src/VBox/HostServices/SharedOpenGL/unpacker/unpack_fog.c
-
Property svn:keywords
changed from
Id
toId Revision
-
Property svn:keywords
changed from
-
trunk/src/VBox/HostServices/SharedOpenGL/unpacker/unpack_framebuffer.c
r62489 r69390 1 1 /* $Id$ */ 2 3 2 /** @file 4 3 * VBox OpenGL: EXT_framebuffer_object -
trunk/src/VBox/HostServices/SharedOpenGL/unpacker/unpack_header.py
-
Property svn:keywords
changed from
Id
toId Revision
-
Property svn:keywords
changed from
-
trunk/src/VBox/HostServices/SharedOpenGL/unpacker/unpack_lights.c
-
Property svn:keywords
changed from
Id
toId Revision
-
Property svn:keywords
changed from
-
trunk/src/VBox/HostServices/SharedOpenGL/unpacker/unpack_map.c
-
Property svn:keywords
changed from
Id
toId Revision
-
Property svn:keywords
changed from
-
trunk/src/VBox/HostServices/SharedOpenGL/unpacker/unpack_materials.c
-
Property svn:keywords
changed from
Id
toId Revision
-
Property svn:keywords
changed from
-
trunk/src/VBox/HostServices/SharedOpenGL/unpacker/unpack_matrices.c
-
Property svn:keywords
changed from
Id
toId Revision
-
Property svn:keywords
changed from
-
trunk/src/VBox/HostServices/SharedOpenGL/unpacker/unpack_misc.c
-
Property svn:keywords
changed from
Id
toId Revision
-
Property svn:keywords
changed from
-
trunk/src/VBox/HostServices/SharedOpenGL/unpacker/unpack_pixelmap.c
-
Property svn:keywords
changed from
Id
toId Revision
-
Property svn:keywords
changed from
-
trunk/src/VBox/HostServices/SharedOpenGL/unpacker/unpack_point.c
-
Property svn:keywords
changed from
Id
toId Revision
-
Property svn:keywords
changed from
-
trunk/src/VBox/HostServices/SharedOpenGL/unpacker/unpack_program.c
-
Property svn:keywords
changed from
Id
toId Revision
-
Property svn:keywords
changed from
-
trunk/src/VBox/HostServices/SharedOpenGL/unpacker/unpack_readpixels.c
-
Property svn:keywords
changed from
Id
toId Revision
-
Property svn:keywords
changed from
-
trunk/src/VBox/HostServices/SharedOpenGL/unpacker/unpack_regcombiner.c
-
Property svn:keywords
changed from
Id
toId Revision
-
Property svn:keywords
changed from
-
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
-
trunk/src/VBox/HostServices/SharedOpenGL/unpacker/unpack_stipple.c
-
Property svn:keywords
changed from
Id
toId Revision
-
Property svn:keywords
changed from
-
trunk/src/VBox/HostServices/SharedOpenGL/unpacker/unpack_texture.c
-
Property svn:keywords
changed from
Id
toId Revision
-
Property svn:keywords
changed from
-
trunk/src/VBox/HostServices/SharedOpenGL/unpacker/unpack_visibleregion.c
- Property svn:executable deleted
-
Property svn:keywords
changed from
Id
toId Revision
r62489 r69390 1 1 /* $Id$ */ 2 3 2 /** @file 4 3 * VBox Packing VisibleRegion information -
trunk/src/VBox/HostServices/SharedOpenGL/unpacker/unpack_writeback.c
-
Property svn:keywords
changed from
Id
toId Revision
-
Property svn:keywords
changed from
Note:
See TracChangeset
for help on using the changeset viewer.