HomeSort by relevance Sort by last modified time
    Searched refs:testCtx (Results 1 - 25 of 649) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/deqp/external/vulkancts/modules/vulkan/dynamic_state/
vktDynamicStateTests.cpp 44 tcu::TestContext& testCtx = group->getTestContext();
46 group->addChild(new DynamicStateVPTests(testCtx));
47 group->addChild(new DynamicStateRSTests(testCtx));
48 group->addChild(new DynamicStateCBTests(testCtx));
49 group->addChild(new DynamicStateDSTests(testCtx));
50 group->addChild(new DynamicStateGeneralTests(testCtx));
55 tcu::TestCaseGroup* createTests (tcu::TestContext& testCtx)
57 return createTestGroup(testCtx, "dynamic_state", "Dynamic State Tests", createChildren);
  /external/deqp/external/vulkancts/modules/vulkan/ycbcr/
vktYCbCrTests.cpp 42 tcu::TestContext& testCtx = ycbcrTests->getTestContext();
44 ycbcrTests->addChild(createFormatTests(testCtx));
45 ycbcrTests->addChild(createViewTests(testCtx));
46 ycbcrTests->addChild(createImageQueryTests(testCtx));
47 ycbcrTests->addChild(createConversionTests(testCtx));
48 ycbcrTests->addChild(createCopyTests(testCtx));
53 tcu::TestCaseGroup* createTests (tcu::TestContext& testCtx)
55 return createTestGroup(testCtx, "ycbcr", "YCbCr Conversion Tests", populateTestGroup);
  /external/deqp/external/vulkancts/modules/vulkan/subgroups/
vktSubgroupsTests.cpp 50 tcu::TestContext& testCtx = subgroupsTests->getTestContext();
52 subgroupsTests->addChild(createSubgroupsBuiltinVarTests(testCtx));
53 subgroupsTests->addChild(createSubgroupsBuiltinMaskVarTests(testCtx));
54 subgroupsTests->addChild(createSubgroupsBasicTests(testCtx));
55 subgroupsTests->addChild(createSubgroupsVoteTests(testCtx));
56 subgroupsTests->addChild(createSubgroupsBallotTests(testCtx));
57 subgroupsTests->addChild(createSubgroupsBallotBroadcastTests(testCtx));
58 subgroupsTests->addChild(createSubgroupsBallotOtherTests(testCtx));
59 subgroupsTests->addChild(createSubgroupsArithmeticTests(testCtx));
60 subgroupsTests->addChild(createSubgroupsClusteredTests(testCtx));
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/api/
vktApiTests.cpp 56 tcu::TestContext& testCtx = bufferViewTests->getTestContext();
58 bufferViewTests->addChild(createBufferViewCreateTests (testCtx));
59 bufferViewTests->addChild(createBufferViewAccessTests (testCtx));
64 tcu::TestContext& testCtx = apiTests->getTestContext();
66 apiTests->addChild(createVersionSanityCheckTests (testCtx));
67 apiTests->addChild(createSmokeTests (testCtx));
68 apiTests->addChild(api::createFeatureInfoTests (testCtx));
69 apiTests->addChild(createDeviceInitializationTests (testCtx));
70 apiTests->addChild(createObjectManagementTests (testCtx));
71 apiTests->addChild(createBufferTests (testCtx));
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/draw/
vktDrawTests.cpp 46 tcu::TestContext& testCtx = group->getTestContext();
48 group->addChild(new SimpleDrawTests (testCtx));
49 group->addChild(new DrawIndexedTests (testCtx));
50 group->addChild(new IndirectDrawTests (testCtx));
51 group->addChild(createBasicDrawTests (testCtx));
52 group->addChild(new InstancedTests (testCtx));
53 group->addChild(new ShaderDrawParametersTests (testCtx));
54 group->addChild(createNegativeViewportHeightTests (testCtx));
59 tcu::TestCaseGroup* createTests (tcu::TestContext& testCtx)
61 return createTestGroup(testCtx, "draw", "Spimple Draw tests", createChildren)
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/compute/
vktComputeTests.cpp 40 tcu::TestContext& testCtx = computeTests->getTestContext();
42 computeTests->addChild(createBasicComputeShaderTests(testCtx));
43 computeTests->addChild(createBasicDeviceGroupComputeShaderTests(testCtx));
44 computeTests->addChild(createIndirectComputeDispatchTests(testCtx));
45 computeTests->addChild(createComputeShaderBuiltinVarTests(testCtx));
50 tcu::TestCaseGroup* createTests (tcu::TestContext& testCtx)
52 return createTestGroup(testCtx, "compute", "Compute shader tests", createChildren);
  /external/deqp/external/vulkancts/modules/vulkan/image/
vktImageTests.cpp 45 tcu::TestContext& testCtx = imageTests->getTestContext();
47 imageTests->addChild(createImageStoreTests(testCtx));
48 imageTests->addChild(createImageLoadStoreTests(testCtx));
49 imageTests->addChild(createImageMultisampleLoadStoreTests(testCtx));
50 imageTests->addChild(createImageMutableTests(testCtx));
51 imageTests->addChild(createImageFormatReinterpretTests(testCtx));
52 imageTests->addChild(createImageQualifiersTests(testCtx));
53 imageTests->addChild(createImageSizeTests(testCtx));
54 imageTests->addChild(createImageAtomicOperationTests(testCtx));
55 imageTests->addChild(createImageCompressionTranscodingTests(testCtx));
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/sparse_resources/
vktSparseResourcesTests.cpp 39 tcu::TestCaseGroup* createTests (tcu::TestContext& testCtx)
41 de::MovePtr<tcu::TestCaseGroup> sparseTests (new tcu::TestCaseGroup(testCtx, "sparse_resources", "Sparse Resources Tests"));
43 sparseTests->addChild(createSparseBufferTests (testCtx));
44 sparseTests->addChild(createImageSparseBindingTests (testCtx));
45 sparseTests->addChild(createDeviceGroupImageSparseBindingTests (testCtx));
46 sparseTests->addChild(createImageSparseResidencyTests (testCtx));
47 sparseTests->addChild(createDeviceGroupImageSparseResidencyTests (testCtx));
48 sparseTests->addChild(createMipmapSparseResidencyTests (testCtx));
49 sparseTests->addChild(createDeviceGroupMipmapSparseResidencyTests (testCtx));
50 sparseTests->addChild(createImageSparseMemoryAliasingTests (testCtx));
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/geometry/
vktGeometryTests.cpp 42 tcu::TestContext& testCtx = geometryTests->getTestContext();
44 geometryTests->addChild(createInputGeometryShaderTests (testCtx));
45 geometryTests->addChild(createBasicGeometryShaderTests (testCtx));
46 geometryTests->addChild(createLayeredRenderingTests (testCtx));
47 geometryTests->addChild(createInstancedRenderingTests (testCtx));
48 geometryTests->addChild(createVaryingGeometryShaderTests (testCtx));
49 geometryTests->addChild(createEmitGeometryShaderTests (testCtx));
54 tcu::TestCaseGroup* createTests (tcu::TestContext& testCtx)
56 return createTestGroup(testCtx, "geometry", "Geometry shader tests", createChildren);
  /external/deqp/external/vulkancts/modules/vulkan/memory/
vktMemoryTests.cpp 43 tcu::TestContext& testCtx = memoryTests->getTestContext();
45 memoryTests->addChild(createAllocationTests (testCtx));
46 memoryTests->addChild(createDeviceGroupAllocationTests (testCtx));
47 memoryTests->addChild(createMappingTests (testCtx));
48 memoryTests->addChild(createPipelineBarrierTests (testCtx));
49 memoryTests->addChild(createRequirementsTests (testCtx));
50 memoryTests->addChild(createMemoryBindingTests (testCtx));
55 tcu::TestCaseGroup* createTests (tcu::TestContext& testCtx)
57 return createTestGroup(testCtx, "memory", "Memory Tests", createChildren);
  /external/deqp/external/vulkancts/modules/vulkan/texture/
vktTextureTests.cpp 44 tcu::TestContext& testCtx = textureTests->getTestContext();
46 textureTests->addChild(createTextureFilteringTests (testCtx));
47 textureTests->addChild(createTextureMipmappingTests (testCtx));
48 textureTests->addChild(createExplicitLodTests (testCtx));
49 textureTests->addChild(createTextureShadowTests (testCtx));
50 textureTests->addChild(createFilteringAnisotropyTests (testCtx));
51 textureTests->addChild(createTextureCompressedFormatTests (testCtx));
56 tcu::TestCaseGroup* createTests (tcu::TestContext& testCtx)
58 return createTestGroup(testCtx, "texture", "Texture Tests", createTextureTests);
  /external/deqp/external/vulkancts/modules/vulkan/fragment_ops/
vktFragmentOperationsTests.cpp 38 tcu::TestContext& testCtx = fragmentOperationsTestsGroup->getTestContext();
40 fragmentOperationsTestsGroup->addChild(createScissorTests (testCtx));
41 fragmentOperationsTestsGroup->addChild(createEarlyFragmentTests (testCtx));
46 tcu::TestCaseGroup* createTests (tcu::TestContext& testCtx)
48 return createTestGroup(testCtx, "fragment_operations", "Fragment operations tests", addFragmentOperationsTests);
  /external/deqp/external/vulkancts/modules/vulkan/pipeline/
vktPipelineTests.cpp 55 tcu::TestContext& testCtx = pipelineTests->getTestContext();
57 pipelineTests->addChild(createStencilTests (testCtx));
58 pipelineTests->addChild(createBlendTests (testCtx));
59 pipelineTests->addChild(createDepthTests (testCtx));
60 pipelineTests->addChild(createImageTests (testCtx));
61 pipelineTests->addChild(createSamplerTests (testCtx));
62 pipelineTests->addChild(createImageViewTests (testCtx));
63 pipelineTests->addChild(createPushConstantTests (testCtx));
64 pipelineTests->addChild(createSpecConstantTests (testCtx));
65 pipelineTests->addChild(createMultisampleTests (testCtx));
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/query_pool/
vktQueryPoolTests.cpp 41 tcu::TestContext& testCtx = queryPoolTests->getTestContext();
43 queryPoolTests->addChild(new QueryPoolOcclusionTests(testCtx));
44 queryPoolTests->addChild(new QueryPoolStatisticsTests(testCtx));
49 tcu::TestCaseGroup* createTests (tcu::TestContext& testCtx)
51 return createTestGroup(testCtx, "query_pool", "query pool tests", createChildren);
  /external/deqp/external/vulkancts/modules/vulkan/tessellation/
vktTessellationTests.cpp 50 tcu::TestCaseGroup* createGeometryInteractionTests (tcu::TestContext& testCtx)
52 de::MovePtr<tcu::TestCaseGroup> group (new tcu::TestCaseGroup(testCtx, "geometry_interaction", "Tessellation and geometry shader interaction tests"));
54 group->addChild(createGeometryPassthroughTests (testCtx));
55 group->addChild(createGeometryGridRenderLimitsTests (testCtx));
56 group->addChild(createGeometryGridRenderScatterTests(testCtx));
57 group->addChild(createGeometryPointSizeTests (testCtx));
64 tcu::TestContext& testCtx = tessellationTests->getTestContext();
66 tessellationTests->addChild(createLimitsTests (testCtx));
67 tessellationTests->addChild(createCoordinatesTests (testCtx));
68 tessellationTests->addChild(createWindingTests (testCtx));
    [all...]
  /external/deqp/external/openglcts/modules/
glcTestPackageRegistry.cpp 76 static tcu::TestPackage* createConfigPackage(tcu::TestContext& testCtx)
78 return new glcts::ConfigPackage(testCtx, "CTS-Configs");
81 static tcu::TestPackage* createES2Package(tcu::TestContext& testCtx)
83 return new es2cts::TestPackage(testCtx, "KHR-GLES2");
87 static tcu::TestPackage* createdEQPEGLPackage(tcu::TestContext& testCtx)
89 return new deqp::egl::TestPackage(testCtx);
94 static tcu::TestPackage* createdEQPES2Package(tcu::TestContext& testCtx)
96 return new deqp::gles2::TestPackage(testCtx);
101 static tcu::TestPackage* createES2GTFPackage(tcu::TestContext& testCtx)
103 return new gtf::es2::TestPackage(testCtx, "GTF-GLES2")
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/multiview/
vktMultiViewTests.cpp 34 tcu::TestCaseGroup* createTests (tcu::TestContext& testCtx)
36 return createTestGroup(testCtx, "multiview", "MultiView render tests", multiViewRenderCreateTests);
  /external/deqp/external/vulkancts/modules/vulkan/
vktTestPackageEntry.cpp 28 static tcu::TestPackage* createTestPackage (tcu::TestContext& testCtx)
30 return new vkt::TestPackage(testCtx);
  /external/deqp/modules/egl/
teglTestPackageEntry.cpp 28 static tcu::TestPackage* createTestPackage (tcu::TestContext& testCtx)
30 return new deqp::egl::TestPackage(testCtx);
  /external/deqp/modules/gles2/
tes2TestPackageEntry.cpp 28 static tcu::TestPackage* createTestPackage (tcu::TestContext& testCtx)
30 return new deqp::gles2::TestPackage(testCtx);
  /external/deqp/modules/gles3/
tes3TestPackageEntry.cpp 28 static tcu::TestPackage* createTestPackage (tcu::TestContext& testCtx)
30 return new deqp::gles3::TestPackage(testCtx);
  /external/deqp/modules/gles31/
tes31TestPackageEntry.cpp 28 static tcu::TestPackage* createTestPackage (tcu::TestContext& testCtx)
30 return new deqp::gles31::TestPackage(testCtx);
  /external/deqp/modules/internal/
ditTestPackageEntry.cpp 28 static tcu::TestPackage* createTestPackage (tcu::TestContext& testCtx)
30 return new dit::TestPackage(testCtx);
  /external/deqp/external/vulkancts/modules/vulkan/protected_memory/
vktProtectedMemTests.cpp 48 tcu::TestCaseGroup* createTests (tcu::TestContext& testCtx)
50 de::MovePtr<tcu::TestCaseGroup> protectedTests (new tcu::TestCaseGroup(testCtx, "protected_memory", "Protected Memory Tests"));
54 de::MovePtr<tcu::TestCaseGroup> attachmentTestGroup (new tcu::TestCaseGroup(testCtx, "attachment", "Protected Memory Attachment Tests"));
55 attachmentTestGroup->addChild(createAttachmentLoadTests(testCtx));
56 attachmentTestGroup->addChild(createAttachmentClearTests(testCtx));
62 de::MovePtr<tcu::TestCaseGroup> imageTestGroup (new tcu::TestCaseGroup(testCtx, "image", "Protected Memory Image Tests"));
63 imageTestGroup->addChild(createCopyImageTests(testCtx));
64 imageTestGroup->addChild(createBlitImageTests(testCtx));
65 imageTestGroup->addChild(createClearColorImageTests(testCtx));
66 imageTestGroup->addChild(createCopyBufferToImageTests(testCtx));
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/binding_model/
vktBindingModelTests.cpp 39 tcu::TestContext& testCtx = group->getTestContext();
41 group->addChild(createShaderAccessTests(testCtx));
50 tcu::TestCaseGroup* createTests (tcu::TestContext& testCtx)
52 return createTestGroup(testCtx, "binding_model", "Resource binding tests", createChildren);

Completed in 1163 milliseconds

1 2 3 4 5 6 7 8 91011>>