Lines Matching refs:postDrawError
888 glw::GLenum postDrawError; in execute() local
1013 postDrawError = gl.getError(); in execute()
1025 GLU_EXPECT_NO_ERROR(postDrawError, "draw"); in execute()
1051 << glu::getErrorStr(postDrawError) << " " in execute()
1052 << ((postDrawError == GL_INVALID_OPERATION) ? ("(expected)") : ("(unexpected)")) << "\n" in execute()
1062 if (postDrawError != GL_NO_ERROR && postDrawError != GL_INVALID_OPERATION) in execute()
1064 …LT_FAIL, ("Draw: got unexpected error: " + de::toString(glu::getErrorStr(postDrawError))).c_str()); in execute()
1070 if (postDrawError == GL_NO_ERROR) in execute()
1072 else if (postDrawError == GL_INVALID_OPERATION) in execute()
1078 else if (beforeDrawValidator.getValidateStatus() == GL_FALSE && postDrawError == GL_NO_ERROR) in execute()
1083 …else if (beforeDrawValidator.getValidateStatus() == GL_FALSE && postDrawError == GL_INVALID_OPERAT… in execute()