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

1 2 3 4 5 6 7 8 91011>>

  /external/deqp/external/vulkancts/modules/vulkan/pipeline/
vktPipelineTests.cpp 51 tcu::TestContext& testCtx = pipelineTests->getTestContext();
53 pipelineTests->addChild(createStencilTests (testCtx));
54 pipelineTests->addChild(createBlendTests (testCtx));
55 pipelineTests->addChild(createDepthTests (testCtx));
56 pipelineTests->addChild(createImageTests (testCtx));
57 pipelineTests->addChild(createSamplerTests (testCtx));
58 pipelineTests->addChild(createImageViewTests (testCtx));
59 pipelineTests->addChild(createPushConstantTests (testCtx));
60 pipelineTests->addChild(createMultisampleTests (testCtx));
61 pipelineTests->addChild(createVertexInputTests (testCtx));
    [all...]
  /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/compute/
vktComputeTests.cpp 40 tcu::TestContext& testCtx = computeTests->getTestContext();
42 computeTests->addChild(createBasicComputeShaderTests(testCtx));
43 computeTests->addChild(createIndirectComputeDispatchTests(testCtx));
44 computeTests->addChild(createComputeShaderBuiltinVarTests(testCtx));
49 tcu::TestCaseGroup* createTests (tcu::TestContext& testCtx)
51 return createTestGroup(testCtx, "compute", "Compute shader tests", createChildren);
  /external/deqp/external/vulkancts/modules/vulkan/draw/
vktDrawTests.cpp 42 tcu::TestContext& testCtx = group->getTestContext();
44 group->addChild(new SimpleDrawTests(testCtx));
45 group->addChild(new DrawIndexedTests(testCtx));
46 group->addChild(new IndirectDrawTests(testCtx));
51 tcu::TestCaseGroup* createTests (tcu::TestContext& testCtx)
53 return createTestGroup(testCtx, "draw", "Spimple Draw tests", createChildren);
  /external/deqp/external/vulkancts/modules/vulkan/memory/
vktMemoryTests.cpp 41 tcu::TestContext& testCtx = memoryTests->getTestContext();
43 memoryTests->addChild(createAllocationTests (testCtx));
44 memoryTests->addChild(createMappingTests (testCtx));
45 memoryTests->addChild(createPipelineBarrierTests (testCtx));
50 tcu::TestCaseGroup* createTests (tcu::TestContext& testCtx)
52 return createTestGroup(testCtx, "memory", "Memory Tests", createChildren);
  /external/deqp/external/vulkancts/modules/vulkan/api/
vktApiTests.cpp 47 tcu::TestContext& testCtx = bufferViewTests->getTestContext();
49 bufferViewTests->addChild(createBufferViewCreateTests (testCtx));
50 bufferViewTests->addChild(createBufferViewAccessTests (testCtx));
55 tcu::TestContext& testCtx = apiTests->getTestContext();
57 apiTests->addChild(createSmokeTests (testCtx));
58 apiTests->addChild(api::createFeatureInfoTests (testCtx));
59 apiTests->addChild(createDeviceInitializationTests (testCtx));
60 apiTests->addChild(createObjectManagementTests (testCtx));
61 apiTests->addChild(createBufferTests (testCtx));
62 apiTests->addChild(createTestGroup (testCtx, "buffer_view", "BufferView tests", createBufferViewTests))
    [all...]
vktApiBufferTests.hpp 36 tcu::TestCaseGroup* createBufferTests (tcu::TestContext& testCtx);
vktApiBufferViewAccessTests.hpp 36 tcu::TestCaseGroup* createBufferViewAccessTests (tcu::TestContext& testCtx);
vktApiBufferViewCreateTests.hpp 36 tcu::TestCaseGroup* createBufferViewCreateTests (tcu::TestContext& testCtx);
vktApiCommandBuffersTests.hpp 32 tcu::TestCaseGroup* createCommandBuffersTests (tcu::TestContext& testCtx);
vktApiCopiesAndBlittingTests.hpp 36 tcu::TestCaseGroup* createCopiesAndBlittingTests (tcu::TestContext& testCtx);
vktApiDeviceInitializationTests.hpp 34 tcu::TestCaseGroup* createDeviceInitializationTests (tcu::TestContext& testCtx);
  /external/deqp/external/vulkancts/modules/vulkan/image/
vktImageTests.cpp 41 tcu::TestContext& testCtx = imageTests->getTestContext();
43 imageTests->addChild(createImageStoreTests(testCtx));
44 imageTests->addChild(createImageLoadStoreTests(testCtx));
45 imageTests->addChild(createImageFormatReinterpretTests(testCtx));
46 imageTests->addChild(createImageQualifiersTests(testCtx));
47 imageTests->addChild(createImageSizeTests(testCtx));
48 imageTests->addChild(createImageAtomicOperationTests(testCtx));
53 tcu::TestCaseGroup* createTests (tcu::TestContext& testCtx)
55 return createTestGroup(testCtx, "image", "Image tests", createChildren);
  /external/deqp/external/vulkancts/modules/vulkan/sparse_resources/
vktSparseResourcesTests.cpp 38 tcu::TestCaseGroup* createTests (tcu::TestContext& testCtx)
40 de::MovePtr<tcu::TestCaseGroup> sparseTests (new tcu::TestCaseGroup(testCtx, "sparse_resources", "Sparse Resources Tests"));
42 sparseTests->addChild(createBufferSparseBindingTests(testCtx));
43 sparseTests->addChild(createImageSparseBindingTests(testCtx));
44 sparseTests->addChild(createBufferSparseResidencyTests(testCtx));
45 sparseTests->addChild(createImageSparseResidencyTests(testCtx));
46 sparseTests->addChild(createMipmapSparseResidencyTests(testCtx));
47 sparseTests->addChild(createBufferSparseMemoryAliasingTests(testCtx));
  /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/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);
  /external/deqp/external/vulkancts/modules/vulkan/query_pool/
vktQueryPoolTests.cpp 40 tcu::TestContext& testCtx = queryPoolTests->getTestContext();
42 queryPoolTests->addChild(new QueryPoolOcclusionTests(testCtx));
47 tcu::TestCaseGroup* createTests (tcu::TestContext& testCtx)
49 return createTestGroup(testCtx, "query_pool", "query pool tests", createChildren);
  /external/deqp/external/vulkancts/modules/vulkan/spirv_assembly/
vktSpvAsmTests.cpp 39 tcu::TestContext& testCtx = spirVAssemblyTests->getTestContext();
41 spirVAssemblyTests->addChild(createInstructionTests(testCtx));
49 tcu::TestCaseGroup* createTests (tcu::TestContext& testCtx)
51 return createTestGroup(testCtx, "spirv_assembly", "SPIR-V Assembly tests", createChildren);
  /external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
vktShaderBuiltinTests.cpp 40 tcu::TestCaseGroup* createBuiltinTests (tcu::TestContext& testCtx)
42 de::MovePtr<tcu::TestCaseGroup> builtinTests (new tcu::TestCaseGroup(testCtx, "builtin", "Built-in tests"));
43 de::MovePtr<tcu::TestCaseGroup> builtinFunctionTests (new tcu::TestCaseGroup(testCtx, "function", "Built-in Function Tests"));
45 builtinFunctionTests->addChild(new ShaderCommonFunctionTests(testCtx));
46 builtinFunctionTests->addChild(new ShaderIntegerFunctionTests(testCtx));
47 builtinFunctionTests->addChild(new ShaderPackingFunctionTests(testCtx));
50 builtinTests->addChild(new BuiltinPrecisionTests(testCtx));
  /external/deqp/framework/common/
tcuTestHierarchyUtil.hpp 33 void writeXmlCaselistsToFiles (TestPackageRoot& root, TestContext& testCtx, const CommandLine& cmdLine);
34 void writeTxtCaselistsToFiles (TestPackageRoot& root, TestContext& testCtx, const CommandLine& cmdLine);

Completed in 963 milliseconds

1 2 3 4 5 6 7 8 91011>>