/external/deqp/modules/gles3/functional/ |
H A D | es3fFunctionalTests.cpp | 159 gls::ShaderLibrary shaderLibrary(m_testCtx, m_context.getRenderContext(), m_context.getContextInfo()); 178 addChild(new ShaderCommonFunctionTests (m_context)); 179 addChild(new ShaderPackingFunctionTests (m_context)); 180 addChild(createBuiltinPrecisionTests (m_context)); 194 addChild(new ShaderLibraryTest (m_context, "preprocessor", "Preprocessor Tests")); 195 addChild(new ShaderLibraryTest (m_context, "constants", "Constant Literal Tests")); 196 addChild(new ShaderLibraryTest (m_context, "linkage", "Linkage Tests")); 197 addChild(new ShaderLibraryTest (m_context, "conversions", "Type Conversion Tests")); 198 addChild(new ShaderLibraryTest (m_context, "conditional [all...] |
/external/deqp/modules/gles3/stress/ |
H A D | es3sStressTests.cpp | 54 addChild(new MemoryTests (m_context)); 55 addChild(new OcclusionQueryTests (m_context)); 56 addChild(new SyncTests (m_context)); 57 addChild(new LongRunningTests (m_context)); 58 addChild(new SpecialFloatTests (m_context)); 59 addChild(new DrawTests (m_context)); 60 addChild(new VertexArrayTests (m_context)); 61 addChild(new LongShaderTests (m_context)); 62 addChild(new LongRunningShaderTests (m_context));
|
H A D | 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 [all...] |
/external/deqp/modules/gles2/stress/ |
H A D | 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 [all...] |
H A D | es2sStressTests.cpp | 49 addChild(new MemoryTests (m_context)); 50 addChild(new LongRunningTests (m_context)); 51 addChild(new SpecialFloatTests (m_context)); 52 addChild(new VertexArrayTests (m_context)); 53 addChild(new DrawTests (m_context));
|
/external/deqp/modules/gles2/functional/ |
H A D | es2fFunctionalTests.cpp | 126 addChild(new ShaderExecuteTest(m_context, "preprocessor", "Preprocessor Tests")); 127 addChild(new ShaderExecuteTest(m_context, "constants", "Constant Literal Tests")); 128 addChild(new ShaderExecuteTest(m_context, "linkage", "Linkage Tests")); 129 addChild(new ShaderExecuteTest(m_context, "conversions", "Type Conversion Tests")); 130 addChild(new ShaderExecuteTest(m_context, "conditionals", "Conditionals Tests")); 131 addChild(new ShaderExecuteTest(m_context, "declarations", "Declarations Tests")); 132 addChild(new ShaderExecuteTest(m_context, "swizzles", "Swizzle Tests")); 133 addChild(new ShaderExecuteTest(m_context, "functions", "Function Tests")); 134 addChild(new ShaderExecuteTest(m_context, "keywords", "Keyword Tests")); 135 addChild(new ShaderExecuteTest(m_context, "reserved_operator [all...] |
H A D | es2fLightAmountTest.cpp | 170 glu::ShaderProgram program(m_context.getRenderContext(), glu::makeVtxFragSources(vertexShaderSource, fragmentShaderSource)); 197 addChild(new LightAmountCase(m_context, "none", 0, 0, 0 )); 198 addChild(new LightAmountCase(m_context, "1dir", 1, 0, 0 )); 199 addChild(new LightAmountCase(m_context, "2dir", 2, 0, 0 )); 200 addChild(new LightAmountCase(m_context, "4dir", 4, 0, 0 )); 201 addChild(new LightAmountCase(m_context, "6dir", 6, 0, 0 )); 202 addChild(new LightAmountCase(m_context, "8dir", 8, 0, 0 )); 203 addChild(new LightAmountCase(m_context, "10dir", 10, 0, 0 )); 204 addChild(new LightAmountCase(m_context, "12dir", 12, 0, 0 )); 205 addChild(new LightAmountCase(m_context, "1 [all...] |
/external/deqp/modules/gles31/functional/ |
H A D | es31fFunctionalTests.cpp | 117 gls::ShaderLibrary shaderLibrary(m_testCtx, m_context.getRenderContext(), m_context.getContextInfo()); 139 addChild(new ComputeShaderBuiltinVarTests(m_context)); 153 addChild(new ShaderCommonFunctionTests (m_context)); 154 addChild(new ShaderPackingFunctionTests (m_context)); 155 addChild(new ShaderIntegerFunctionTests (m_context)); 156 addChild(new ShaderTextureSizeTests (m_context)); 157 addChild(createBuiltinPrecisionTests (m_context)); 171 addChild(new ShaderLibraryTest(m_context, "linkage_geometry.test", "geometry", "Geometry shader")); 172 addChild(new ShaderLibraryTest(m_context, "linkage_tessellatio [all...] |
/external/deqp/modules/gles3/performance/ |
H A D | es3pPerformanceTests.cpp | 59 addChild(new TextureFormatTests (m_context)); 60 addChild(new TextureFilteringTests (m_context)); 61 addChild(new TextureCountTests (m_context)); 77 addChild(new ShaderOperatorTests (m_context)); 78 addChild(new ShaderControlStatementTests (m_context)); 94 addChild(new StateChangeCallTests (m_context)); 95 addChild(new StateChangeTests (m_context)); 96 addChild(new RedundantStateChangeTests (m_context)); 112 addChild(new BufferDataUploadTests (m_context)); 129 addChild(new BlendTests (m_context)); [all...] |
/external/deqp/modules/gles2/performance/ |
H A D | es2pPerformanceTests.cpp | 59 addChild(new TextureFormatTests (m_context)); 60 addChild(new TextureFilteringTests (m_context)); 61 addChild(new TextureCountTests (m_context)); 62 addChild(new TextureUploadTests (m_context)); 78 addChild(new ShaderOperatorTests (m_context)); 79 addChild(new ShaderControlStatementTests (m_context)); 95 addChild(new StateChangeCallTests (m_context)); 96 addChild(new StateChangeTests (m_context)); 97 addChild(new RedundantStateChangeTests (m_context)); 98 addChild(new DrawCallBatchingTests (m_context)); [all...] |
H A D | es2pShaderCompilerTests.cpp | 48 addChild(new ShaderOptimizationTests(m_context));
|
/external/deqp/modules/gles2/accuracy/ |
H A D | es2aAccuracyTests.cpp | 46 addChild(new TextureFilteringTests (m_context)); 47 addChild(new TextureMipmapTests (m_context)); 62 addChild(new VaryingInterpolationTests (m_context)); 63 addChild(new TextureTests (m_context));
|
/external/deqp/modules/gles3/accuracy/ |
H A D | es3aAccuracyTests.cpp | 46 addChild(new TextureFilteringTests (m_context)); 47 addChild(new TextureMipmapTests (m_context)); 62 addChild(new VaryingInterpolationTests (m_context)); 63 addChild(new TextureTests (m_context));
|
/external/deqp/modules/gles31/stress/ |
H A D | es31sStressTests.cpp | 48 addChild(new DrawTests (m_context)); 49 addChild(new VertexAttributeBindingTests (m_context)); 50 addChild(new TessellationGeometryInteractionTests (m_context));
|
/external/slf4j/integration/src/test/java/integrator/ |
H A D | Activator.java | 40 private BundleContext m_context = null; field in class:Activator 45 m_context = context; 49 m_context = null; 55 if (m_context != null) { 56 return m_context.getBundles();
|
/external/deqp/framework/opengl/ |
H A D | gluES3PlusWrapperContext.hpp | 60 virtual const tcu::RenderTarget& getRenderTarget (void) const { return m_context->getRenderTarget(); } 61 virtual deUint32 getDefaultFramebuffer (void) const { return m_context->getDefaultFramebuffer(); } 62 virtual void postIterate (void) { m_context->postIterate(); } 65 RenderContext* m_context; //!< Actual GL 4.3 core context. member in class:glu::ES3PlusWrapperContext
|
/external/deqp/modules/gles2/ |
H A D | tes2TestPackage.hpp | 48 Context* getContext (void) { return m_context; } 52 Context* m_context; member in class:deqp::gles2::TestPackage
|
H A D | tes2TestPackage.cpp | 117 , m_context (DE_NULL) 125 delete m_context; 133 m_context = new Context(m_testCtx); 136 addChild(new InfoTests (*m_context)); 137 addChild(new CapabilityTests (*m_context)); 138 addChild(new Functional::FunctionalTests (*m_context)); 139 addChild(new Accuracy::AccuracyTests (*m_context)); 140 addChild(new Performance::PerformanceTests (*m_context)); 141 addChild(new Stress::StressTests (*m_context)); 145 delete m_context; [all...] |
H A D | tes2TestCase.hpp | 42 Context& getContext (void) { return m_context; } 45 Context& m_context; member in class:deqp::gles2::TestCaseGroup 56 Context& m_context; member in class:deqp::gles2::TestCase 61 , m_context (context) 67 , m_context (context) 73 , m_context (context) 79 , m_context (context)
|
/external/deqp/modules/gles3/ |
H A D | tes3TestPackage.hpp | 48 Context* getContext (void) { return m_context; } 52 Context* m_context; member in class:deqp::gles3::TestPackage
|
H A D | tes3TestCase.hpp | 42 Context& getContext (void) { return m_context; } 45 Context& m_context; member in class:deqp::gles3::TestCaseGroup 56 Context& m_context; member in class:deqp::gles3::TestCase 61 , m_context (context) 67 , m_context (context) 73 , m_context (context) 79 , m_context (context)
|
H A D | tes3TestPackage.cpp | 116 , m_context (DE_NULL) 124 delete m_context; 132 m_context = new Context(m_testCtx); 135 addChild(new InfoTests (*m_context)); 136 addChild(new Functional::FunctionalTests (*m_context)); 137 addChild(new Accuracy::AccuracyTests (*m_context)); 138 addChild(new Performance::PerformanceTests (*m_context)); 139 addChild(new Stress::StressTests (*m_context)); 143 delete m_context; 144 m_context [all...] |
/external/deqp/modules/gles31/ |
H A D | tes31TestPackage.hpp | 48 Context* getContext (void) { return m_context; } 52 Context* m_context; member in class:deqp::gles31::TestPackage
|
H A D | tes31TestPackage.cpp | 102 , m_context (DE_NULL) 110 delete m_context; 118 m_context = new Context(m_testCtx); 121 addChild(new InfoTests (*m_context)); 122 addChild(new Functional::FunctionalTests (*m_context)); 123 addChild(new Stress::StressTests (*m_context)); 127 delete m_context; 128 m_context = DE_NULL; 137 delete m_context; 138 m_context [all...] |
H A D | tes31TestCase.hpp | 42 Context& getContext (void) { return m_context; } 45 Context& m_context; member in class:deqp::gles31::TestCaseGroup 56 Context& m_context; member in class:deqp::gles31::TestCase 61 , m_context (context) 67 , m_context (context) 73 , m_context (context) 79 , m_context (context)
|