• Home
  • Raw
  • Download

Lines Matching refs:refValue

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