Lines Matching refs:TestCaseGroup
51 class BasicExpressionGroup : public TestCaseGroup
55 : TestCaseGroup(context, "basic_expression", "Basic arithmetic expressions") in BasicExpressionGroup()
63 …tcu::TestCaseGroup* vertexGroup = new tcu::TestCaseGroup(m_testCtx, "vertex", "Vertex-only tests"); in init()
66 …tcu::TestCaseGroup* fragmentGroup = new tcu::TestCaseGroup(m_testCtx, "fragment", "Fragment-only t… in init()
69 …tcu::TestCaseGroup* combinedGroup = new tcu::TestCaseGroup(m_testCtx, "combined", "Combined tests"… in init()
81 class ScalarConversionGroup : public TestCaseGroup
85 : TestCaseGroup(context, "scalar_conversion", "Scalar conversions") in ScalarConversionGroup()
94 …tcu::TestCaseGroup* vertexGroup = new tcu::TestCaseGroup(m_testCtx, "vertex", "Vertex-only tests"); in init()
97 …tcu::TestCaseGroup* fragmentGroup = new tcu::TestCaseGroup(m_testCtx, "fragment", "Fragment-only t… in init()
100 …tcu::TestCaseGroup* combinedGroup = new tcu::TestCaseGroup(m_testCtx, "combined", "Combined tests"… in init()
112 class SwizzleGroup : public TestCaseGroup
116 : TestCaseGroup(context, "swizzle", "Vector swizzles") in SwizzleGroup()
126 …tcu::TestCaseGroup* vertexGroup = new tcu::TestCaseGroup(m_testCtx, "vertex", "Vertex-only tests"); in init()
129 …tcu::TestCaseGroup* fragmentGroup = new tcu::TestCaseGroup(m_testCtx, "fragment", "Fragment-only t… in init()
140 class ComparisonOpsGroup : public TestCaseGroup
144 : TestCaseGroup(context, "comparison_ops", "Comparison operators") in ComparisonOpsGroup()
154 …tcu::TestCaseGroup* vertexGroup = new tcu::TestCaseGroup(m_testCtx, "vertex", "Vertex-only tests"); in init()
157 …tcu::TestCaseGroup* fragmentGroup = new tcu::TestCaseGroup(m_testCtx, "fragment", "Fragment-only t… in init()
168 class ConditionalsGroup : public TestCaseGroup
172 : TestCaseGroup(context, "conditionals", "Conditional control flow (if-else)") in ConditionalsGroup()
188 …tcu::TestCaseGroup* vertexGroup = new tcu::TestCaseGroup(m_testCtx, "vertex", "Vertex-only tests"); in init()
191 …tcu::TestCaseGroup* fragmentGroup = new tcu::TestCaseGroup(m_testCtx, "fragment", "Fragment-only t… in init()
194 …tcu::TestCaseGroup* combinedGroup = new tcu::TestCaseGroup(m_testCtx, "combined", "Combined tests"… in init()
206 class TrigonometricGroup : public TestCaseGroup
210 : TestCaseGroup(context, "trigonometric", "Trigonometric built-in functions") in TrigonometricGroup()
221 …tcu::TestCaseGroup* vertexGroup = new tcu::TestCaseGroup(m_testCtx, "vertex", "Vertex-only tests"); in init()
224 …tcu::TestCaseGroup* fragmentGroup = new tcu::TestCaseGroup(m_testCtx, "fragment", "Fragment-only t… in init()
235 class ExponentialGroup : public TestCaseGroup
239 : TestCaseGroup(context, "exponential", "Exponential built-in functions") in ExponentialGroup()
250 …tcu::TestCaseGroup* vertexGroup = new tcu::TestCaseGroup(m_testCtx, "vertex", "Vertex-only tests"); in init()
253 …tcu::TestCaseGroup* fragmentGroup = new tcu::TestCaseGroup(m_testCtx, "fragment", "Fragment-only t… in init()
264 class TextureGroup : public TestCaseGroup
268 : TestCaseGroup(context, "texture", "Texture lookups") in TextureGroup()
284 …tcu::TestCaseGroup* vertexGroup = new tcu::TestCaseGroup(m_testCtx, "vertex", "Vertex-only tests"); in init()
287 …tcu::TestCaseGroup* fragmentGroup = new tcu::TestCaseGroup(m_testCtx, "fragment", "Fragment-only t… in init()
299 class AllFeaturesGroup : public TestCaseGroup
303 : TestCaseGroup(context, "all_features", "All features enabled") in AllFeaturesGroup()
330 …tcu::TestCaseGroup* vertexGroup = new tcu::TestCaseGroup(m_testCtx, "vertex", "Vertex-only tests"); in init()
333 …tcu::TestCaseGroup* fragmentGroup = new tcu::TestCaseGroup(m_testCtx, "fragment", "Fragment-only t… in init()
347 : TestCaseGroup(context, "random", "Random shaders") in RandomShaderTests()