Searched refs:m_errorCodes (Results 1 – 2 of 2) sorted by relevance
803 return m_errorCodes.empty(); in isErrorCodeValid()807 for (int ndx = 0; ndx < (int)m_errorCodes.size(); ++ndx) in isErrorCodeValid()809 if (m_errorCodes[ndx].errorCode == errorCode) in isErrorCodeValid()818 if (m_errorCodes.empty() && errorCode == GL_NO_ERROR) in isErrorCodeRequired()822 return m_errorCodes.size() == 1 && m_errorCodes.front().errorCode == errorCode; in isErrorCodeRequired()829 addViolation(m_errorCodes, error, description); in addErrorCode()849 for (int ndx = 0; ndx < (int)m_errorCodes.size(); ++ndx) in logLegalResults()850 …validResults.push_back(std::string(glu::getErrorName(m_errorCodes[ndx].errorCode)) + " (during FBO… in logLegalResults()879 for (int ndx = 0; ndx < (int)m_errorCodes.size(); ++ndx) in logRules()880 logRule(log, glu::getErrorName(m_errorCodes[ndx].errorCode), m_errorCodes[ndx].rules); in logRules()
386 std::vector<RuleViolation> m_errorCodes; //!< Allowed GL errors, GL_NO_ERROR is not allowed member