Home
last modified time | relevance | path

Searched refs:testGroup (Results 1 – 25 of 73) sorted by relevance

123

/external/deqp/external/vulkancts/modules/vulkan/wsi/
DvktWsiTests.cpp45 void createTypeSpecificTests (tcu::TestCaseGroup* testGroup, vk::wsi::Type wsiType) in createTypeSpecificTests() argument
47 addTestGroup(testGroup, "surface", "VkSurface Tests", createSurfaceTests, wsiType); in createTypeSpecificTests()
48 …addTestGroup(testGroup, "swapchain", "VkSwapchain Tests", createSwapchainTests, wsiType… in createTypeSpecificTests()
49 …addTestGroup(testGroup, "incremental_present", "Incremental present tests", createIncrementalP… in createTypeSpecificTests()
50 …addTestGroup(testGroup, "display_timing", "Display Timing Tests", createDisplayTimingTests,… in createTypeSpecificTests()
51 …addTestGroup(testGroup, "shared_presentable_image", "VK_KHR_shared_presentable_image tests", creat… in createTypeSpecificTests()
52 …addTestGroup(testGroup, "colorspace", "ColorSpace tests", createColorSpaceTests, wsiTy… in createTypeSpecificTests()
DvktWsiSurfaceTests.cpp1294 void createSurfaceTests (tcu::TestCaseGroup* testGroup, vk::wsi::Type wsiType) in createSurfaceTests() argument
1298 …addFunctionCase(testGroup, "create", "Create surface", createSurfaceTest, w… in createSurfaceTests()
1299 …addFunctionCase(testGroup, "create_custom_allocator", "Create surface with custom allocator", … in createSurfaceTests()
1300 …addFunctionCase(testGroup, "create_simulate_oom", "Create surface with simulating OOM", c… in createSurfaceTests()
1301 …addFunctionCase(testGroup, "query_support", "Query surface support", querySurfaceSup… in createSurfaceTests()
1302 …addFunctionCase(testGroup, "query_presentation_support", "Query native presentation support", … in createSurfaceTests()
1303 …addFunctionCase(testGroup, "query_capabilities", "Query surface capabilities", querySur… in createSurfaceTests()
1304 …addFunctionCase(testGroup, "query_capabilities2", "Query extended surface capabilities", … in createSurfaceTests()
1305 …addFunctionCase(testGroup, "query_protected_capabilities", "Query protected surface capabilities… in createSurfaceTests()
1306 …addFunctionCase(testGroup, "query_surface_counters", "Query and check available surface counter… in createSurfaceTests()
[all …]
DvktWsiSwapchainTests.cpp964 void populateSwapchainGroup (tcu::TestCaseGroup* testGroup, GroupParameters params) in populateSwapchainGroup() argument
970 …addFunctionCase(testGroup, getTestDimensionName(testDimension), "", params.function, TestParameter… in populateSwapchainGroup()
973 …addFunctionCase(testGroup, "image_swapchain_create_info", "Test VkImageSwapchainCreateInfoKHR", te… in populateSwapchainGroup()
2354 void populateRenderGroup (tcu::TestCaseGroup* testGroup, Type wsiType) in populateRenderGroup() argument
2356 …addFunctionCaseWithPrograms(testGroup, "basic", "Basic Rendering Test", getBasicRenderPrograms, ba… in populateRenderGroup()
2357 …addFunctionCaseWithPrograms(testGroup, "basic2", "Basic Rendering Test using AcquireNextImage2", g… in populateRenderGroup()
2358 …addFunctionCaseWithPrograms(testGroup, "device_group", "Basic Rendering Test using device_group", … in populateRenderGroup()
2359 …addFunctionCaseWithPrograms(testGroup, "device_group2", "Rendering Test using device_group and VkI… in populateRenderGroup()
2364 …addFunctionCaseWithPrograms(testGroup, "2swapchains", "2 Swapchains Rendering Test", getBasicRende… in populateRenderGroup()
2365 …addFunctionCaseWithPrograms(testGroup, "2swapchains2", "2 Swapchains Rendering Test using AcquireN… in populateRenderGroup()
[all …]
/external/deqp/external/vulkancts/modules/vulkan/
DvktInfoTests.cpp241 void createInfoTests (tcu::TestCaseGroup* testGroup) in createInfoTests() argument
243 addFunctionCase(testGroup, "build", "Build Info", logBuildInfo); in createInfoTests()
244 addFunctionCase(testGroup, "device", "Device Info", logDeviceInfo); in createInfoTests()
245 addFunctionCase(testGroup, "platform", "Platform Info", logPlatformInfo); in createInfoTests()
246 addFunctionCase(testGroup, "memory_limits", "Platform Memory Limits", logPlatformMemoryLimits); in createInfoTests()
248 api::createFeatureInfoInstanceTests (testGroup); in createInfoTests()
249 api::createFeatureInfoDeviceTests (testGroup); in createInfoTests()
250 api::createFeatureInfoDeviceGroupTests (testGroup); in createInfoTests()
DvktTestGroupUtil.hpp35 typedef void (*CreateChildrenFunc) (tcu::TestCaseGroup* testGroup);
36 typedef void (*CleanupGroupFunc) (tcu::TestCaseGroup* testGroup);
57 typedef void (*CreateChildrenFunc) (tcu::TestCaseGroup* testGroup, Arg0 arg0);
58 typedef void (*CleanupGroupFunc) (tcu::TestCaseGroup* testGroup, Arg0 arg0);
/external/deqp/external/vulkancts/modules/vulkan/protected_memory/
DvktProtectedMemFillUpdateCopyBufferTests.cpp408 …de::MovePtr<tcu::TestCaseGroup> testGroup (new tcu::TestCaseGroup(testCtx, "float_buffer", desc.c_… in createFillUpdateCopyBufferFloatTests() local
409 testGroup->addChild(createFillUpdateCopyBufferFloatTests(testCtx, cmdType, CMD_BUFFER_PRIMARY)); in createFillUpdateCopyBufferFloatTests()
410 testGroup->addChild(createFillUpdateCopyBufferFloatTests(testCtx, cmdType, CMD_BUFFER_SECONDARY)); in createFillUpdateCopyBufferFloatTests()
411 return testGroup.release(); in createFillUpdateCopyBufferFloatTests()
519 …de::MovePtr<tcu::TestCaseGroup> testGroup (new tcu::TestCaseGroup(testCtx, "integer_buffer", desc.… in createFillUpdateCopyBufferIntegerTests() local
520 testGroup->addChild(createFillUpdateCopyBufferIntegerTests(testCtx, cmdType, CMD_BUFFER_PRIMARY)); in createFillUpdateCopyBufferIntegerTests()
521testGroup->addChild(createFillUpdateCopyBufferIntegerTests(testCtx, cmdType, CMD_BUFFER_SECONDARY)… in createFillUpdateCopyBufferIntegerTests()
522 return testGroup.release(); in createFillUpdateCopyBufferIntegerTests()
613 …de::MovePtr<tcu::TestCaseGroup> testGroup (new tcu::TestCaseGroup(testCtx, groupName.c_str(), (des… in createFillUpdateCopyBufferUnsignedTests() local
614 testGroup->addChild(staticTests.release()); in createFillUpdateCopyBufferUnsignedTests()
[all …]
/external/deqp/external/vulkancts/modules/vulkan/api/
DvktApiFeatureInfo.hpp35 void createFeatureInfoInstanceTests (tcu::TestCaseGroup* testGroup);
36 void createFeatureInfoDeviceTests (tcu::TestCaseGroup* testGroup);
37 void createFeatureInfoDeviceGroupTests (tcu::TestCaseGroup* testGroup);
/external/deqp/external/vulkancts/modules/vulkan/draw/
DvktDrawScissorTests.cpp559 void createTests (TestCaseGroup* testGroup) in createTests() argument
561 TestContext& testCtx = testGroup->getTestContext(); in createTests()
575 testGroup->addChild(new ScissorTestCase(testCtx, "static_scissor_two_quads", "", params)); in createTests()
586 testGroup->addChild(new ScissorTestCase(testCtx, "static_scissor_two_clears", "", params)); in createTests()
597 testGroup->addChild(new ScissorTestCase(testCtx, "two_static_scissors_one_quad", "", params)); in createTests()
607testGroup->addChild(new ScissorTestCase(testCtx, "static_scissor_partially_outside_viewport", "", … in createTests()
617 testGroup->addChild(new ScissorTestCase(testCtx, "static_scissor_outside_viewport", "", params)); in createTests()
627 testGroup->addChild(new ScissorTestCase(testCtx, "static_scissor_viewport_border", "", params)); in createTests()
637 testGroup->addChild(new ScissorTestCase(testCtx, "static_scissor_max_int32", "", params)); in createTests()
650 testGroup->addChild(new ScissorTestCase(testCtx, "16_static_scissors", "", params)); in createTests()
[all …]
DvktDrawDifferingInterpolationTests.cpp337 void createTests (tcu::TestCaseGroup* testGroup) in createTests() argument
339 tcu::TestContext& testCtx = testGroup->getTestContext(); in createTests()
346testGroup->addChild(new DrawTestCase(testCtx, "flat_0", "Mismatching flat interpolation testcase 0… in createTests()
347testGroup->addChild(new DrawTestCase(testCtx, "flat_1", "Mismatching flat interpolation testcase 1… in createTests()
349testGroup->addChild(new DrawTestCase(testCtx, "noperspective_0", "Mismatching noperspective interp… in createTests()
350testGroup->addChild(new DrawTestCase(testCtx, "noperspective_1", "Mismatching noperspective interp… in createTests()
DvktBasicDrawTests.cpp1140 void populateSubGroup (tcu::TestCaseGroup* testGroup, const TestCaseParams caseParams) in populateSubGroup() argument
1142 de::Random rnd (SEED ^ deStringHash(testGroup->getName())); in populateSubGroup()
1143 tcu::TestContext& testCtx = testGroup->getTestContext(); in populateSubGroup()
1178 testGroup->addChild(new DrawCase(testCtx, name.c_str(), "vkCmdDraw testcase.", in populateSubGroup()
1187 testGroup->addChild(new IndexedCase(testCtx, name.c_str(), "vkCmdDrawIndexed testcase.", in populateSubGroup()
1199testGroup->addChild(new IndirectCase(testCtx, (name + "_single_command").c_str(), "vkCmdDrawIndire… in populateSubGroup()
1202testGroup->addChild(new IndirectCase(testCtx, (name + "_multi_command").c_str(), "vkCmdDrawIndirec… in populateSubGroup()
1212testGroup->addChild(new IndexedIndirectCase(testCtx, (name + "_single_command").c_str(), "vkCmdDra… in populateSubGroup()
1215testGroup->addChild(new IndexedIndirectCase(testCtx, (name + "_multi_command").c_str(), "vkCmdDraw… in populateSubGroup()
1224 void createTopologyGroups (tcu::TestCaseGroup* testGroup, const DrawCommandType cmdType) in createTopologyGroups() argument
[all …]
/external/deqp/framework/common/
DtcuTestHierarchyIterator.hpp52 virtual void enterGroupNode (TestCaseGroup* testGroup, std::vector<TestNode*>& children) = 0;
53 virtual void leaveGroupNode (TestCaseGroup* testGroup) = 0;
69 virtual void enterGroupNode (TestCaseGroup* testGroup, std::vector<TestNode*>& children);
70 virtual void leaveGroupNode (TestCaseGroup* testGroup);
DtcuTestHierarchyIterator.cpp75 void DefaultHierarchyInflater::enterGroupNode (TestCaseGroup* testGroup, vector<TestNode*>& childre… in enterGroupNode() argument
77 testGroup->init(); in enterGroupNode()
78 testGroup->getChildren(children); in enterGroupNode()
81 void DefaultHierarchyInflater::leaveGroupNode (TestCaseGroup* testGroup) in leaveGroupNode() argument
83 testGroup->deinit(); in leaveGroupNode()
/external/deqp/executor/
DxeTestCase.cpp391 void TestSet::addGroup (const TestGroup* testGroup) in addGroup() argument
393 addNodeAndParents(m_set, testGroup); in addGroup()
394 addChildren(m_set, testGroup); in addGroup()
418 void TestSet::removeGroup (const TestGroup* testGroup) in removeGroup() argument
420 if (m_set.find(testGroup) != m_set.end()) in removeGroup()
422 m_set.erase(testGroup); in removeGroup()
423 removeChildren(m_set, testGroup); in removeGroup()
424 if (testGroup->getParent() != DE_NULL) in removeGroup()
425 removeEmptyGroups(m_set, testGroup->getParent()); in removeGroup()
/external/deqp/external/vulkancts/modules/vulkan/pipeline/
DvktPipelineMultisampleInterpolationTests.cpp924 …de::MovePtr<tcu::TestCaseGroup> testGroup(new tcu::TestCaseGroup(testCtx, "multisample_interpolati… in createMultisampleInterpolationTests() local
962 testGroup->addChild(caseGroup.release()); in createMultisampleInterpolationTests()
964testGroup->addChild(makeMSGroup<multisample::MSCase<multisample::MSCaseInterpolateAtSampleDistinct… in createMultisampleInterpolationTests()
965testGroup->addChild(makeMSGroup<multisample::MSCase<multisample::MSCaseInterpolateAtSampleIgnoresC… in createMultisampleInterpolationTests()
966testGroup->addChild(makeMSGroup<multisample::MSCase<multisample::MSCaseInterpolateAtSampleConsiste… in createMultisampleInterpolationTests()
967testGroup->addChild(makeMSGroup<multisample::MSCase<multisample::MSCaseSampleQualifierDistinctValu… in createMultisampleInterpolationTests()
968testGroup->addChild(makeMSGroup<multisample::MSCase<multisample::MSCaseInterpolateAtCentroidConsis… in createMultisampleInterpolationTests()
969testGroup->addChild(makeMSGroup<multisample::MSCase<multisample::MSCaseCentroidQualifierInsidePrim… in createMultisampleInterpolationTests()
970testGroup->addChild(makeMSGroup<multisample::MSCase<multisample::MSCaseInterpolateAtOffsetPixelCen… in createMultisampleInterpolationTests()
971testGroup->addChild(makeMSGroup<multisample::MSCase<multisample::MSCaseInterpolateAtOffsetSamplePo… in createMultisampleInterpolationTests()
[all …]
DvktPipelineSpecConstantTests.cpp738 …de::MovePtr<tcu::TestCaseGroup> testGroup (new tcu::TestCaseGroup(testCtx, "default_value", "use d… in createDefaultValueTests() local
803 testGroup->addChild(new SpecConstantTest(testCtx, shaderStage, defs[defNdx])); in createDefaultValueTests()
805 return testGroup.release(); in createDefaultValueTests()
811 …de::MovePtr<tcu::TestCaseGroup> testGroup (new tcu::TestCaseGroup(testCtx, "basic", "specialize a … in createBasicSpecializationTests() local
900 testGroup->addChild(new SpecConstantTest(testCtx, shaderStage, defs[defNdx])); in createBasicSpecializationTests()
902 return testGroup.release(); in createBasicSpecializationTests()
908 …de::MovePtr<tcu::TestCaseGroup> testGroup (new tcu::TestCaseGroup(testCtx, "local_size", "work gro… in createWorkGroupSizeTests() local
1009 testGroup->addChild(new SpecConstantTest(testCtx, VK_SHADER_STAGE_COMPUTE_BIT, defs[defNdx])); in createWorkGroupSizeTests()
1011 return testGroup.release(); in createWorkGroupSizeTests()
1017 …de::MovePtr<tcu::TestCaseGroup> testGroup (new tcu::TestCaseGroup(testCtx, "builtin", "built-in ov… in createBuiltInOverrideTests() local
[all …]
/external/antlr/gunit/src/main/resources/org/antlr/gunit/swingui/
Dgunit.stg5 <testSuite.rulesForStringTemplate:testGroup()>
8 testGroup() ::= <<
/external/deqp/external/vulkancts/modules/vulkan/spirv_assembly/
DvktSpvAsm16bitStorageTests.cpp1988 void addGraphics16BitStorageUniformInt32To16Group (tcu::TestCaseGroup* testGroup) in addGraphics16BitStorageUniformInt32To16Group() argument
1990 de::Random rnd (deStringHash(testGroup->getName())); in addGraphics16BitStorageUniformInt32To16Group()
2193 …lStages(name, defaultColors, defaultColors, fragments, resources, extensions, testGroup, features); in addGraphics16BitStorageUniformInt32To16Group()
2228 …lStages(name, defaultColors, defaultColors, fragments, resources, extensions, testGroup, features); in addGraphics16BitStorageUniformInt32To16Group()
3243 void addGraphics16BitStorageUniformFloat32To16Group (tcu::TestCaseGroup* testGroup) in addGraphics16BitStorageUniformFloat32To16Group() argument
3245 de::Random rnd (deStringHash(testGroup->getName())); in addGraphics16BitStorageUniformFloat32To16Group()
3374 …ges(testName, defaultColors, defaultColors, fragments, resources, extensions, testGroup, features); in addGraphics16BitStorageUniformFloat32To16Group()
3477 …ges(testName, defaultColors, defaultColors, fragments, resources, extensions, testGroup, features); in addGraphics16BitStorageUniformFloat32To16Group()
3594 …ges(testName, defaultColors, defaultColors, fragments, resources, extensions, testGroup, features); in addGraphics16BitStorageUniformFloat32To16Group()
3599 void addGraphics16BitStorageInputOutputFloat32To16Group (tcu::TestCaseGroup* testGroup) in addGraphics16BitStorageInputOutputFloat32To16Group() argument
[all …]
DvktSpvAsmVariablePointersTests.cpp1401 void addVariablePointersGraphicsGroup (tcu::TestCaseGroup* testGroup) in addVariablePointersGraphicsGroup() argument
1403 tcu::TestContext& testCtx = testGroup->getTestContext(); in addVariablePointersGraphicsGroup()
1404 de::Random rnd (deStringHash(testGroup->getName())); in addVariablePointersGraphicsGroup()
1592 …_str(), defaultColors, defaultColors, fragments, resources, extensions, testGroup, requiredFeature… in addVariablePointersGraphicsGroup()
1614 …_str(), defaultColors, defaultColors, fragments, resources, extensions, testGroup, requiredFeature… in addVariablePointersGraphicsGroup()
1644 …_str(), defaultColors, defaultColors, fragments, resources, extensions, testGroup, requiredFeature… in addVariablePointersGraphicsGroup()
1669 …_str(), defaultColors, defaultColors, fragments, resources, extensions, testGroup, requiredFeature… in addVariablePointersGraphicsGroup()
1699 …_str(), defaultColors, defaultColors, fragments, resources, extensions, testGroup, requiredFeature… in addVariablePointersGraphicsGroup()
1734 …_str(), defaultColors, defaultColors, fragments, resources, extensions, testGroup, requiredFeature… in addVariablePointersGraphicsGroup()
1759 …_str(), defaultColors, defaultColors, fragments, resources, extensions, testGroup, requiredFeature… in addVariablePointersGraphicsGroup()
[all …]
DvktSpvAsm8bitStorageTests.cpp2664 void addGraphics8BitStorageUniformInt32To8Group (tcu::TestCaseGroup* testGroup) in addGraphics8BitStorageUniformInt32To8Group() argument
2666 de::Random rnd (deStringHash(testGroup->getName())); in addGraphics8BitStorageUniformInt32To8Group()
2876 …lStages(name, defaultColors, defaultColors, fragments, resources, extensions, testGroup, features); in addGraphics8BitStorageUniformInt32To8Group()
2881 void addGraphics8BitStorageUniformInt8To32Group (tcu::TestCaseGroup* testGroup) in addGraphics8BitStorageUniformInt8To32Group() argument
2883 de::Random rnd (deStringHash(testGroup->getName())); in addGraphics8BitStorageUniformInt8To32Group()
3150 …lStages(name, defaultColors, defaultColors, fragments, resources, extensions, testGroup, features); in addGraphics8BitStorageUniformInt8To32Group()
3155 void addGraphics8BitStoragePushConstantInt8To32Group (tcu::TestCaseGroup* testGroup) in addGraphics8BitStoragePushConstantInt8To32Group() argument
3157 de::Random rnd (deStringHash(testGroup->getName())); in addGraphics8BitStoragePushConstantInt8To32Group()
3312 …), defaultColors, defaultColors, fragments, pcs, resources, extensions, testGroup, requiredFeature… in addGraphics8BitStoragePushConstantInt8To32Group()
3355 …), defaultColors, defaultColors, fragments, pcs, resources, extensions, testGroup, requiredFeature… in addGraphics8BitStoragePushConstantInt8To32Group()
[all …]
DvktSpvAsmInstructionTests.cpp9069 …de::MovePtr<tcu::TestCaseGroup> testGroup(new tcu::TestCaseGroup(testCtx, "loop", "Looping control… in createLoopTests() local
9105 createTestsForAllStages("single_block", defaultColors, defaultColors, fragments, testGroup.get()); in createLoopTests()
9159 …Stages("multi_block_continue_construct", defaultColors, defaultColors, fragments, testGroup.get()); in createLoopTests()
9164 …rAllStages("multi_block_loop_construct", defaultColors, defaultColors, fragments, testGroup.get()); in createLoopTests()
9203 createTestsForAllStages("continue", defaultColors, defaultColors, fragments, testGroup.get()); in createLoopTests()
9247 createTestsForAllStages("break", defaultColors, defaultColors, fragments, testGroup.get()); in createLoopTests()
9294 createTestsForAllStages("return", defaultColors, defaultColors, fragments, testGroup.get()); in createLoopTests()
9358 …createTestsForAllStages("switch_continue", defaultColors, defaultColors, fragments, testGroup.get(… in createLoopTests()
9360 return testGroup.release(); in createLoopTests()
9366 …de::MovePtr<tcu::TestCaseGroup> testGroup(new tcu::TestCaseGroup(testCtx, "barrier", "OpControlBar… in createBarrierTests() local
[all …]
/external/deqp/external/vulkancts/modules/vulkan/sparse_resources/
DvktSparseResourcesShaderIntrinsics.cpp36 …de::MovePtr<tcu::TestCaseGroup> testGroup(new tcu::TestCaseGroup(testCtx, "shader_intrinsics", "Sp… in createSparseResourcesShaderIntrinsicsTests() local
122 testGroup->addChild(imageTypeGroup.release()); in createSparseResourcesShaderIntrinsicsTests()
126 return testGroup.release(); in createSparseResourcesShaderIntrinsicsTests()
DvktSparseResourcesImageSparseBinding.cpp440 …gTestsCommon(tcu::TestContext& testCtx, de::MovePtr<tcu::TestCaseGroup> testGroup, const bool useD… in createImageSparseBindingTestsCommon() argument
481 testGroup->addChild(imageTypeGroup.release()); in createImageSparseBindingTestsCommon()
484 return testGroup.release(); in createImageSparseBindingTestsCommon()
489 …de::MovePtr<tcu::TestCaseGroup> testGroup(new tcu::TestCaseGroup(testCtx, "image_sparse_binding", … in createImageSparseBindingTests() local
490 return createImageSparseBindingTestsCommon(testCtx, testGroup); in createImageSparseBindingTests()
495 …de::MovePtr<tcu::TestCaseGroup> testGroup(new tcu::TestCaseGroup(testCtx, "device_group_image_spar… in createDeviceGroupImageSparseBindingTests() local
496 return createImageSparseBindingTestsCommon(testCtx, testGroup, true); in createDeviceGroupImageSparseBindingTests()
DvktSparseResourcesMipmapSparseResidency.cpp561 …TestsCommon (tcu::TestContext& testCtx, de::MovePtr<tcu::TestCaseGroup> testGroup, const bool useD… in createMipmapSparseResidencyTestsCommon() argument
600 testGroup->addChild(imageTypeGroup.release()); in createMipmapSparseResidencyTestsCommon()
603 return testGroup.release(); in createMipmapSparseResidencyTestsCommon()
608 …de::MovePtr<tcu::TestCaseGroup> testGroup(new tcu::TestCaseGroup(testCtx, "mipmap_sparse_residency… in createMipmapSparseResidencyTests() local
609 return createMipmapSparseResidencyTestsCommon(testCtx, testGroup); in createMipmapSparseResidencyTests()
614 …de::MovePtr<tcu::TestCaseGroup> testGroup(new tcu::TestCaseGroup(testCtx, "device_group_mipmap_spa… in createDeviceGroupMipmapSparseResidencyTests() local
615 return createMipmapSparseResidencyTestsCommon(testCtx, testGroup, true); in createDeviceGroupMipmapSparseResidencyTests()
DvktSparseResourcesImageAlignedMipSize.cpp254 …de::MovePtr<tcu::TestCaseGroup> testGroup(new tcu::TestCaseGroup(testCtx, "aligned_mip_size", "Ali… in createImageAlignedMipSizeTests() local
285 testGroup->addChild(imageTypeGroup.release()); in createImageAlignedMipSizeTests()
288 return testGroup.release(); in createImageAlignedMipSizeTests()
/external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
DvktShaderClockTests.cpp232 void addShaderClockTests (tcu::TestCaseGroup* testGroup) in addShaderClockTests() argument
249 tcu::TestContext& testCtx = testGroup->getTestContext(); in addShaderClockTests()
266 testGroup->addChild(stageGroupTest.release()); in addShaderClockTests()

123