• Home
  • Raw
  • Download

Lines Matching refs:getFloatAccess

176 glw::GLfloat& QueriedState::getFloatAccess (void)  in getFloatAccess()  function in deqp::gls::StateQueryUtil::QueriedState
1023 if (state.getFloatAccess() != reference) in verifyBoolean()
1026 buf << "Expected " << reference << ", got " << state.getFloatAccess(); in verifyBoolean()
1085 if (state.getFloatAccess() < refValueMin || in verifyInteger()
1086 state.getFloatAccess() > refValueMax || in verifyInteger()
1087 deIsNaN(state.getFloatAccess())) in verifyInteger()
1092 buf << "Expected " << refValueMin << ", got " << state.getFloatAccess(); in verifyInteger()
1094 …"Expected in range [" << refValueMin << ", " << refValueMax << "], got " << state.getFloatAccess(); in verifyInteger()
1159 …if (state.getFloatAccess() < deInt32ToFloatRoundToNegInf(minValue) || deIsNaN(state.getFloatAccess in verifyIntegerMin()
1162 buf << "Expected greater or equal to " << minValue << ", got " << state.getFloatAccess(); in verifyIntegerMin()
1213 …if (state.getFloatAccess() > deInt32ToFloatRoundToPosInf(maxValue) || deIsNaN(state.getFloatAccess in verifyIntegerMax()
1216 buf << "Expected less or equal to " << maxValue << ", got " << state.getFloatAccess(); in verifyIntegerMax()
1267 if (state.getFloatAccess() != expected) in verifyFloat()
1270 buf << "Expected " << expected << ", got " << state.getFloatAccess(); in verifyFloat()
1348 if (state.getFloatAccess() < minValue || deIsNaN(state.getFloatAccess())) in verifyFloatMin()
1351 buf << "Expected greater or equal to " << minValue << ", got " << state.getFloatAccess(); in verifyFloatMin()
1402 if (state.getFloatAccess() > maxValue || deIsNaN(state.getFloatAccess())) in verifyFloatMax()
1405 buf << "Expected less or equal to " << maxValue << ", got " << state.getFloatAccess(); in verifyFloatMax()
1905 if (stateA.getFloatAccess() != stateB.getFloatAccess()) in verifyStateIntegerEqualToOther()