Home
last modified time | relevance | path

Searched refs:m_errorCodes (Results 1 – 2 of 2) sorted by relevance

/aosp_15_r20/external/deqp/modules/glshared/
H A DglsFboUtil.cpp784 return m_errorCodes.empty(); in isErrorCodeValid()
788 for (int ndx = 0; ndx < (int)m_errorCodes.size(); ++ndx) in isErrorCodeValid()
790 if (m_errorCodes[ndx].errorCode == errorCode) in isErrorCodeValid()
799 if (m_errorCodes.empty() && errorCode == GL_NO_ERROR) in isErrorCodeRequired()
803 return m_errorCodes.size() == 1 && m_errorCodes.front().errorCode == errorCode; in isErrorCodeRequired()
810 addViolation(m_errorCodes, error, description); in addErrorCode()
830 for (int ndx = 0; ndx < (int)m_errorCodes.size(); ++ndx) in logLegalResults()
831 validResults.push_back(std::string(glu::getErrorName(m_errorCodes[ndx].errorCode)) + in logLegalResults()
861 for (int ndx = 0; ndx < (int)m_errorCodes.size(); ++ndx) in logRules()
862 logRule(log, glu::getErrorName(m_errorCodes[ndx].errorCode), m_errorCodes[ndx].rules); in logRules()
H A DglsFboUtil.hpp411 std::vector<RuleViolation> m_errorCodes; //!< Allowed GL errors, GL_NO_ERROR is not allowed member