Searched defs:testCtx (Results 26 - 50 of 103) sorted by relevance

12345

/external/deqp/framework/common/
H A DtcuTestPackage.cpp36 TestPackage::TestPackage (TestContext& testCtx, const char* name, const char* description) argument
37 : TestNode(testCtx, NODETYPE_PACKAGE, name, description)
117 TestPackage* TestPackageRegistry::createPackage (const char* name, TestContext& testCtx) const
120 return info ? info->createFunc(testCtx) : DE_NULL;
137 TestPackageRoot::TestPackageRoot (TestContext& testCtx) argument
138 : TestNode(testCtx, NODETYPE_ROOT, "", "")
142 TestPackageRoot::TestPackageRoot (TestContext& testCtx, const vector<TestNode*>& children) argument
143 : TestNode(testCtx, NODETYPE_ROOT, "", "", children)
147 TestPackageRoot::TestPackageRoot (TestContext& testCtx, const TestPackageRegistry* packageRegistry) argument
148 : TestNode(testCtx, NODETYPE_ROO
[all...]
H A DtcuTestSessionExecutor.cpp48 TestSessionExecutor::TestSessionExecutor (TestPackageRoot& root, TestContext& testCtx) argument
49 : m_testCtx (testCtx)
50 , m_inflater (testCtx)
51 , m_iterator (root, m_inflater, testCtx.getCommandLine())
/external/deqp/modules/gles2/functional/
H A Des2fFboStateQueryTests.cpp46 void checkIntEquals (tcu::TestContext& testCtx, GLint got, GLint expected) argument
52 testCtx.getLog() << TestLog::Message << "// ERROR: Expected " << expected << "; got " << got << TestLog::EndMessage;
53 if (testCtx.getTestResult() == QP_TEST_RESULT_PASS)
54 testCtx.setTestResult(QP_TEST_RESULT_FAIL, "got invalid value");
58 void checkAttachmentParam(tcu::TestContext& testCtx, glu::CallLogWrapper& gl, GLenum target, GLenum attachment, GLenum pname, GLenum reference) argument
63 if (state.verifyValidity(testCtx))
64 checkIntEquals(testCtx, state, reference);
67 void checkColorAttachmentParam(tcu::TestContext& testCtx, glu::CallLogWrapper& gl, GLenum target, GLenum pname, GLenum reference) argument
69 checkAttachmentParam(testCtx, gl, target, GL_COLOR_ATTACHMENT0, pname, reference);
H A Des2fBooleanStateQueryTests.cpp53 virtual void verifyBoolean (tcu::TestContext& testCtx, GLenum name, bool reference) = DE_NULL;
54 virtual void verifyBoolean4 (tcu::TestContext& testCtx, GLenum name, bool reference0, bool reference1, bool reference2, bool reference3) = DE_NULL;
55 virtual void verifyBooleanAnything (tcu::TestContext& testCtx, GLenum name) = DE_NULL;
82 void verifyBoolean (tcu::TestContext& testCtx, GLenum name, bool reference);
83 void verifyBoolean4 (tcu::TestContext& testCtx, GLenum name, bool reference0, bool reference1, bool reference2, bool reference3);
84 void verifyBooleanAnything (tcu::TestContext& testCtx, GLenum name);
92 void IsEnabledVerifier::verifyBoolean (tcu::TestContext& testCtx, GLenum name, bool reference) argument
101 testCtx.getLog() << TestLog::Message << "// ERROR: expected " << (reference ? "GL_TRUE" : "GL_FALSE") << TestLog::EndMessage;
102 if (testCtx.getTestResult() == QP_TEST_RESULT_PASS)
103 testCtx
107 verifyBoolean4(tcu::TestContext& testCtx, GLenum name, bool reference0, bool reference1, bool reference2, bool reference3) argument
118 verifyBooleanAnything(tcu::TestContext& testCtx, GLenum name) argument
140 verifyBoolean(tcu::TestContext& testCtx, GLenum name, bool reference) argument
160 verifyBoolean4(tcu::TestContext& testCtx, GLenum name, bool reference0, bool reference1, bool reference2, bool reference3) argument
194 verifyBooleanAnything(tcu::TestContext& testCtx, GLenum name) argument
221 verifyBoolean(tcu::TestContext& testCtx, GLenum name, bool reference) argument
241 verifyBoolean4(tcu::TestContext& testCtx, GLenum name, bool reference0, bool reference1, bool reference2, bool reference3) argument
275 verifyBooleanAnything(tcu::TestContext& testCtx, GLenum name) argument
301 verifyBoolean(tcu::TestContext& testCtx, GLenum name, bool reference) argument
321 verifyBoolean4(tcu::TestContext& testCtx, GLenum name, bool reference0, bool reference1, bool reference2, bool reference3) argument
355 verifyBooleanAnything(tcu::TestContext& testCtx, GLenum name) argument
[all...]
H A Des2fBufferObjectQueryTests.cpp48 void checkIntEquals (tcu::TestContext& testCtx, GLint got, GLint expected) argument
54 testCtx.getLog() << TestLog::Message << "// ERROR: Expected " << expected << "; got " << got << TestLog::EndMessage;
55 if (testCtx.getTestResult() == QP_TEST_RESULT_PASS)
56 testCtx.setTestResult(QP_TEST_RESULT_FAIL, "got invalid value");
60 void checkPointerEquals (tcu::TestContext& testCtx, const void* got, const void* expected) argument
66 testCtx.getLog() << TestLog::Message << "// ERROR: Expected " << expected << "; got " << got << TestLog::EndMessage;
67 if (testCtx.getTestResult() == QP_TEST_RESULT_PASS)
68 testCtx.setTestResult(QP_TEST_RESULT_FAIL, "got invalid value");
80 virtual void verifyInteger (tcu::TestContext& testCtx, GLenum target, GLenum name, GLint reference) = DE_NULL;
106 void verifyInteger (tcu::TestContext& testCtx, GLenu
114 verifyInteger(tcu::TestContext& testCtx, GLenum target, GLenum name, GLint reference) argument
[all...]
H A Des2fRboStateQueryTests.cpp46 void checkRenderbufferComponentSize (tcu::TestContext& testCtx, glu::CallLogWrapper& gl, int r, int g, int b, int a, int d, int s) argument
71 if (!state.verifyValidity(testCtx))
76 testCtx.getLog() << TestLog::Message << "// ERROR: Expected greater or equal to " << referenceSizes[ndx] << "; got " << state << TestLog::EndMessage;
77 if (testCtx.getTestResult() == QP_TEST_RESULT_PASS)
78 testCtx.setTestResult(QP_TEST_RESULT_FAIL, "got invalid value");
83 void checkIntEquals (tcu::TestContext& testCtx, GLint got, GLint expected) argument
89 testCtx.getLog() << TestLog::Message << "// ERROR: Expected " << expected << "; got " << got << TestLog::EndMessage;
90 if (testCtx.getTestResult() == QP_TEST_RESULT_PASS)
91 testCtx.setTestResult(QP_TEST_RESULT_FAIL, "got invalid value");
95 void checkRenderbufferParam (tcu::TestContext& testCtx, gl argument
[all...]
H A Des2fTextureSizeTests.cpp53 Texture2DSizeCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* description, deUint32 format, deUint32 dataType, int width, int height, bool mipmaps);
76 Texture2DSizeCase::Texture2DSizeCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* description, deUint32 format, deUint32 dataType, int width, int height, bool mipmaps) argument
77 : TestCase (testCtx, name, description)
85 , m_renderer (renderCtx, testCtx.getLog(), glu::GLSL_VERSION_100_ES, glu::PRECISION_MEDIUMP)
168 TextureCubeSizeCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* description, deUint32 format, deUint32 dataType, int width, int height, bool mipmaps);
196 TextureCubeSizeCase::TextureCubeSizeCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* description, deUint32 format, deUint32 dataType, int width, int height, bool mipmaps) argument
197 : TestCase (testCtx, name, description)
205 , m_renderer (renderCtx, testCtx.getLog(), glu::GLSL_VERSION_100_ES, glu::PRECISION_MEDIUMP)
H A Des2fTextureStateQueryTests.cpp57 virtual void verifyInteger (tcu::TestContext& testCtx, GLenum target, GLenum name, GLint reference) = DE_NULL;
58 virtual void verifyFloat (tcu::TestContext& testCtx, GLenum target, GLenum name, GLfloat reference) = DE_NULL;
83 void verifyInteger (tcu::TestContext& testCtx, GLenum target, GLenum name, GLint reference);
84 void verifyFloat (tcu::TestContext& testCtx, GLenum target, GLenum name, GLfloat reference);
92 void GetTexParameterIVerifier::verifyInteger (tcu::TestContext& testCtx, GLenum target, GLenum name, GLint reference) argument
99 if (!state.verifyValidity(testCtx))
104 testCtx.getLog() << TestLog::Message << "// ERROR: expected " << reference << "; got " << state << TestLog::EndMessage;
106 if (testCtx.getTestResult() == QP_TEST_RESULT_PASS)
107 testCtx.setTestResult(QP_TEST_RESULT_FAIL, "Got invalid texture param value");
111 void GetTexParameterIVerifier::verifyFloat (tcu::TestContext& testCtx, GLenu argument
147 verifyInteger(tcu::TestContext& testCtx, GLenum target, GLenum name, GLint reference) argument
170 verifyFloat(tcu::TestContext& testCtx, GLenum target, GLenum name, GLfloat reference) argument
[all...]
H A Des2fTextureWrapTests.cpp59 TextureWrapCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const glu::ContextInfo& ctxInfo, const char* name, const char* description, deUint32 format, deUint32 dataType, deUint32 wrapS, deUint32 wrapT, deUint32 minFilter, deUint32 magFilter, int width, int height);
60 TextureWrapCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const glu::ContextInfo& ctxInfo, const char* name, const char* description, deUint32 wrapS, deUint32 wrapT, deUint32 minFilter, deUint32 magFilter, const std::vector<std::string>& filenames);
89 TextureWrapCase::TextureWrapCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const glu::ContextInfo& ctxInfo, const char* name, const char* description, deUint32 format, deUint32 dataType, deUint32 wrapS, deUint32 wrapT, deUint32 minFilter, deUint32 magFilter, int width, int height) argument
90 : TestCase (testCtx, name, description)
102 , m_renderer (renderCtx, testCtx.getLog(), glu::GLSL_VERSION_100_ES, glu::PRECISION_MEDIUMP)
106 TextureWrapCase::TextureWrapCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const glu::ContextInfo& ctxInfo, const char* name, const char* description, deUint32 wrapS, deUint32 wrapT, deUint32 minFilter, deUint32 magFilter, const std::vector<std::string>& filenames) argument
107 : TestCase (testCtx, name, description)
120 , m_renderer (renderCtx, testCtx.getLog(), glu::GLSL_VERSION_100_ES, glu::PRECISION_MEDIUMP)
H A Des2fDitheringTests.cpp98 DitheringCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* description, bool isEnabled, PatternType patternType, const tcu::Vec4& color);
138 DitheringCase::DitheringCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* const name, const char* const description, const bool ditheringEnabled, const PatternType patternType, const Vec4& color) argument
139 : TestCase (testCtx, name, description)
H A Des2fFboApiTest.cpp58 static void logComment (tcu::TestContext& testCtx, const char* comment) argument
60 testCtx.getLog() << TestLog::Message << "// " << comment << TestLog::EndMessage;
63 static void checkError (tcu::TestContext& testCtx, sglr::Context& ctx, GLenum expect) argument
66 testCtx.getLog() << TestLog::Message << "// " << (result == expect ? "Pass" : "Fail") << ", expected " << glu::getErrorStr(expect) << TestLog::EndMessage;
69 testCtx.setTestResult(QP_TEST_RESULT_FAIL, "Error code mismatch");
72 static void checkEitherError (tcu::TestContext& testCtx, sglr::Context& ctx, GLenum expectA, GLenum expectB) argument
77 testCtx.getLog() << TestLog::Message << "// " << (isOk ? "Pass" : "Fail") << ", expected " << glu::getErrorStr(expectA) << " or " << glu::getErrorStr(expectB) << TestLog::EndMessage;
80 testCtx.setTestResult(QP_TEST_RESULT_FAIL, "Error code mismatch");
128 static void checkFboAttachmentParam (tcu::TestContext& testCtx, sglr::Context& ctx, GLenum attachment, GLenum pname, GLint expectedValue) argument
130 TestLog& log = testCtx
147 notSupportedTest(tcu::TestContext& testCtx, sglr::Context& context) argument
154 textureLevelsTest(tcu::TestContext& testCtx, sglr::Context& context) argument
174 textureLevelsWithRenderToMipmapTest(tcu::TestContext& testCtx, sglr::Context& context) argument
194 validTex2DAttachmentsTest(tcu::TestContext& testCtx, sglr::Context& context) argument
214 validTexCubeAttachmentsTest(tcu::TestContext& testCtx, sglr::Context& context) argument
247 validRboAttachmentsTest(tcu::TestContext& testCtx, sglr::Context& context) argument
268 attachToDefaultFramebufferTest(tcu::TestContext& testCtx, sglr::Context& context) argument
285 invalidTex2DAttachmentTest(tcu::TestContext& testCtx, sglr::Context& context) argument
302 invalidTexCubeAttachmentTest(tcu::TestContext& testCtx, sglr::Context& context) argument
318 invalidRboAttachmentTest(tcu::TestContext& testCtx, sglr::Context& context) argument
334 attachNamesTest(tcu::TestContext& testCtx, sglr::Context& context) argument
358 attachmentQueryDefaultFboTest(tcu::TestContext& testCtx, sglr::Context& ctx) argument
372 attachmentQueryEmptyFboTest(tcu::TestContext& testCtx, sglr::Context& ctx) argument
396 attachmentQueryTex2DTest(tcu::TestContext& testCtx, sglr::Context& ctx) argument
409 attachmentQueryTexCubeTest(tcu::TestContext& testCtx, sglr::Context& ctx) argument
422 attachmentQueryRboTest(tcu::TestContext& testCtx, sglr::Context& ctx) argument
439 deleteTex2DAttachedToBoundFboTest(tcu::TestContext& testCtx, sglr::Context& ctx) argument
455 deleteTexCubeAttachedToBoundFboTest(tcu::TestContext& testCtx, sglr::Context& ctx) argument
471 deleteRboAttachedToBoundFboTest(tcu::TestContext& testCtx, sglr::Context& ctx) argument
487 deleteTex2DAttachedToNotBoundFboTest(tcu::TestContext& testCtx, sglr::Context& ctx) argument
508 deleteTexCubeAttachedToNotBoundFboTest(tcu::TestContext& testCtx, sglr::Context& ctx) argument
529 deleteRboAttachedToNotBoundFboTest(tcu::TestContext& testCtx, sglr::Context& ctx) argument
[all...]
H A Des2fTextureFormatTests.cpp69 Texture2DFormatCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* description, deUint32 format, deUint32 dataType, int width, int height);
91 Texture2DFormatCase::Texture2DFormatCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* description, deUint32 format, deUint32 dataType, int width, int height) argument
92 : TestCase (testCtx, name, description)
99 , m_renderer (renderCtx, testCtx.getLog(), glu::GLSL_VERSION_100_ES, glu::PRECISION_MEDIUMP)
207 TextureCubeFormatCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* description, deUint32 format, deUint32 dataType, int width, int height);
235 TextureCubeFormatCase::TextureCubeFormatCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* description, deUint32 format, deUint32 dataType, int width, int height) argument
236 : TestCase (testCtx, name, description)
243 , m_renderer (renderCtx, testCtx.getLog(), glu::GLSL_VERSION_100_ES, glu::PRECISION_MEDIUMP)
397 Compressed2DFormatCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const glu::ContextInfo& renderCtxInfo, const char* name, const char* description, const std::vector<std::string>& filenames);
417 Compressed2DFormatCase::Compressed2DFormatCase (tcu::TestContext& testCtx, gl argument
522 CompressedCubeFormatCase(tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const glu::ContextInfo& renderCtxInfo, const char* name, const char* description, const std::vector<std::string>& filenames) argument
[all...]
/external/deqp/modules/gles2/
H A Dtes2CapabilityTests.cpp105 ExtensionCase (tcu::TestContext& testCtx, const glu::ContextInfo& ctxInfo, const char* name, const char* desc, const char* extName);
114 ExtensionCase::ExtensionCase (tcu::TestContext& testCtx, const glu::ContextInfo& ctxInfo, const char* name, const char* desc, const char* extName) argument
115 : tcu::TestCase (testCtx, tcu::NODETYPE_CAPABILITY, name, desc)
/external/deqp/modules/internal/
H A DditBuildInfoTests.cpp93 BuildInfoStringCase (tcu::TestContext& testCtx, const char* name, const char* valueName, const char* value) argument
94 : tcu::TestCase (testCtx, name, valueName)
117 BuildEnumCase (tcu::TestContext& testCtx, const char* name, const char* varName, int value, GetStringFunc getString) argument
118 : tcu::TestCase (testCtx, name, varName)
173 BuildInfoTests::BuildInfoTests (tcu::TestContext& testCtx) argument
174 : tcu::TestCaseGroup(testCtx, "build_info", "Build Info Tests")
H A DditImageCompareTests.cpp55 FuzzyComparisonMetricCase (tcu::TestContext& testCtx, const char* name, const char* refImg, const char* cmpImg, const float minBound, const float maxBound) argument
56 : tcu::TestCase (testCtx, name, "")
110 BilinearCompareCase (tcu::TestContext& testCtx, const char* name, const char* refImg, const char* cmpImg, const tcu::RGBA& threshold, bool expectedResult) argument
111 : tcu::TestCase (testCtx, name, "")
156 FuzzyComparisonMetricTests (tcu::TestContext& testCtx) argument
157 : tcu::TestCaseGroup(testCtx, "fuzzy_metric", "Fuzzy comparison metrics")
182 BilinearCompareTests (tcu::TestContext& testCtx) argument
183 : tcu::TestCaseGroup(testCtx, "bilinear_compare", "Bilinear Image Comparison Tests")
216 ImageCompareTests::ImageCompareTests (tcu::TestContext& testCtx) argument
217 : tcu::TestCaseGroup(testCtx, "image_compar
[all...]
/external/deqp/modules/gles3/functional/
H A Des3fBufferObjectQueryTests.cpp48 void checkIntEquals (tcu::TestContext& testCtx, GLint got, GLint expected) argument
54 testCtx.getLog() << TestLog::Message << "// ERROR: Expected " << expected << "; got " << got << TestLog::EndMessage;
55 if (testCtx.getTestResult() == QP_TEST_RESULT_PASS)
56 testCtx.setTestResult(QP_TEST_RESULT_FAIL, "got invalid value");
60 void checkPointerEquals (tcu::TestContext& testCtx, const void* got, const void* expected) argument
66 testCtx.getLog() << TestLog::Message << "// ERROR: Expected " << expected << "; got " << got << TestLog::EndMessage;
67 if (testCtx.getTestResult() == QP_TEST_RESULT_PASS)
68 testCtx.setTestResult(QP_TEST_RESULT_FAIL, "got invalid value");
80 virtual void verifyInteger (tcu::TestContext& testCtx, GLenum target, GLenum name, GLint reference) = DE_NULL;
81 virtual void verifyInteger64 (tcu::TestContext& testCtx, GLenu
116 verifyInteger(tcu::TestContext& testCtx, GLenum target, GLenum name, GLint reference) argument
135 verifyInteger64(tcu::TestContext& testCtx, GLenum target, GLenum name, GLint64 reference) argument
172 verifyInteger(tcu::TestContext& testCtx, GLenum target, GLenum name, GLint reference) argument
191 verifyInteger64(tcu::TestContext& testCtx, GLenum target, GLenum name, GLint64 reference) argument
[all...]
H A Des3fIndexedStateQueryTests.cpp42 void checkIntEquals (tcu::TestContext& testCtx, GLint got, GLint expected) argument
48 testCtx.getLog() << TestLog::Message << "// ERROR: Expected " << expected << "; got " << got << TestLog::EndMessage;
49 if (testCtx.getTestResult() == QP_TEST_RESULT_PASS)
50 testCtx.setTestResult(QP_TEST_RESULT_FAIL, "got invalid value");
54 void checkIntEquals (tcu::TestContext& testCtx, GLint64 got, GLint64 expected) argument
60 testCtx.getLog() << TestLog::Message << "// ERROR: Expected " << expected << "; got " << got << TestLog::EndMessage;
61 if (testCtx.getTestResult() == QP_TEST_RESULT_PASS)
62 testCtx.setTestResult(QP_TEST_RESULT_FAIL, "got invalid value");
H A Des3fInteger64StateQueryTests.cpp55 virtual void verifyUnsignedInteger64GreaterOrEqual (tcu::TestContext& testCtx, GLenum name, GLuint64 reference) = DE_NULL;
83 void verifyUnsignedInteger64GreaterOrEqual (tcu::TestContext& testCtx, GLenum name, GLuint64 reference);
91 void GetBooleanVerifier::verifyUnsignedInteger64GreaterOrEqual (tcu::TestContext& testCtx, GLenum name, GLuint64 reference) argument
98 if (!state.verifyValidity(testCtx))
108 testCtx.getLog() << TestLog::Message << "// ERROR: expected GL_TRUE" << TestLog::EndMessage;
109 if (testCtx.getTestResult() == QP_TEST_RESULT_PASS)
110 testCtx.setTestResult(QP_TEST_RESULT_FAIL, "Got invalid boolean value");
115 testCtx.getLog() << TestLog::Message << "// ERROR: expected GL_TRUE or GL_FALSE" << TestLog::EndMessage;
116 if (testCtx.getTestResult() == QP_TEST_RESULT_PASS)
117 testCtx
135 verifyUnsignedInteger64GreaterOrEqual(tcu::TestContext& testCtx, GLenum name, GLuint64 reference) argument
171 verifyUnsignedInteger64GreaterOrEqual(tcu::TestContext& testCtx, GLenum name, GLuint64 reference) argument
[all...]
H A Des3fRboStateQueryTests.cpp46 void checkRenderbufferComponentSize (tcu::TestContext& testCtx, glu::CallLogWrapper& gl, int r, int g, int b, int a, int d, int s) argument
71 if (!state.verifyValidity(testCtx))
76 testCtx.getLog() << TestLog::Message << "// ERROR: Expected greater or equal to " << referenceSizes[ndx] << "; got " << state << TestLog::EndMessage;
77 if (testCtx.getTestResult() == QP_TEST_RESULT_PASS)
78 testCtx.setTestResult(QP_TEST_RESULT_FAIL, "got invalid value");
83 void checkIntEquals (tcu::TestContext& testCtx, GLint got, GLint expected) argument
89 testCtx.getLog() << TestLog::Message << "// ERROR: Expected " << expected << "; got " << got << TestLog::EndMessage;
90 if (testCtx.getTestResult() == QP_TEST_RESULT_PASS)
91 testCtx.setTestResult(QP_TEST_RESULT_FAIL, "got invalid value");
95 void checkIntGreaterOrEqual (tcu::TestContext& testCtx, GLin argument
107 checkRenderbufferParam(tcu::TestContext& testCtx, glu::CallLogWrapper& gl, GLenum pname, GLenum reference) argument
116 checkRenderbufferParamGreaterOrEqual(tcu::TestContext& testCtx, glu::CallLogWrapper& gl, GLenum pname, GLenum reference) argument
[all...]
H A Des3fTextureSizeTests.cpp53 Texture2DSizeCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* description, deUint32 format, deUint32 dataType, int width, int height, bool mipmaps);
76 Texture2DSizeCase::Texture2DSizeCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* description, deUint32 format, deUint32 dataType, int width, int height, bool mipmaps) argument
77 : TestCase (testCtx, name, description)
85 , m_renderer (renderCtx, testCtx.getLog(), glu::GLSL_VERSION_300_ES, glu::PRECISION_MEDIUMP)
168 TextureCubeSizeCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* description, deUint32 format, deUint32 dataType, int width, int height, bool mipmaps);
196 TextureCubeSizeCase::TextureCubeSizeCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* description, deUint32 format, deUint32 dataType, int width, int height, bool mipmaps) argument
197 : TestCase (testCtx, name, description)
205 , m_renderer (renderCtx, testCtx.getLog(), glu::GLSL_VERSION_300_ES, glu::PRECISION_MEDIUMP)
/external/deqp/modules/gles3/stress/
H A Des3sOcclusionQueryTests.cpp284 OcclusionQueryTests::OcclusionQueryTests (Context& testCtx) argument
285 : TestCaseGroup(testCtx, "occlusion_query", "Occlusion query stress tests")
/external/deqp/modules/glshared/
H A DglsRandomUniformBlockCase.cpp39 RandomUniformBlockCase::RandomUniformBlockCase (tcu::TestContext& testCtx, argument
47 : UniformBlockCase (testCtx, renderCtx, name, description, glslVersion, bufferMode)
H A DglsSamplerObjectTest.cpp72 TextureSamplerTest::TextureSamplerTest (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const TestSpec& spec) argument
73 : tcu::TestCase (testCtx, spec.name, spec.desc)
583 MultiTextureSamplerTest::MultiTextureSamplerTest (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const TestSpec& spec) argument
584 : TestCase (testCtx, spec.name, spec.desc)
H A DglsShaderPerformanceCase.cpp41 ShaderPerformanceCase::ShaderPerformanceCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* description, PerfCaseType caseType) argument
42 : tcu::TestCase (testCtx, tcu::NODETYPE_PERFORMANCE, name, description)
220 ShaderPerformanceCaseGroup::ShaderPerformanceCaseGroup (tcu::TestContext& testCtx, const char* name, const char* description) argument
221 : TestCaseGroup (testCtx, name, description)
/external/deqp/modules/egl/
H A DteglImageTests.cpp96 tcu::TestContext& testCtx = eglTestCtx.getTestContext(); local
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(); local
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
[all...]

Completed in 1018 milliseconds

12345