Lines Matching refs:GLint64
54 GLint64 expandGLFloatToInteger (GLfloat f) in expandGLFloatToInteger()
56 const GLuint64 referenceValue = (GLint64)(f * 2147483647.0); in expandGLFloatToInteger()
60 GLint clampToGLint (GLint64 val) in clampToGLint()
62 …return (GLint)de::clamp<GLint64>(val, std::numeric_limits<GLint>::min(), std::numeric_limits<GLint… in clampToGLint()
510 …const GLint64 expectedGLStateMax = StateQueryUtil::roundGLfloatToNearestIntegerHalfUp<GLint64>(ref… in verifyFloat()
511 …const GLint64 expectedGLStateMin = StateQueryUtil::roundGLfloatToNearestIntegerHalfDown<GLint64>(r… in verifyFloat()
513 StateQueryMemoryWriteGuard<GLint64> state; in verifyFloat()
534 StateQueryMemoryWriteGuard<GLint64> state; in verifyFloatExpanded()
540 const GLint64 expectedGLStateMax = expandGLFloatToInteger(reference) + FLOAT_EXPANSION_E_64; in verifyFloatExpanded()
541 const GLint64 expectedGLStateMin = expandGLFloatToInteger(reference) - FLOAT_EXPANSION_E_64; in verifyFloatExpanded()
545 …edGLStateMin) << "," << toHex(expectedGLStateMax) << "]; got " << toHex((GLint64)state) << TestLog… in verifyFloatExpanded()
559 StateQueryMemoryWriteGuard<GLint64[2]> floatVector2; in verifyFloat2Expanded()
565 const GLint64 referenceAsGLintMin[] = in verifyFloat2Expanded()
570 const GLint64 referenceAsGLintMax[] = in verifyFloat2Expanded()
597 StateQueryMemoryWriteGuard<GLint64[4]> floatVector4; in verifyFloat4Color()
603 const GLint64 referenceAsGLintMin[] = in verifyFloat4Color()
610 const GLint64 referenceAsGLintMax[] = in verifyFloat4Color()
644 StateQueryMemoryWriteGuard<GLint64[2]> range; in verifyFloatRange()
650 const GLint64 testRangeAsGLint[] = in verifyFloatRange()
652 StateQueryUtil::roundGLfloatToNearestIntegerHalfUp<GLint64>(min), in verifyFloatRange()
653 StateQueryUtil::roundGLfloatToNearestIntegerHalfDown<GLint64>(max) in verifyFloatRange()
677 StateQueryMemoryWriteGuard<GLint64> state; in verifyFloatGreaterOrEqual()
683 …const GLint64 referenceAsInt = StateQueryUtil::roundGLfloatToNearestIntegerHalfDown<GLint64>(refer… in verifyFloatGreaterOrEqual()