Lines Matching refs:minValue
1120 void verifyIntegerMin (tcu::ResultCollector& result, QueriedState& state, int minValue)
1126 if (minValue > 0 && state.getBoolAccess() != true)
1137 if (state.getIntAccess() < minValue)
1140 buf << "Expected greater or equal to " << minValue << ", got " << state.getIntAccess();
1148 if (state.getInt64Access() < minValue)
1151 buf << "Expected greater or equal to " << minValue << ", got " << state.getInt64Access();
1159 if (state.getFloatAccess() < deInt32ToFloatRoundToNegInf(minValue) || deIsNaN(state.getFloatAccess()))
1162 buf << "Expected greater or equal to " << minValue << ", got " << state.getFloatAccess();
1322 void verifyFloatMin (tcu::ResultCollector& result, QueriedState& state, float minValue)
1328 if (minValue > 0.0f && state.getBoolAccess() != true)
1335 const glw::GLint refValue = roundGLfloatToNearestIntegerHalfDown<glw::GLint>(minValue);
1348 if (state.getFloatAccess() < minValue || deIsNaN(state.getFloatAccess()))
1351 buf << "Expected greater or equal to " << minValue << ", got " << state.getFloatAccess();
1359 const glw::GLint64 refValue = roundGLfloatToNearestIntegerHalfDown<glw::GLint64>(minValue);
1849 void verifyStateIntegerMin (tcu::ResultCollector& result, glu::CallLogWrapper& gl, glw::GLenum target, int minValue, QueryType type)
1856 verifyIntegerMin(result, state, minValue);
1926 void verifyStateFloatMin (tcu::ResultCollector& result, glu::CallLogWrapper& gl, glw::GLenum target, float minValue, QueryType type)
1933 verifyFloatMin(result, state, minValue);
1986 void verifyStateIndexedIntegerMin (tcu::ResultCollector& result, glu::CallLogWrapper& gl, glw::GLenum target, int index, int minValue, QueryType type)
1993 verifyIntegerMin(result, state, minValue);
2016 void verifyStateFramebufferIntegerMin (tcu::ResultCollector& result, glu::CallLogWrapper& gl, glw::GLenum target, glw::GLenum pname, int minValue, QueryType type)
2023 verifyIntegerMin(result, state, minValue);