Changeset 27074 in vbox
- Timestamp:
- Mar 5, 2010 11:33:42 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/SharedOpenGL/unpacker/unpack_pixelmap.c
r15532 r27074 9 9 void crUnpackPixelMapfv( void ) 10 10 { 11 12 13 11 GLenum map = READ_DATA( sizeof( int ) + 0, GLenum ); 12 GLsizei mapsize = READ_DATA( sizeof( int ) + 4, GLsizei ); 13 GLfloat *values = DATA_POINTER( sizeof( int ) + 8, GLfloat ); 14 14 15 16 15 cr_unpackDispatch.PixelMapfv( map, mapsize, values ); 16 INCR_VAR_PTR(); 17 17 } 18 18 19 19 void crUnpackPixelMapuiv( void ) 20 20 { 21 22 23 24 25 26 21 GLenum map = READ_DATA( sizeof( int ) + 0, GLenum ); 22 GLsizei mapsize = READ_DATA( sizeof( int ) + 4, GLsizei ); 23 GLuint *values = DATA_POINTER( sizeof( int ) + 8, GLuint ); 24 25 cr_unpackDispatch.PixelMapuiv( map, mapsize, values ); 26 INCR_VAR_PTR(); 27 27 } 28 28 29 29 void crUnpackPixelMapusv( void ) 30 30 { 31 32 33 31 GLenum map = READ_DATA( sizeof( int ) + 0, GLenum ); 32 GLsizei mapsize = READ_DATA( sizeof( int ) + 4, GLsizei ); 33 GLushort *values = DATA_POINTER( sizeof( int ) + 8, GLushort ); 34 34 35 36 35 cr_unpackDispatch.PixelMapusv( map, mapsize, values ); 36 INCR_VAR_PTR(); 37 37 }
Note:
See TracChangeset
for help on using the changeset viewer.