OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:basicGroup
(Results
1 - 10
of
10
) sorted by null
/external/deqp/modules/gles2/functional/
es2fFragOpInteractionTests.cpp
50
tcu::TestCaseGroup* const
basicGroup
= new tcu::TestCaseGroup(m_testCtx, "basic_shader", "Basic shaders");
55
addChild(
basicGroup
);
79
basicGroup
->addChild(new FragOpInteractionCase(m_testCtx, m_context.getRenderContext(), m_context.getContextInfo(), de::toString(ndx).c_str(), params));
es2fBufferWriteTests.cpp
571
tcu::TestCaseGroup* const
basicGroup
= new tcu::TestCaseGroup(m_testCtx, "basic", "Basic upload with glBufferData()");
572
addChild(
basicGroup
);
584
basicGroup
->addChild(new BasicBufferDataCase(m_context, name.c_str(), "", target, usage, size, verify));
687
tcu::TestCaseGroup* const
basicGroup
= new tcu::TestCaseGroup(m_testCtx, "basic_subdata", "Basic glBufferSubData() usage");
688
addChild(
basicGroup
);
700
basicGroup
->addChild(new BasicBufferDataCase(m_context, name.c_str(), "", target, usage, size, verify));
/external/deqp/modules/gles2/stress/
es2sMemoryTests.cpp
59
tcu::TestCaseGroup*
basicGroup
= new TestCaseGroup(m_context, "basic", "Basic allocation stress tests.");
62
basicGroup
->addChild(new MemoryStressCase(m_context.getTestContext(), m_context.getRenderContext(), MEMOBJECTTYPE_BUFFER, 0, 0, 1*MiB, 1*MiB, false, false, false, false, "buffer_1mb_no_write_no_use", "1MiB buffer allocations, no data writes, no use"));
63
basicGroup
->addChild(new MemoryStressCase(m_context.getTestContext(), m_context.getRenderContext(), MEMOBJECTTYPE_BUFFER, 0, 0, 1*MiB, 1*MiB, true, false, false, false, "buffer_1mb_write_no_use", "1MiB buffer allocations, data writes, no use"));
64
basicGroup
->addChild(new MemoryStressCase(m_context.getTestContext(), m_context.getRenderContext(), MEMOBJECTTYPE_BUFFER, 0, 0, 1*MiB, 1*MiB, false, true, false, false, "buffer_1mb_no_write_use", "1MiB buffer allocations, no data writes, data used"));
65
basicGroup
->addChild(new MemoryStressCase(m_context.getTestContext(), m_context.getRenderContext(), MEMOBJECTTYPE_BUFFER, 0, 0, 1*MiB, 1*MiB, true, true, false, false, "buffer_1mb_write_use", "1MiB buffer allocations, data writes, data used"));
67
basicGroup
->addChild(new MemoryStressCase(m_context.getTestContext(), m_context.getRenderContext(), MEMOBJECTTYPE_BUFFER, 0, 0, 8*MiB, 8*MiB, false, false, false, false, "buffer_8mb_no_write_no_use", "8MiB buffer allocations, no data writes, no use"));
68
basicGroup
->addChild(new MemoryStressCase(m_context.getTestContext(), m_context.getRenderContext(), MEMOBJECTTYPE_BUFFER, 0, 0, 8*MiB, 8*MiB, true, false, false, false, "buffer_8mb_write_no_use", "8MiB buffer allocations, data writes, no use"));
69
basicGroup
->addChild(new MemoryStressCase(m_context.getTestContext(), m_context.getRenderContext(), MEMOBJECTTYPE_BUFFER, 0, 0, 8*MiB, 8*MiB, false, true, false, false, "buffer_8mb_no_write_use", "8MiB buffer allocations, no data writes, data used"));
70
basicGroup
->addChild(new MemoryStressCase(m_context.getTestContext(), m_context.getRenderContext(), MEMOBJECTTYPE_BUFFER, 0, 0, 8*MiB, 8*MiB, true, true, false, false, "buffer_8mb_write_use", "8MiB buffer allocations, data writes, data used"));
72
basicGroup
->addChild(new MemoryStressCase(m_context.getTestContext(), m_context.getRenderContext(), MEMOBJECT (…)
[
all
...]
/external/deqp/modules/gles3/functional/
es3fFragOpInteractionTests.cpp
50
tcu::TestCaseGroup* const
basicGroup
= new tcu::TestCaseGroup(m_testCtx, "basic_shader", "Basic shaders");
55
addChild(
basicGroup
);
79
basicGroup
->addChild(new FragOpInteractionCase(m_testCtx, m_context.getRenderContext(), m_context.getContextInfo(), de::toString(ndx).c_str(), params));
es3fFboDepthbufferTests.cpp
329
tcu::TestCaseGroup*
basicGroup
= new tcu::TestCaseGroup(m_testCtx, "basic", "Basic depth tests");
330
addChild(
basicGroup
);
333
basicGroup
->addChild(new BasicFboDepthCase(m_context, getFormatName(depthFormats[fmtNdx]), "", depthFormats[fmtNdx], 119, 127));
es3fFboStencilbufferTests.cpp
257
tcu::TestCaseGroup*
basicGroup
= new tcu::TestCaseGroup(m_testCtx, "basic", "Basic stencil tests");
258
addChild(
basicGroup
);
265
basicGroup
->addChild(new BasicFboStencilCase(m_context, getFormatName(format), "", format, IVec2(111, 132), false));
268
basicGroup
->addChild(new BasicFboStencilCase(m_context, (string(getFormatName(format)) + "_depth").c_str(), "", format, IVec2(111, 132), true));
es3fBufferCopyTests.cpp
255
tcu::TestCaseGroup*
basicGroup
= new tcu::TestCaseGroup(m_testCtx, "basic", "Basic buffer copy cases");
256
addChild(
basicGroup
);
272
basicGroup
->addChild(new BasicBufferCopyCase(m_context, name.c_str(), "", srcTarget, size, hint, dstTarget, size, hint, 0, 0, size, verify));
es3fBufferWriteTests.cpp
586
tcu::TestCaseGroup* const
basicGroup
= new tcu::TestCaseGroup(m_testCtx, "basic", "Basic upload with glBufferData()");
587
addChild(
basicGroup
);
599
basicGroup
->addChild(new BasicBufferDataCase(m_context, name.c_str(), "", target, usage, size, verify));
687
tcu::TestCaseGroup* const
basicGroup
= new tcu::TestCaseGroup(m_testCtx, "basic_subdata", "Basic glBufferSubData() usage");
688
addChild(
basicGroup
);
700
basicGroup
->addChild(new BasicBufferDataCase(m_context, name.c_str(), "", target, usage, size, verify));
/external/deqp/modules/gles3/stress/
es3sMemoryTests.cpp
61
tcu::TestCaseGroup*
basicGroup
= new TestCaseGroup(m_context, "basic", "Basic allocation stress tests.");
64
basicGroup
->addChild(new MemoryStressCase(m_context.getTestContext(), m_context.getRenderContext(), MEMOBJECTTYPE_BUFFER, 0, 0, 1*MiB, 1*MiB, false, false, false, false, "buffer_1mb_no_write_no_use", "1MiB buffer allocations, no data writes, no use"));
65
basicGroup
->addChild(new MemoryStressCase(m_context.getTestContext(), m_context.getRenderContext(), MEMOBJECTTYPE_BUFFER, 0, 0, 1*MiB, 1*MiB, true, false, false, false, "buffer_1mb_write_no_use", "1MiB buffer allocations, data writes, no use"));
66
basicGroup
->addChild(new MemoryStressCase(m_context.getTestContext(), m_context.getRenderContext(), MEMOBJECTTYPE_BUFFER, 0, 0, 1*MiB, 1*MiB, false, true, false, false, "buffer_1mb_no_write_use", "1MiB buffer allocations, no data writes, data used"));
67
basicGroup
->addChild(new MemoryStressCase(m_context.getTestContext(), m_context.getRenderContext(), MEMOBJECTTYPE_BUFFER, 0, 0, 1*MiB, 1*MiB, true, true, false, false, "buffer_1mb_write_use", "1MiB buffer allocations, data writes, data used"));
69
basicGroup
->addChild(new MemoryStressCase(m_context.getTestContext(), m_context.getRenderContext(), MEMOBJECTTYPE_BUFFER, 0, 0, 8*MiB, 8*MiB, false, false, false, false, "buffer_8mb_no_write_no_use", "8MiB buffer allocations, no data writes, no use"));
70
basicGroup
->addChild(new MemoryStressCase(m_context.getTestContext(), m_context.getRenderContext(), MEMOBJECTTYPE_BUFFER, 0, 0, 8*MiB, 8*MiB, true, false, false, false, "buffer_8mb_write_no_use", "8MiB buffer allocations, data writes, no use"));
71
basicGroup
->addChild(new MemoryStressCase(m_context.getTestContext(), m_context.getRenderContext(), MEMOBJECTTYPE_BUFFER, 0, 0, 8*MiB, 8*MiB, false, true, false, false, "buffer_8mb_no_write_use", "8MiB buffer allocations, no data writes, data used"));
72
basicGroup
->addChild(new MemoryStressCase(m_context.getTestContext(), m_context.getRenderContext(), MEMOBJECTTYPE_BUFFER, 0, 0, 8*MiB, 8*MiB, true, true, false, false, "buffer_8mb_write_use", "8MiB buffer allocations, data writes, data used"));
74
basicGroup
->addChild(new MemoryStressCase(m_context.getTestContext(), m_context.getRenderContext(), MEMOBJECT (…)
[
all
...]
/external/deqp/modules/gles31/functional/
es31fAdvancedBlendTests.cpp
776
tcu::TestCaseGroup* const
basicGroup
= new tcu::TestCaseGroup(m_testCtx, "basic", "Single quad only");
784
addChild(
basicGroup
);
818
basicGroup
->addChild (new AdvancedBlendCase(m_context, name, desc, mode, 1, false, RENDERTARGETTYPE_DEFAULT));
Completed in 887 milliseconds