Home | History | Annotate | Download | only in glshared

Lines Matching full:maxvalue

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