Changeset 33595 in vbox for trunk/src/VBox/HostServices/SharedOpenGL/render
- Timestamp:
- Oct 29, 2010 10:35:00 AM (14 years ago)
- Location:
- trunk/src/VBox/HostServices/SharedOpenGL/render
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/SharedOpenGL/render/renderspu_cocoa_helper.m
r33540 r33595 70 70 case GL_OUT_OF_MEMORY: errStr = RTStrDup("GL_OUT_OF_MEMORY"); break; 71 71 case GL_TABLE_TOO_LARGE: errStr = RTStrDup("GL_TABLE_TOO_LARGE"); break; 72 default: errStr = RTStrDup("UNK OWN"); break;72 default: errStr = RTStrDup("UNKNOWN"); break; 73 73 } 74 74 DEBUG_MSG(("%s:%d: glError %d (%s)\n", file, line, g, errStr)); … … 1111 1111 if ([m_pSharedGLCtx view] != self) 1112 1112 { 1113 DEBUG_MSG(("renderFBOToView: not curre ct view of shared ctx!"));1113 DEBUG_MSG(("renderFBOToView: not current view of shared ctx!")); 1114 1114 [m_pSharedGLCtx setView: self]; 1115 1115 [self updateViewport]; … … 1253 1253 - (void)setVisibleRegions:(GLint)cRects paRects:(GLint*)paRects 1254 1254 { 1255 DEBUG_MSG_1(("New region rec ieved\n"));1255 DEBUG_MSG_1(("New region received\n")); 1256 1256 1257 1257 [self clearVisibleRegions]; -
trunk/src/VBox/HostServices/SharedOpenGL/render/renderspu_wgl.c
r27889 r33595 365 365 if ( !desktop ) 366 366 { 367 crError( "Render SPU: Couldn't a quire input desktop" );367 crError( "Render SPU: Couldn't acquire input desktop" ); 368 368 return GL_FALSE; 369 369 } … … 556 556 if ( !desktop ) 557 557 { 558 crError( "Render SPU: Couldn't a quire input desktop" );558 crError( "Render SPU: Couldn't acquire input desktop" ); 559 559 return GL_FALSE; 560 560 }
Note:
See TracChangeset
for help on using the changeset viewer.