Lines Matching refs:postDrawError
1162 glw::GLenum postDrawError; in execute() local
1286 postDrawError = gl.getError(); in execute()
1298 GLU_EXPECT_NO_ERROR(postDrawError, "draw"); in execute()
1323 << glu::getErrorStr(postDrawError) << " " in execute()
1324 << ((postDrawError == GL_INVALID_OPERATION) ? ("(expected)") : ("(unexpected)")) << "\n" in execute()
1334 if (postDrawError != GL_NO_ERROR && postDrawError != GL_INVALID_OPERATION) in execute()
1336 …LT_FAIL, ("Draw: got unexpected error: " + de::toString(glu::getErrorStr(postDrawError))).c_str()); in execute()
1342 if (postDrawError == GL_NO_ERROR) in execute()
1344 else if (postDrawError == GL_INVALID_OPERATION) in execute()
1350 else if (beforeDrawValidator.getValidateStatus() == GL_FALSE && postDrawError == GL_NO_ERROR) in execute()
1355 …else if (beforeDrawValidator.getValidateStatus() == GL_FALSE && postDrawError == GL_INVALID_OPERAT… in execute()