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

1 2

  /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/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);
vktComputeIndirectComputeDispatchTests.cpp 203 tcu::TestContext& testCtx = m_context.getTestContext();
205 testCtx.getLog() << tcu::TestLog::Message << "GL_DISPATCH_INDIRECT_BUFFER size = " << m_bufferSize << tcu::TestLog::EndMessage;
207 tcu::ScopedLogSection section(testCtx.getLog(), "Commands", "Indirect Dispatch Commands (" + de::toString(m_dispatchCommands.size()) + " in total)");
211 testCtx.getLog()
350 tcu::TestContext& testCtx = m_context.getTestContext();
352 testCtx.getLog()
368 IndirectDispatchCaseBufferUpload (tcu::TestContext& testCtx,
388 IndirectDispatchCaseBufferUpload::IndirectDispatchCaseBufferUpload (tcu::TestContext& testCtx,
391 : vkt::TestCase (testCtx, caseDesc.m_name, caseDesc.m_description)
512 IndirectDispatchCaseBufferGenerate (tcu::TestContext& testCtx,
    [all...]
vktComputeShaderBuiltinVarTests.cpp 485 tcu::TestContext& testCtx = m_context.getTestContext();
508 testCtx.getLog()
515 testCtx.getLog() << TestLog::Message << "..." << TestLog::EndMessage;
521 testCtx.getLog() << TestLog::Message << (numInvocations - numFailed) << " / " << numInvocations << " values passed" << TestLog::EndMessage;
559 tcu::TestCaseGroup* createComputeShaderBuiltinVarTests (tcu::TestContext& testCtx)
561 return new ComputeShaderBuiltinVarTests(testCtx);
  /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/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/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/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/image/
vktImageTests.cpp 42 tcu::TestContext& testCtx = imageTests->getTestContext();
44 imageTests->addChild(createImageStoreTests(testCtx));
45 imageTests->addChild(createImageLoadStoreTests(testCtx));
46 imageTests->addChild(createImageMultisampleLoadStoreTests(testCtx));
47 imageTests->addChild(createImageFormatReinterpretTests(testCtx));
48 imageTests->addChild(createImageQualifiersTests(testCtx));
49 imageTests->addChild(createImageSizeTests(testCtx));
50 imageTests->addChild(createImageAtomicOperationTests(testCtx));
55 tcu::TestCaseGroup* createTests (tcu::TestContext& testCtx)
57 return createTestGroup(testCtx, "image", "Image tests", createChildren)
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/memory/
vktMemoryTests.cpp 42 tcu::TestContext& testCtx = memoryTests->getTestContext();
44 memoryTests->addChild(createAllocationTests (testCtx));
45 memoryTests->addChild(createMappingTests (testCtx));
46 memoryTests->addChild(createPipelineBarrierTests (testCtx));
47 memoryTests->addChild(createRequirementsTests (testCtx));
52 tcu::TestCaseGroup* createTests (tcu::TestContext& testCtx)
54 return createTestGroup(testCtx, "memory", "Memory Tests", createChildren);
  /external/deqp/external/vulkancts/modules/vulkan/pipeline/
vktPipelineTests.cpp 53 tcu::TestContext& testCtx = pipelineTests->getTestContext();
55 pipelineTests->addChild(createStencilTests (testCtx));
56 pipelineTests->addChild(createBlendTests (testCtx));
57 pipelineTests->addChild(createDepthTests (testCtx));
58 pipelineTests->addChild(createImageTests (testCtx));
59 pipelineTests->addChild(createSamplerTests (testCtx));
60 pipelineTests->addChild(createImageViewTests (testCtx));
61 pipelineTests->addChild(createPushConstantTests (testCtx));
62 pipelineTests->addChild(createSpecConstantTests (testCtx));
63 pipelineTests->addChild(createMultisampleTests (testCtx));
    [all...]
  /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/texture/
vktTextureTests.cpp 43 tcu::TestContext& testCtx = textureTests->getTestContext();
45 textureTests->addChild(createTextureFilteringTests (testCtx));
46 textureTests->addChild(createTextureMipmappingTests (testCtx));
47 textureTests->addChild(createExplicitLodTests (testCtx));
48 textureTests->addChild(createTextureShadowTests (testCtx));
49 textureTests->addChild(createFilteringAnisotropyTests (testCtx));
54 tcu::TestCaseGroup* createTests (tcu::TestContext& testCtx)
56 return createTestGroup(testCtx, "texture", "Texture Tests", createTextureTests);
  /external/deqp/external/vulkancts/modules/vulkan/api/
vktApiTests.cpp 52 tcu::TestContext& testCtx = bufferViewTests->getTestContext();
54 bufferViewTests->addChild(createBufferViewCreateTests (testCtx));
55 bufferViewTests->addChild(createBufferViewAccessTests (testCtx));
60 tcu::TestContext& testCtx = apiTests->getTestContext();
62 apiTests->addChild(createSmokeTests (testCtx));
63 apiTests->addChild(api::createFeatureInfoTests (testCtx));
64 apiTests->addChild(createDeviceInitializationTests (testCtx));
65 apiTests->addChild(createObjectManagementTests (testCtx));
66 apiTests->addChild(createBufferTests (testCtx));
67 apiTests->addChild(createTestGroup (testCtx, "buffer_view", "BufferView tests", createBufferViewTests))
    [all...]
  /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/vulkancts/modules/vulkan/synchronization/
vktSynchronizationTests.cpp 55 OperationTests (tcu::TestContext& testCtx)
56 : tcu::TestCaseGroup(testCtx, "op", "Synchronization of a memory-modifying operation")
74 tcu::TestContext& testCtx = group->getTestContext();
76 group->addChild(createSmokeTests(testCtx));
77 group->addChild(createTestGroup (testCtx, "basic", "Basic synchronization tests", createBasicTests));
78 group->addChild(new OperationTests(testCtx));
79 group->addChild(createInternallySynchronizedObjects(testCtx));
84 tcu::TestCaseGroup* createTests (tcu::TestContext& testCtx)
86 return createTestGroup(testCtx, "synchronization", "Synchronization tests", createChildren);
vktSynchronizationOperationSingleQueueTests.cpp 323 SyncTestCase (tcu::TestContext& testCtx,
331 : TestCase (testCtx, name, description)
374 tcu::TestContext& testCtx = group->getTestContext();
391 de::MovePtr<tcu::TestCaseGroup> synchGroup (new tcu::TestCaseGroup(testCtx, groups[groupNdx].name, ""));
401 de::MovePtr<tcu::TestCaseGroup> opGroup (new tcu::TestCaseGroup(testCtx, opGroupName.c_str(), ""));
410 opGroup->addChild(new SyncTestCase(testCtx, name, "", groups[groupNdx].syncPrimitive, resource, writeOp, readOp, *pipelineCacheData));
424 tcu::TestCaseGroup* createSynchronizedOperationSingleQueueTests (tcu::TestContext& testCtx, PipelineCacheData& pipelineCacheData)
426 return createTestGroup(testCtx, "single_queue", "Synchronization of a memory-modifying operation", createTests, &pipelineCacheData);
  /external/deqp/modules/gles31/
tes31TestPackage.cpp 75 tcu::TestContext& testCtx = m_testPackage.getContext()->getTestContext();
86 testCtx.getLog() << e;
87 testCtx.setTestResult(QP_TEST_RESULT_RESOURCE_ERROR, "Resource error in context post-iteration routine");
88 testCtx.setTerminateAfter(true);
93 testCtx.getLog() << e;
94 testCtx.setTestResult(QP_TEST_RESULT_FAIL, "Error in context post-iteration routine");
99 TestPackage::TestPackage (tcu::TestContext& testCtx)
100 : tcu::TestPackage (testCtx, "dEQP-GLES31", "dEQP OpenGL ES 3.1 Tests")
101 , m_archive (testCtx.getRootArchive(), "gles31/")
  /external/deqp/modules/gles2/
tes2TestPackage.cpp 80 tcu::TestContext& testCtx = m_testPackage.getContext()->getTestContext();
101 testCtx.getLog() << e;
102 testCtx.setTestResult(QP_TEST_RESULT_RESOURCE_ERROR, "Resource error in context post-iteration routine");
103 testCtx.setTerminateAfter(true);
108 testCtx.getLog() << e;
109 testCtx.setTestResult(QP_TEST_RESULT_FAIL, "Error in context post-iteration routine");
114 TestPackage::TestPackage (tcu::TestContext& testCtx)
115 : tcu::TestPackage (testCtx, "dEQP-GLES2", "dEQP OpenGL ES 2.0 Tests")
116 , m_archive (testCtx.getRootArchive(), "gles2/")
  /external/deqp/modules/gles3/
tes3TestPackage.cpp 79 tcu::TestContext& testCtx = m_testPackage.getContext()->getTestContext();
100 testCtx.getLog() << e;
101 testCtx.setTestResult(QP_TEST_RESULT_RESOURCE_ERROR, "Resource error in context post-iteration routine");
102 testCtx.setTerminateAfter(true);
107 testCtx.getLog() << e;
108 testCtx.setTestResult(QP_TEST_RESULT_FAIL, "Error in context post-iteration routine");
113 TestPackage::TestPackage (tcu::TestContext& testCtx)
114 : tcu::TestPackage (testCtx, "dEQP-GLES3", "dEQP OpenGL ES 3.0 Tests")
115 , m_archive (testCtx.getRootArchive(), "gles3/")
  /external/skia/tools/gpu/
GrContextFactory.cpp 127 std::unique_ptr<TestContext> testCtx;
186 testCtx.reset(glCtx);
201 testCtx.reset(CreatePlatformVkTestContext());
202 if (!testCtx) {
215 backendContext = testCtx->backendContext();
221 testCtx->makeCurrent();
222 SkASSERT(testCtx && testCtx->backend() == backend);
255 context.fTestContext = testCtx.release();
  /external/deqp/external/vulkancts/modules/vulkan/
vktTestPackage.cpp 168 TestCaseExecutor (tcu::TestContext& testCtx);
188 static MovePtr<vk::Library> createLibrary (tcu::TestContext& testCtx)
190 return MovePtr<vk::Library>(testCtx.getPlatform().getVulkanPlatform().createLibrary());
193 TestCaseExecutor::TestCaseExecutor (tcu::TestContext& testCtx)
194 : m_prebuiltBinRegistry (testCtx.getArchive(), "vulkan/prebuilt")
195 , m_library (createLibrary(testCtx))
196 , m_context (testCtx, m_library->getPlatformInterface(), m_progCollection)
197 , m_debugReportRecorder (testCtx.getCommandLine().isValidationEnabled()
314 tcu::TestContext& testCtx = glslTests->getTestContext();
335 glslTests->addChild(createShaderLibraryGroup(testCtx,
    [all...]
  /external/deqp/modules/egl/
teglImageTests.cpp 96 tcu::TestContext& testCtx = eglTestCtx.getTestContext();
97 TestLog& log = testCtx.getLog();
109 if (testCtx.getTestResult() == QP_TEST_RESULT_PASS)
110 testCtx.setTestResult(QP_TEST_RESULT_FAIL, "Invalid error code");
119 tcu::TestContext& testCtx = eglTestCtx.getTestContext();
120 TestLog& log = testCtx.getLog();
131 if (testCtx.getTestResult() == QP_TEST_RESULT_PASS)
132 testCtx.setTestResult(QP_TEST_RESULT_FAIL, "Invalid return value");
139 if (testCtx.getTestResult() == QP_TEST_RESULT_PASS)
140 testCtx.setTestResult(QP_TEST_RESULT_FAIL, "Invalid error code")
    [all...]
  /external/deqp/modules/gles31/functional/
es31fFboNoAttachmentTests.cpp 268 FramebufferCompletenessCase (tcu::TestContext& testCtx,
280 FramebufferCompletenessCase::FramebufferCompletenessCase (tcu::TestContext& testCtx,
284 : TestCase (testCtx, name, desc)
326 SizeCase (tcu::TestContext& testCtx,
349 SizeCase::SizeCase (tcu::TestContext& testCtx,
354 : TestCase (testCtx, name, desc)
435 AttachmentInteractionCase (tcu::TestContext& testCtx,
451 AttachmentInteractionCase::AttachmentInteractionCase (tcu::TestContext& testCtx,
457 : TestCase (testCtx, name, desc)
502 tcu::TestContext& testCtx = context.getTestContext()
    [all...]

Completed in 360 milliseconds

1 2