- Timestamp:
- Sep 6, 2010 12:11:29 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 65574
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/SharedOpenGL/crserverlib/server_misc.c
r32240 r32247 287 287 if (siHavePBO<0) 288 288 { 289 const char *ext = gl->GetString(GL_EXTENSIONS);289 const char *ext = (const char*)gl->GetString(GL_EXTENSIONS); 290 290 siHavePBO = crStrstr(ext, "GL_ARB_pixel_buffer_object") ? 1:0; 291 291 } … … 293 293 if (siHaveFBO<0) 294 294 { 295 const char *ext = gl->GetString(GL_EXTENSIONS);295 const char *ext = (const char*)gl->GetString(GL_EXTENSIONS); 296 296 siHaveFBO = crStrstr(ext, "GL_EXT_framebuffer_object") ? 1:0; 297 297 } … … 307 307 else if (siHaveFBO==1) /*@todo more states to set and restore here*/ 308 308 { 309 GL int tID, fboID;309 GLuint tID, fboID; 310 310 GLenum status; 311 311 CRContext *ctx = crStateGetCurrent(); … … 406 406 else 407 407 { 408 GL int pboId, dRow, sRow;408 GLuint pboId, dRow, sRow; 409 409 CRContext *ctx = crStateGetCurrent(); 410 410
Note:
See TracChangeset
for help on using the changeset viewer.