• Home
  • Raw
  • Download

Lines Matching refs:maxValue

1174 void verifyIntegerMax (tcu::ResultCollector& result, QueriedState& state, int maxValue)  in verifyIntegerMax()  argument
1180 if (maxValue < 0 && state.getBoolAccess() != true) in verifyIntegerMax()
1191 if (state.getIntAccess() > maxValue) in verifyIntegerMax()
1194 buf << "Expected less or equal to " << maxValue << ", got " << state.getIntAccess(); in verifyIntegerMax()
1202 if (state.getInt64Access() > maxValue) in verifyIntegerMax()
1205 buf << "Expected less or equal to " << maxValue << ", got " << state.getInt64Access(); in verifyIntegerMax()
1213 …if (state.getFloatAccess() > deInt32ToFloatRoundToPosInf(maxValue) || deIsNaN(state.getFloatAccess… in verifyIntegerMax()
1216 buf << "Expected less or equal to " << maxValue << ", got " << state.getFloatAccess(); in verifyIntegerMax()
1376 void verifyFloatMax (tcu::ResultCollector& result, QueriedState& state, float maxValue) in verifyFloatMax() argument
1382 if (maxValue < 0.0f && state.getBoolAccess() != true) in verifyFloatMax()
1389 const glw::GLint refValue = roundGLfloatToNearestIntegerHalfUp<glw::GLint>(maxValue); in verifyFloatMax()
1402 if (state.getFloatAccess() > maxValue || deIsNaN(state.getFloatAccess())) in verifyFloatMax()
1405 buf << "Expected less or equal to " << maxValue << ", got " << state.getFloatAccess(); in verifyFloatMax()
1413 const glw::GLint64 refValue = roundGLfloatToNearestIntegerHalfUp<glw::GLint64>(maxValue); in verifyFloatMax()
1859 …ResultCollector& result, glu::CallLogWrapper& gl, glw::GLenum target, int maxValue, QueryType type) in verifyStateIntegerMax() argument
1866 verifyIntegerMax(result, state, maxValue); in verifyStateIntegerMax()
1936 …sultCollector& result, glu::CallLogWrapper& gl, glw::GLenum target, float maxValue, QueryType type) in verifyStateFloatMax() argument
1943 verifyFloatMax(result, state, maxValue); in verifyStateFloatMax()