Lines Matching refs:getFloatAccess
176 glw::GLfloat& QueriedState::getFloatAccess (void)
1023 if (state.getFloatAccess() != reference)
1026 buf << "Expected " << reference << ", got " << state.getFloatAccess();
1085 if (state.getFloatAccess() < refValueMin ||
1086 state.getFloatAccess() > refValueMax ||
1087 deIsNaN(state.getFloatAccess()))
1092 buf << "Expected " << refValueMin << ", got " << state.getFloatAccess();
1094 buf << "Expected in range [" << refValueMin << ", " << refValueMax << "], got " << state.getFloatAccess();
1159 if (state.getFloatAccess() < deInt32ToFloatRoundToNegInf(minValue) || deIsNaN(state.getFloatAccess()))
1162 buf << "Expected greater or equal to " << minValue << ", got " << state.getFloatAccess();
1213 if (state.getFloatAccess() > deInt32ToFloatRoundToPosInf(maxValue) || deIsNaN(state.getFloatAccess()))
1216 buf << "Expected less or equal to " << maxValue << ", got " << state.getFloatAccess();
1267 if (state.getFloatAccess() != expected)
1270 buf << "Expected " << expected << ", got " << state.getFloatAccess();
1348 if (state.getFloatAccess() < minValue || deIsNaN(state.getFloatAccess()))
1351 buf << "Expected greater or equal to " << minValue << ", got " << state.getFloatAccess();
1402 if (state.getFloatAccess() > maxValue || deIsNaN(state.getFloatAccess()))
1405 buf << "Expected less or equal to " << maxValue << ", got " << state.getFloatAccess();
1905 if (stateA.getFloatAccess() != stateB.getFloatAccess())