• Home
  • Raw
  • Download

Lines Matching refs:getIntAccess

158 glw::GLint& QueriedState::getIntAccess (void)  in getIntAccess()  function in deqp::gls::StateQueryUtil::QueriedState
999 if (state.getIntAccess() != reference) in verifyBoolean()
1002 buf << "Expected " << reference << ", got " << state.getIntAccess(); in verifyBoolean()
1057 if (state.getIntAccess() != reference) in verifyInteger()
1061 …<< ") , got " << state.getIntAccess() << "(" << de::toString(tcu::Format::Hex<8>(state.getIntAcces… in verifyInteger()
1137 if (state.getIntAccess() < minValue) in verifyIntegerMin()
1140 buf << "Expected greater or equal to " << minValue << ", got " << state.getIntAccess(); in verifyIntegerMin()
1191 if (state.getIntAccess() > maxValue) in verifyIntegerMax()
1194 buf << "Expected less or equal to " << maxValue << ", got " << state.getIntAccess(); in verifyIntegerMax()
1250 if (state.getIntAccess() < refValueMin || in verifyFloat()
1251 state.getIntAccess() > refValueMax) in verifyFloat()
1256 buf << "Expected " << refValueMin << ", got " << state.getIntAccess(); in verifyFloat()
1258 …< "Expected in range [" << refValueMin << ", " << refValueMax << "], got " << state.getIntAccess(); in verifyFloat()
1337 if (state.getIntAccess() < refValue) in verifyFloatMin()
1340 buf << "Expected greater or equal to " << refValue << ", got " << state.getIntAccess(); in verifyFloatMin()
1391 if (state.getIntAccess() > refValue) in verifyFloatMax()
1394 buf << "Expected less or equal to " << refValue << ", got " << state.getIntAccess(); in verifyFloatMax()
1891 if (stateA.getIntAccess() != stateB.getIntAccess()) in verifyStateIntegerEqualToOther()