• Home
  • Raw
  • Download

Lines Matching refs:TestCaseGroup

49 class BasicExpressionGroup : public TestCaseGroup
53 : TestCaseGroup(context, "basic_expression", "Basic arithmetic expressions") in BasicExpressionGroup()
61 …tcu::TestCaseGroup* vertexGroup = new tcu::TestCaseGroup(m_testCtx, "vertex", "Vertex-only tests"); in init()
64 …tcu::TestCaseGroup* fragmentGroup = new tcu::TestCaseGroup(m_testCtx, "fragment", "Fragment-only t… in init()
67 …tcu::TestCaseGroup* combinedGroup = new tcu::TestCaseGroup(m_testCtx, "combined", "Combined tests"… in init()
79 class ScalarConversionGroup : public TestCaseGroup
83 : TestCaseGroup(context, "scalar_conversion", "Scalar conversions") in ScalarConversionGroup()
92 …tcu::TestCaseGroup* vertexGroup = new tcu::TestCaseGroup(m_testCtx, "vertex", "Vertex-only tests"); in init()
95 …tcu::TestCaseGroup* fragmentGroup = new tcu::TestCaseGroup(m_testCtx, "fragment", "Fragment-only t… in init()
98 …tcu::TestCaseGroup* combinedGroup = new tcu::TestCaseGroup(m_testCtx, "combined", "Combined tests"… in init()
110 class SwizzleGroup : public TestCaseGroup
114 : TestCaseGroup(context, "swizzle", "Vector swizzles") in SwizzleGroup()
124 …tcu::TestCaseGroup* vertexGroup = new tcu::TestCaseGroup(m_testCtx, "vertex", "Vertex-only tests"); in init()
127 …tcu::TestCaseGroup* fragmentGroup = new tcu::TestCaseGroup(m_testCtx, "fragment", "Fragment-only t… in init()
138 class ComparisonOpsGroup : public TestCaseGroup
142 : TestCaseGroup(context, "comparison_ops", "Comparison operators") in ComparisonOpsGroup()
152 …tcu::TestCaseGroup* vertexGroup = new tcu::TestCaseGroup(m_testCtx, "vertex", "Vertex-only tests"); in init()
155 …tcu::TestCaseGroup* fragmentGroup = new tcu::TestCaseGroup(m_testCtx, "fragment", "Fragment-only t… in init()
166 class ConditionalsGroup : public TestCaseGroup
170 : TestCaseGroup(context, "conditionals", "Conditional control flow (if-else)") in ConditionalsGroup()
186 …tcu::TestCaseGroup* vertexGroup = new tcu::TestCaseGroup(m_testCtx, "vertex", "Vertex-only tests"); in init()
189 …tcu::TestCaseGroup* fragmentGroup = new tcu::TestCaseGroup(m_testCtx, "fragment", "Fragment-only t… in init()
192 …tcu::TestCaseGroup* combinedGroup = new tcu::TestCaseGroup(m_testCtx, "combined", "Combined tests"… in init()
204 class TrigonometricGroup : public TestCaseGroup
208 : TestCaseGroup(context, "trigonometric", "Trigonometric built-in functions") in TrigonometricGroup()
219 …tcu::TestCaseGroup* vertexGroup = new tcu::TestCaseGroup(m_testCtx, "vertex", "Vertex-only tests"); in init()
222 …tcu::TestCaseGroup* fragmentGroup = new tcu::TestCaseGroup(m_testCtx, "fragment", "Fragment-only t… in init()
233 class ExponentialGroup : public TestCaseGroup
237 : TestCaseGroup(context, "exponential", "Exponential built-in functions") in ExponentialGroup()
248 …tcu::TestCaseGroup* vertexGroup = new tcu::TestCaseGroup(m_testCtx, "vertex", "Vertex-only tests"); in init()
251 …tcu::TestCaseGroup* fragmentGroup = new tcu::TestCaseGroup(m_testCtx, "fragment", "Fragment-only t… in init()
262 class TextureGroup : public TestCaseGroup
266 : TestCaseGroup(context, "texture", "Texture lookups") in TextureGroup()
282 …tcu::TestCaseGroup* vertexGroup = new tcu::TestCaseGroup(m_testCtx, "vertex", "Vertex-only tests"); in init()
285 …tcu::TestCaseGroup* fragmentGroup = new tcu::TestCaseGroup(m_testCtx, "fragment", "Fragment-only t… in init()
297 class AllFeaturesGroup : public TestCaseGroup
301 : TestCaseGroup(context, "all_features", "All features enabled") in AllFeaturesGroup()
328 …tcu::TestCaseGroup* vertexGroup = new tcu::TestCaseGroup(m_testCtx, "vertex", "Vertex-only tests"); in init()
331 …tcu::TestCaseGroup* fragmentGroup = new tcu::TestCaseGroup(m_testCtx, "fragment", "Fragment-only t… in init()
345 : TestCaseGroup(context, "random", "Random shaders") in RandomShaderTests()