Changeset 33595 in vbox for trunk/src/VBox/GuestHost/OpenGL/state_tracker
- Timestamp:
- Oct 29, 2010 10:35:00 AM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 67205
- Location:
- trunk/src/VBox/GuestHost/OpenGL/state_tracker
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/GuestHost/OpenGL/state_tracker/state_buffer.c
r26407 r33595 557 557 if (g->framebufferobject.readFB) 558 558 { 559 crStateError(__LINE__, __FILE__, GL_INVALID_OPERATION, "glReadBuffer inval ud mode while fbo is active");559 crStateError(__LINE__, __FILE__, GL_INVALID_OPERATION, "glReadBuffer invalid mode while fbo is active"); 560 560 return; 561 561 } … … 566 566 if (!g->framebufferobject.readFB) 567 567 { 568 crStateError(__LINE__, __FILE__, GL_INVALID_OPERATION, "glReadBuffer inval ud mode while fbo is inactive");568 crStateError(__LINE__, __FILE__, GL_INVALID_OPERATION, "glReadBuffer invalid mode while fbo is inactive"); 569 569 return; 570 570 } -
trunk/src/VBox/GuestHost/OpenGL/state_tracker/state_texture.c
r31808 r33595 905 905 { 906 906 crWarning( "You called glBindTexture with a target of 0x%x, but the texture you wanted was target 0x%x [1D: %x 2D: %x 3D: %x cube: %x]", (int) target, (int) tobj->target, GL_TEXTURE_1D, GL_TEXTURE_2D, GL_TEXTURE_3D, GL_TEXTURE_CUBE_MAP ); 907 crStateError(__LINE__, __FILE__, GL_INVALID_OPERATION, "Attempt to bind a texture of diffe nt dimenions");907 crStateError(__LINE__, __FILE__, GL_INVALID_OPERATION, "Attempt to bind a texture of different dimensions"); 908 908 return; 909 909 }
Note:
See TracChangeset
for help on using the changeset viewer.