Home | History | Annotate | Download | only in functional

Lines Matching refs:UVec2

651 								ShaderUintPrecisionCase		(Context& context, const char* name, const char* desc, const char* op, EvalFunc evalFunc, glu::Precision precision, int bits, const tcu::UVec2& rangeA, const tcu::UVec2& rangeB, bool isVertexCase);
667 tcu::UVec2 m_rangeA;
668 tcu::UVec2 m_rangeB;
682 ShaderUintPrecisionCase::ShaderUintPrecisionCase (Context& context, const char* name, const char* desc, const char* op, EvalFunc evalFunc, glu::Precision precision, int bits, const tcu::UVec2& rangeA, const tcu::UVec2& rangeB, bool isVertexCase)
856 using tcu::UVec2;
868 tcu::UVec2 fullRange32U (0u, 0xffffffffu);
869 tcu::UVec2 fullRange16U (0u, 0xffffu);
870 tcu::UVec2 fullRange8U (0u, 0xffu);
929 tcu::UVec2 rangeA;
930 tcu::UVec2 rangeB;
937 { "highp_div", "in0 / in1", div<deUint32>, glu::PRECISION_HIGHP, 32, fullRange32U, UVec2(1u, 10000u) },
941 { "mediump_div", "in0 / in1", div<deUint32>, glu::PRECISION_MEDIUMP, 16, fullRange16U, UVec2(1, 1000u) },
945 { "lowp_div", "in0 / in1", div<deUint32>, glu::PRECISION_LOWP, 8, fullRange8U, UVec2(1, 50u) }