Changeset 52263 in vbox for trunk/src/VBox/GuestHost
- Timestamp:
- Aug 4, 2014 12:02:28 PM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 95360
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo changed
/branches/VBox-4.3 merged: 95356
- Property svn:mergeinfo changed
-
trunk/src/VBox
- Property svn:mergeinfo changed
/branches/VBox-4.3/src/VBox merged: 95356
- Property svn:mergeinfo changed
-
trunk/src/VBox/GuestHost/OpenGL/include/cr_glstate.h
r51559 r52263 223 223 224 224 void crStateSyncHWErrorState(CRContext *ctx); 225 GLenum crStateCleanHWErrorState(); 226 227 #define CR_STATE_CLEAN_HW_ERR_WARN(_s) do {\ 228 GLenum _err = crStateCleanHWErrorState(); \ 229 if (_err != GL_NO_ERROR) { \ 230 static int _cErrPrints = 0; \ 231 if (_cErrPrints < 5) { \ 232 ++_cErrPrints; \ 233 WARN(("%s %#x, ignoring.. (%d out of 5)", _s, _err, _cErrPrints)); \ 234 } \ 235 } \ 236 } while (0) 225 237 226 238 DECLEXPORT(void) crStateFlushFunc( CRStateFlushFunc ff ); -
trunk/src/VBox/GuestHost/OpenGL/state_tracker/state_diff.c
r46173 r52263 588 588 } 589 589 590 GLenum crStateCleanHWErrorState() 591 { 592 GLenum err; 593 while ((err = diff_api.GetError()) != GL_NO_ERROR) 594 { 595 static int cErrPrints = 0; 596 #ifndef DEBUG_misha 597 if (cErrPrints < 5) 598 #endif 599 { 600 ++cErrPrints; 601 WARN(("cleaning gl error (0x%x), ignoring.. (%d out of 5) ..", err, cErrPrints)); 602 } 603 } 604 605 return err; 606 } 607 608 590 609 void crStateSwitchPrepare(CRContext *toCtx, CRContext *fromCtx, GLuint idDrawFBO, GLuint idReadFBO) 591 610 { … … 606 625 return; 607 626 608 if (g_bVBoxEnableDiffOnMakeCurrent && fromCtx && toCtx != fromCtx)609 {610 GLenum err;611 while ((err = diff_api.GetError()) != GL_NO_ERROR)612 {613 static int cErrPrints = 0;614 #ifndef DEBUG_misha615 if (cErrPrints < 5)616 #endif617 {618 ++cErrPrints;619 crWarning("gl error (0x%x) after context switch, ignoring.. (%d out of 5) ..", err, cErrPrints);620 }621 }622 }623 627 #ifdef CR_EXT_framebuffer_object 624 628 crStateFramebufferObjectReenableHW(fromCtx, toCtx, idDrawFBO, idReadFBO); 625 629 #endif 626 } 630 631 if (g_bVBoxEnableDiffOnMakeCurrent && fromCtx && toCtx != fromCtx) 632 { 633 CR_STATE_CLEAN_HW_ERR_WARN("error on make current"); 634 } 635 } -
trunk/src/VBox/GuestHost/OpenGL/state_tracker/state_lists.c
r52260 r52263 176 176 177 177 CRASSERT(g_bVBoxEnableDiffOnMakeCurrent); 178 179 crStateSyncHWErrorState(g); 178 180 179 181 if (CHECKDIRTY(sb->buffer.dirty, negbitID)) … … 1204 1206 } 1205 1207 } 1208 1209 CR_STATE_CLEAN_HW_ERR_WARN("error on hw sync"); 1206 1210 } 1207 1211
Note:
See TracChangeset
for help on using the changeset viewer.