Home | History | Annotate | Download | only in glshared

Lines Matching full:refvalue

1335 			const glw::GLint refValue = roundGLfloatToNearestIntegerHalfDown<glw::GLint>(minValue);
1337 if (state.getIntAccess() < refValue)
1340 buf << "Expected greater or equal to " << refValue << ", got " << state.getIntAccess();
1359 const glw::GLint64 refValue = roundGLfloatToNearestIntegerHalfDown<glw::GLint64>(minValue);
1361 if (state.getInt64Access() < refValue)
1364 buf << "Expected greater or equal to " << refValue << ", got " << state.getInt64Access();
1389 const glw::GLint refValue = roundGLfloatToNearestIntegerHalfUp<glw::GLint>(maxValue);
1391 if (state.getIntAccess() > refValue)
1394 buf << "Expected less or equal to " << refValue << ", got " << state.getIntAccess();
1413 const glw::GLint64 refValue = roundGLfloatToNearestIntegerHalfUp<glw::GLint64>(maxValue);
1415 if (state.getInt64Access() > refValue)
1418 buf << "Expected less or equal to " << refValue << ", got " << state.getInt64Access();
1829 void verifyStateBoolean (tcu::ResultCollector& result, glu::CallLogWrapper& gl, glw::GLenum target, bool refValue, QueryType type)
1836 verifyBoolean(result, state, refValue);
1839 void verifyStateInteger (tcu::ResultCollector& result, glu::CallLogWrapper& gl, glw::GLenum target, int refValue, QueryType type)
1846 verifyInteger(result, state, refValue);