VirtualBox

Changeset 52263 in vbox for trunk/src/VBox/GuestHost


Ignore:
Timestamp:
Aug 4, 2014 12:02:28 PM (11 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
95360
Message:

CrOpenGL: fix err state sync

Location:
trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk

  • trunk/src/VBox

  • trunk/src/VBox/GuestHost/OpenGL/include/cr_glstate.h

    r51559 r52263  
    223223
    224224void crStateSyncHWErrorState(CRContext *ctx);
     225GLenum 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)
    225237
    226238DECLEXPORT(void) crStateFlushFunc( CRStateFlushFunc ff );
  • trunk/src/VBox/GuestHost/OpenGL/state_tracker/state_diff.c

    r46173 r52263  
    588588}
    589589
     590GLenum 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
    590609void crStateSwitchPrepare(CRContext *toCtx, CRContext *fromCtx, GLuint idDrawFBO, GLuint idReadFBO)
    591610{
     
    606625        return;
    607626
    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_misha
    615             if (cErrPrints < 5)
    616 #endif
    617             {
    618                 ++cErrPrints;
    619                 crWarning("gl error (0x%x) after context switch, ignoring.. (%d out of 5) ..", err, cErrPrints);
    620             }
    621         }
    622     }
    623627#ifdef CR_EXT_framebuffer_object
    624628    crStateFramebufferObjectReenableHW(fromCtx, toCtx, idDrawFBO, idReadFBO);
    625629#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  
    176176
    177177    CRASSERT(g_bVBoxEnableDiffOnMakeCurrent);
     178
     179    crStateSyncHWErrorState(g);
    178180
    179181    if (CHECKDIRTY(sb->buffer.dirty, negbitID))
     
    12041206        }
    12051207    }
     1208
     1209    CR_STATE_CLEAN_HW_ERR_WARN("error on hw sync");
    12061210}
    12071211
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette