Lines Matching defs:name
159 BaseRenderingTestCase (tcu::TestContext& context, const std::string& name, VkSampleCountFlagBits sampleCount = VK_SAMPLE_COUNT_1_BIT, deBool flatshade = DE_FALSE);
169 BaseRenderingTestCase::BaseRenderingTestCase (tcu::TestContext& context, const std::string& name, VkSampleCountFlagBits sampleCount, deBool flatshade)
170 : TestCase(context, name)
1835 std::string& name,
1839 : BaseRenderingTestCase (context, name, sampleCount)
2285 std::string name,
2300 std::string name,
2304 : BaseRenderingTestCase (context, name, sampleCount)
2417 BaseTestCase (tcu::TestContext& context, const std::string& name, VkSampleCountFlagBits sampleCount = VK_SAMPLE_COUNT_1_BIT)
2418 : BaseRenderingTestCase(context, name, sampleCount)
2662 const std::string& name,
2665 : BaseRenderingTestCase (context, name, sampleCount)
4781 const std::string& name,
4790 : BaseRenderingTestCase (context, name, sampleCount)
5323 FillRuleTestCase (tcu::TestContext& context, const std::string& name, FillRuleTestInstance::FillRuleCaseType type, VkSampleCountFlagBits sampleCount = VK_SAMPLE_COUNT_1_BIT)
5324 : BaseRenderingTestCase (context, name, sampleCount)
5616 CullingTestCase (tcu::TestContext& context, const std::string& name, VkCullModeFlags cullMode, VkPrimitiveTopology primitiveTopology, VkFrontFace frontFace, VkPolygonMode polygonMode, VkSampleCountFlagBits sampleCount = VK_SAMPLE_COUNT_1_BIT)
5617 : BaseRenderingTestCase (context, name, sampleCount)
6110 DiscardTestCase (tcu::TestContext& context, const std::string& name, VkPrimitiveTopology primitiveTopology, deBool queryFragmentShaderInvocations, VkSampleCountFlagBits sampleCount = VK_SAMPLE_COUNT_1_BIT)
6111 : BaseRenderingTestCase (context, name, sampleCount)
6361 TriangleInterpolationTestCase (tcu::TestContext& context, const std::string& name, VkPrimitiveTopology primitiveTopology, int flags, VkSampleCountFlagBits sampleCount = VK_SAMPLE_COUNT_1_BIT)
6362 : BaseRenderingTestCase (context, name, sampleCount, (flags & INTERPOLATIONFLAGS_FLATSHADE) != 0)
6639 const std::string& name,
6645 : BaseRenderingTestCase (context, name, sampleCount, (flags & INTERPOLATIONFLAGS_FLATSHADE) != 0)
6682 StrideZeroCase (tcu::TestContext& testCtx, const std::string& name, const Params& params)
6683 : vkt::TestCase (testCtx, name)
6931 CullAndPrimitiveIdCase (tcu::TestContext& testCtx, const std::string& name)
6932 : vkt::TestCase(testCtx, name)
7195 PolygonModeLargePointsCase (tcu::TestContext& testCtx, const std::string& name, const PolygonModeLargePointsConfig& config)
7196 : vkt::TestCase (testCtx, name)
7766 const std::string& name,
7768 : BaseRenderingTestCase (context, name, VK_SAMPLE_COUNT_1_BIT)
8238 const char* name;
8258 const char* name;
8277 const std::string name = std::string(cullModes[cullModeNdx].prefix) + primitiveTypes[primitiveNdx].name + frontOrders[frontOrderNdx].postfix + polygonModes[polygonModeNdx].name;
8279 culling->addChild(new CullingTestCase(testCtx, name, cullModes[cullModeNdx].mode, primitiveTypes[primitiveNdx].type, frontOrders[frontOrderNdx].mode, polygonModes[polygonModeNdx].mode));
8292 const char* name;
8306 const char* name;
8317 tcu::TestCaseGroup* const primitive = new tcu::TestCaseGroup(testCtx, primitiveTypes[primitiveNdx].name);
8321 const std::string name = std::string(queryPipeline[useQueryNdx].name);
8323 primitive->addChild(new DiscardTestCase(testCtx, name, primitiveTypes[primitiveNdx].type, queryPipeline[useQueryNdx].useQuery));
8337 const char* name;
8377 const char* name;
8415 tcu::TestCaseGroup* const primitiveGroup = new tcu::TestCaseGroup(testCtx, primitiveTypes[primitiveTypeNdx].name, "Primitive tests");
8440 overestimateNormalSizes[overestimateSizesNdx].name,
8446 overestimateNormalSizes[overestimateSizesNdx].name,
8452 overestimateNormalSizes[overestimateSizesNdx].name,
8479 overestimateDegenerate[overestimateSizesNdx].name,
8485 overestimateDegenerate[overestimateSizesNdx].name,
8509 tcu::TestCaseGroup* const primitiveGroup = new tcu::TestCaseGroup(testCtx, primitiveTypes[primitiveTypeNdx].name, "Primitive tests");
8542 underestimateLineWidths[underestimateWidthNdx].name,
8554 underestimatePointSizes[underestimatePointSizeNdx].name,
8589 underestimateLineWidths[underestimateWidthNdx].name,
8882 std::string name;
8898 const std::string fileName = cases[i].name + ".amber";
8899 cts_amber::AmberTestCase* testCase = cts_amber::createAmberTestCase(testCtx, cases[i].name.c_str(), dataDir, fileName);
8919 std::string name;
8974 const std::string fileName = cases[i].name + ".amber";
8975 cts_amber::AmberTestCase* testCase = cts_amber::createAmberTestCase(testCtx, cases[i].name.c_str(), dataDir, fileName, requirements, imageRequirements);
9026 tcu::TestCaseGroup* createTests (tcu::TestContext& testCtx, const std::string& name)
9028 return createTestGroup(testCtx, name.c_str(), createRasterizationTests);