Home
last modified time | relevance | path

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

12

/external/deqp/external/vulkancts/modules/vulkan/wsi/
DvktWsiTests.cpp42 void createTypeSpecificTests (tcu::TestCaseGroup* testGroup, vk::wsi::Type wsiType) in createTypeSpecificTests() argument
44 addTestGroup(testGroup, "surface", "VkSurface Tests", createSurfaceTests, wsiType); in createTypeSpecificTests()
45 addTestGroup(testGroup, "swapchain", "VkSwapchain Tests", createSwapchainTests, wsiType); in createTypeSpecificTests()
46 …addTestGroup(testGroup, "incremental_present", "Incremental present tests", createIncrementalPrese… in createTypeSpecificTests()
47 …addTestGroup(testGroup, "display_timing", "Display Timing Tests", createDisplayTimingTests, ws… in createTypeSpecificTests()
48 …addTestGroup(testGroup, "shared_presentable_image", "VK_KHR_shared_presentable_image tests", creat… in createTypeSpecificTests()
DvktWsiSurfaceTests.cpp873 void createSurfaceTests (tcu::TestCaseGroup* testGroup, vk::wsi::Type wsiType) in createSurfaceTests() argument
877 addFunctionCase(testGroup, "create", "Create surface", createSurfaceTest, wsiType); in createSurfaceTests()
878 …addFunctionCase(testGroup, "create_custom_allocator", "Create surface with custom allocator", crea… in createSurfaceTests()
879 …addFunctionCase(testGroup, "create_simulate_oom", "Create surface with simulating OOM", createSur… in createSurfaceTests()
880 …addFunctionCase(testGroup, "query_support", "Query surface support", querySurfaceSupportTest… in createSurfaceTests()
881 …addFunctionCase(testGroup, "query_capabilities", "Query surface capabilities", querySurfaceCapa… in createSurfaceTests()
882 …addFunctionCase(testGroup, "query_capabilities2", "Query extended surface capabilities", querySur… in createSurfaceTests()
883 …addFunctionCase(testGroup, "query_formats", "Query surface formats", querySurfaceFormatsTest… in createSurfaceTests()
884 …addFunctionCase(testGroup, "query_formats2", "Query extended surface formats", querySurfaceForm… in createSurfaceTests()
885 …addFunctionCase(testGroup, "query_present_modes", "Query surface present modes", querySurfacePr… in createSurfaceTests()
[all …]
DvktWsiSwapchainTests.cpp692 void populateSwapchainGroup (tcu::TestCaseGroup* testGroup, GroupParameters params) in populateSwapchainGroup() argument
698 …addFunctionCase(testGroup, getTestDimensionName(testDimension), "", params.function, TestParameter… in populateSwapchainGroup()
1719 void populateRenderGroup (tcu::TestCaseGroup* testGroup, Type wsiType) in populateRenderGroup() argument
1721 …addFunctionCaseWithPrograms(testGroup, "basic", "Basic Rendering Test", getBasicRenderPrograms, ba… in populateRenderGroup()
1724 void populateGetImagesGroup (tcu::TestCaseGroup* testGroup, Type wsiType) in populateGetImagesGroup() argument
1726 …addFunctionCase(testGroup, "incomplete", "Test VK_INCOMPLETE return code", getImagesIncompleteResu… in populateGetImagesGroup()
1729 void populateModifyGroup (tcu::TestCaseGroup* testGroup, Type wsiType) in populateModifyGroup() argument
1735 …addFunctionCaseWithPrograms(testGroup, "resize", "Resize Swapchain Test", getBasicRenderPrograms, … in populateModifyGroup()
1741 void populateDestroyGroup (tcu::TestCaseGroup* testGroup, Type wsiType) in populateDestroyGroup() argument
1743 …addFunctionCase(testGroup, "null_handle", "Destroying a VK_NULL_HANDLE swapchain", destroyNullHand… in populateDestroyGroup()
[all …]
DvktWsiSwapchainTests.hpp35 void createSwapchainTests (tcu::TestCaseGroup* testGroup, vk::wsi::Type wsiType);
DvktWsiDisplayTimingTests.hpp35 void createDisplayTimingTests (tcu::TestCaseGroup* testGroup, vk::wsi::Type wsiType);
DvktWsiSharedPresentableImageTests.hpp35 void createSharedPresentableImageTests (tcu::TestCaseGroup* testGroup, vk::wsi::Type wsiType);
DvktWsiIncrementalPresentTests.hpp35 void createIncrementalPresentTests (tcu::TestCaseGroup* testGroup, vk::wsi::Type wsiType);
DvktWsiSurfaceTests.hpp35 void createSurfaceTests (tcu::TestCaseGroup* testGroup, vk::wsi::Type wsiType);
/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()
DxeTestCase.hpp164 void addGroup (const TestGroup* testGroup);
168 void removeGroup (const TestGroup* testGroup);
/external/deqp/external/vulkancts/modules/vulkan/
DvktInfoTests.cpp240 void createInfoTests (tcu::TestCaseGroup* testGroup) in createInfoTests() argument
242 addFunctionCase(testGroup, "build", "Build Info", logBuildInfo); in createInfoTests()
243 addFunctionCase(testGroup, "device", "Device Info", logDeviceInfo); in createInfoTests()
244 addFunctionCase(testGroup, "platform", "Platform Info", logPlatformInfo); in createInfoTests()
245 addFunctionCase(testGroup, "memory_limits", "Platform Memory Limits", logPlatformMemoryLimits); in createInfoTests()
DvktTestGroupUtil.hpp35 typedef void (*CreateChildrenFunc) (tcu::TestCaseGroup* testGroup);
53 typedef void (*CreateChildrenFunc) (tcu::TestCaseGroup* testGroup, Arg0 arg0);
DvktInfoTests.hpp32 void createInfoTests (tcu::TestCaseGroup* testGroup);
/external/antlr/antlr-3.4/gunit/src/main/resources/org/antlr/gunit/swingui/
Dgunit.stg5 <testSuite.rulesForStringTemplate:testGroup()>
8 testGroup() ::= <<
/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
132 testGroup->addChild(imageTypeGroup.release()); in createSparseResourcesShaderIntrinsicsTests()
136 return testGroup.release(); in createSparseResourcesShaderIntrinsicsTests()
DvktSparseResourcesImageSparseBinding.cpp365 …de::MovePtr<tcu::TestCaseGroup> testGroup(new tcu::TestCaseGroup(testCtx, "image_sparse_binding", … in createImageSparseBindingTests() local
417 testGroup->addChild(imageTypeGroup.release()); in createImageSparseBindingTests()
420 return testGroup.release(); in createImageSparseBindingTests()
/external/deqp/external/vulkancts/modules/vulkan/pipeline/
DvktPipelineSpecConstantTests.cpp734 …de::MovePtr<tcu::TestCaseGroup> testGroup (new tcu::TestCaseGroup(testCtx, "default_value", "use d… in createDefaultValueTests() local
799 testGroup->addChild(new SpecConstantTest(testCtx, shaderStage, defs[defNdx])); in createDefaultValueTests()
801 return testGroup.release(); in createDefaultValueTests()
807 …de::MovePtr<tcu::TestCaseGroup> testGroup (new tcu::TestCaseGroup(testCtx, "basic", "specialize a … in createBasicSpecializationTests() local
896 testGroup->addChild(new SpecConstantTest(testCtx, shaderStage, defs[defNdx])); in createBasicSpecializationTests()
898 return testGroup.release(); in createBasicSpecializationTests()
904 …de::MovePtr<tcu::TestCaseGroup> testGroup (new tcu::TestCaseGroup(testCtx, "local_size", "work gro… in createWorkGroupSizeTests() local
1005 testGroup->addChild(new SpecConstantTest(testCtx, VK_SHADER_STAGE_COMPUTE_BIT, defs[defNdx])); in createWorkGroupSizeTests()
1007 return testGroup.release(); in createWorkGroupSizeTests()
1013 …de::MovePtr<tcu::TestCaseGroup> testGroup (new tcu::TestCaseGroup(testCtx, "builtin", "built-in ov… in createBuiltInOverrideTests() local
[all …]
DvktPipelineMultisampleInterpolationTests.cpp1759 …de::MovePtr<tcu::TestCaseGroup> testGroup(new tcu::TestCaseGroup(testCtx, "multisample_interpolati… in createMultisampleInterpolationTests() local
1797 testGroup->addChild(caseGroup.release()); in createMultisampleInterpolationTests()
1799testGroup->addChild(makeGroup(multisample::createMSCaseInterpolateAtSampleDistinctValues, testCtx,… in createMultisampleInterpolationTests()
1800testGroup->addChild(makeGroup(multisample::createMSCaseInterpolateAtSampleIgnoresCentroid, testCtx… in createMultisampleInterpolationTests()
1801testGroup->addChild(makeGroup(multisample::createMSCaseInterpolateAtSampleConsistency, testCtx, "… in createMultisampleInterpolationTests()
1802testGroup->addChild(makeGroup(multisample::createMSCaseSampleQualifierDistinctValues, testCtx, "s… in createMultisampleInterpolationTests()
1803testGroup->addChild(makeGroup(multisample::createMSCaseInterpolateAtCentroidConsistency, testCtx, … in createMultisampleInterpolationTests()
1804testGroup->addChild(makeGroup(multisample::createMSCaseCentroidQualifierInsidePrimitive, testCtx, … in createMultisampleInterpolationTests()
1805testGroup->addChild(makeGroup(multisample::createMSCaseInterpolateAtOffsetPixelCenter, testCtx, "… in createMultisampleInterpolationTests()
1806testGroup->addChild(makeGroup(multisample::createMSCaseInterpolateAtOffsetSamplePosition, testCtx,… in createMultisampleInterpolationTests()
[all …]
/external/deqp/external/vulkancts/modules/vulkan/draw/
DvktBasicDrawTests.cpp1195 void populateSubGroup (tcu::TestCaseGroup* testGroup, const TestCaseParams caseParams) in populateSubGroup() argument
1197 de::Random rnd (SEED ^ deStringHash(testGroup->getName())); in populateSubGroup()
1198 tcu::TestContext& testCtx = testGroup->getTestContext(); in populateSubGroup()
1233 testGroup->addChild(new DrawCase(testCtx, name.c_str(), "vkCmdDraw testcase.", in populateSubGroup()
1242 testGroup->addChild(new IndexedCase(testCtx, name.c_str(), "vkCmdDrawIndexed testcase.", in populateSubGroup()
1254testGroup->addChild(new IndirectCase(testCtx, (name + "_single_command").c_str(), "vkCmdDrawIndire… in populateSubGroup()
1257testGroup->addChild(new IndirectCase(testCtx, (name + "_multi_command").c_str(), "vkCmdDrawIndirec… in populateSubGroup()
1267testGroup->addChild(new IndexedIndirectCase(testCtx, (name + "_single_command").c_str(), "vkCmdDra… in populateSubGroup()
1270testGroup->addChild(new IndexedIndirectCase(testCtx, (name + "_multi_command").c_str(), "vkCmdDraw… in populateSubGroup()
1279 void createTopologyGroups (tcu::TestCaseGroup* testGroup, const DrawCommandType cmdType) in createTopologyGroups() argument
[all …]
DvktDrawNegativeViewportHeightTests.cpp511 void populateTestGroup (tcu::TestCaseGroup* testGroup) in populateTestGroup() argument
546testGroup->addChild(new NegativeViewportHeightTest(testGroup->getTestContext(), name.str(), "", pa… in populateTestGroup()
/external/deqp/external/vulkancts/modules/vulkan/api/
DvktApiFeatureInfo.cpp1768 void createFormatTests (tcu::TestCaseGroup* testGroup) in createFormatTests() argument
1778 addFunctionCase(testGroup, caseName, enumName, formatProperties, format); in createFormatTests()
1781 addFunctionCase(testGroup, "depth_stencil", "", testDepthStencilSupported); in createFormatTests()
1782 addFunctionCase(testGroup, "compressed_formats", "", testCompressedFormatsSupported); in createFormatTests()
2016 void createImageFormatTypeTilingTests (tcu::TestCaseGroup* testGroup, ImageFormatPropertyCase param… in createImageFormatTypeTilingTests() argument
2028 addFunctionCase(testGroup, caseName, enumName, execImageFormatTest, params); in createImageFormatTypeTilingTests()
2032 void createImageFormatTypeTests (tcu::TestCaseGroup* testGroup, ImageFormatPropertyCase params) in createImageFormatTypeTests() argument
2036testGroup->addChild(createTestGroup(testGroup->getTestContext(), "optimal", "", createImageFormatT… in createImageFormatTypeTests()
2037testGroup->addChild(createTestGroup(testGroup->getTestContext(), "linear", "", createImageFormatTy… in createImageFormatTypeTests()
2040 void createImageFormatTests (tcu::TestCaseGroup* testGroup, ImageFormatPropertyCase::Function testF… in createImageFormatTests() argument
[all …]
/external/deqp/external/vulkancts/modules/vulkan/image/
DvktImageLoadStoreTests.cpp1225 …de::MovePtr<tcu::TestCaseGroup> testGroup(new tcu::TestCaseGroup(testCtx, "store", "Plain imageSto… in createImageStoreTests() local
1241 testGroup->addChild(groupByImageViewType.release()); in createImageStoreTests()
1244 return testGroup.release(); in createImageStoreTests()
1249 …de::MovePtr<tcu::TestCaseGroup> testGroup(new tcu::TestCaseGroup(testCtx, "load_store", "Cases wit… in createImageLoadStoreTests() local
1266 testGroup->addChild(groupByImageViewType.release()); in createImageLoadStoreTests()
1269 return testGroup.release(); in createImageLoadStoreTests()
1274 …de::MovePtr<tcu::TestCaseGroup> testGroup(new tcu::TestCaseGroup(testCtx, "format_reinterpret", "C… in createImageFormatReinterpretTests() local
1288 testGroup->addChild(groupByImageViewType.release()); in createImageFormatReinterpretTests()
1291 return testGroup.release(); in createImageFormatReinterpretTests()
/external/deqp/modules/gles31/functional/
Des31fSRGBDecodeTests.cpp2043 …tcu::TestCaseGroup* const testGroup = new tcu::TestCaseGroup(m_testCtx, testGroupConfigList[idx].n… in init() local
2044 tcu::TestNode::addChild(testGroup); in init()
2046testGroup->addChild(new TextureDecodeSkippedCase (m_context, "skipped", "testing for sRGB color… in init()
2047testGroup->addChild(new TextureDecodeEnabledCase (m_context, "enabled", "testing for linear col… in init()
2048testGroup->addChild(new TexelFetchDecodeSkippedcase (m_context, "texel_fetch", "testing for line… in init()
2049testGroup->addChild(new GPUConversionDecodeEnabledCase (m_context, "conversion_gpu", "sampling lin… in init()
2050testGroup->addChild(new DecodeToggledCase (m_context, "toggled", "toggle the sRGB decoding be… in init()
2051testGroup->addChild(new DecodeMultipleTexturesCase (m_context, "multiple_textures","upload multip… in init()
2052testGroup->addChild(new DecodeSamplerCase (m_context, "using_sampler", "testing that sampler ob… in init()

12