Searched refs:renderCtx (Results 1 - 25 of 124) sorted by relevance

12345

/external/deqp/framework/opengl/
H A DgluStateReset.hpp34 void resetState (const RenderContext& renderCtx, const ContextInfo& ctxInfo);
/external/deqp/modules/glshared/
H A DglsScissorTests.hpp77 glu::RenderContext& renderCtx,
85 glu::RenderContext& renderCtx,
92 glu::RenderContext& renderCtx,
98 glu::RenderContext& renderCtx,
H A DglsShaderLibrary.cpp38 CaseFactory (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const glu::ContextInfo& contextInfo) argument
40 , m_renderCtx (renderCtx)
63 ShaderLibrary::ShaderLibrary (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const glu::ContextInfo& contextInfo) argument
65 , m_renderCtx (renderCtx)
H A DglsAttributeLocationTests.hpp138 glu::RenderContext& renderCtx,
157 glu::RenderContext& renderCtx,
175 glu::RenderContext& renderCtx,
195 glu::RenderContext& renderCtx,
213 glu::RenderContext& renderCtx,
231 glu::RenderContext& renderCtx,
247 glu::RenderContext& renderCtx);
261 glu::RenderContext& renderCtx);
275 glu::RenderContext& renderCtx);
289 glu::RenderContext& renderCtx);
[all...]
H A DglsBufferTestUtil.hpp64 BufferCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* description);
118 BufferWriterBase (glu::RenderContext& renderCtx, tcu::TestLog& log);
137 BufferWriter (glu::RenderContext& renderCtx, tcu::TestLog& log, WriteType writeType);
155 BufferSubDataWriter (glu::RenderContext& renderCtx, tcu::TestLog& log) : BufferWriterBase(renderCtx, log) {} argument
167 BufferWriteMapWriter (glu::RenderContext& renderCtx, tcu::TestLog& log) : BufferWriterBase(renderCtx, log) {} argument
194 BufferVerifierBase (glu::RenderContext& renderCtx, tcu::TestLog& log);
214 BufferVerifier (glu::RenderContext& renderCtx, tcu::TestLog& log, VerifyType verifyType);
234 BufferMapVerifier (glu::RenderContext& renderCtx, tc argument
[all...]
H A DglsBuiltinPrecisionTests.hpp55 glu::RenderContext& renderCtx,
H A DglsShaderLibrary.hpp41 ShaderLibrary (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const glu::ContextInfo& contextInfo);
H A DglsShaderExecUtil.cpp53 static bool isExtensionSupported (const glu::RenderContext& renderCtx, const std::string& extension) argument
55 const glw::Functions& gl = renderCtx.getFunctions();
71 static void checkExtension (const glu::RenderContext& renderCtx, const std::string& extension) argument
73 if (!isExtensionSupported(renderCtx, extension))
77 static void checkLimit (const glu::RenderContext& renderCtx, deUint32 pname, int required) argument
79 const glw::Functions& gl = renderCtx.getFunctions();
457 ShaderExecutor::ShaderExecutor (const glu::RenderContext& renderCtx, const ShaderSpec& shaderSpec) argument
458 : m_renderCtx (renderCtx)
485 FragmentOutExecutor (const glu::RenderContext& renderCtx, const ShaderSpec& shaderSpec);
514 inline bool hasFloatRenderTargets (const glu::RenderContext& renderCtx) argument
520 FragmentOutExecutor(const glu::RenderContext& renderCtx, const ShaderSpec& shaderSpec) argument
715 VertexShaderExecutor(const glu::RenderContext& renderCtx, const ShaderSpec& shaderSpec) argument
747 create(const glu::RenderContext& renderCtx, const ShaderSpec& shaderSpec) argument
755 GeometryShaderExecutor(const glu::RenderContext& renderCtx, const ShaderSpec& shaderSpec) argument
784 FragmentShaderExecutor(const glu::RenderContext& renderCtx, const ShaderSpec& shaderSpec) argument
869 BufferIoExecutor(const glu::RenderContext& renderCtx, const ShaderSpec& shaderSpec, const glu::ProgramSources& sources) argument
1194 ComputeShaderExecutor(const glu::RenderContext& renderCtx, const ShaderSpec& shaderSpec) argument
1256 checkTessSupport(const glu::RenderContext& renderCtx, const ShaderSpec& shaderSpec, glu::ShaderType stage) argument
1290 create(const glu::RenderContext& renderCtx, const ShaderSpec& shaderSpec) argument
1349 TessControlExecutor(const glu::RenderContext& renderCtx, const ShaderSpec& shaderSpec) argument
1403 create(const glu::RenderContext& renderCtx, const ShaderSpec& shaderSpec) argument
1463 TessEvaluationExecutor(const glu::RenderContext& renderCtx, const ShaderSpec& shaderSpec) argument
1504 createExecutor(const glu::RenderContext& renderCtx, glu::ShaderType shaderType, const ShaderSpec& shaderSpec) argument
[all...]
H A DglsTextureStateQueryTests.hpp77 tcu::TestCase* createIsTextureTest (tcu::TestContext& testCtx, const glu::RenderContext& renderCtx, const std::string& name, const std::string& description, glw::GLenum target);
78 tcu::TestCase* createTexParamTest (tcu::TestContext& testCtx, const glu::RenderContext& renderCtx, const std::string& name, const std::string& description, StateQueryUtil::QueryType queryType, glw::GLenum target, TesterType tester);
79 tcu::TestCase* createSamplerParamTest (tcu::TestContext& testCtx, const glu::RenderContext& renderCtx, const std::string& name, const std::string& description, StateQueryUtil::QueryType queryType, TesterType tester);
H A DglsShaderLibraryCase.hpp48 glu::RenderContext& renderCtx,
H A DglsAttributeLocationTests.cpp100 deInt32 getMaxAttributeLocations (glu::RenderContext& renderCtx) argument
102 const glw::Functions& gl = renderCtx.getFunctions();
254 string createVertexShaderSource (glu::RenderContext& renderCtx, const vector<Attribute>& attributes, bool attributeAliasing) argument
257 const glu::GLSLVersion contextGLSLVersion = glu::getContextTypeGLSLVersion(renderCtx.getType());
276 string createFragmentShaderSource (glu::RenderContext& renderCtx, bool attributeAliasing) argument
288 const glu::GLSLVersion contextGLSLVersion = glu::getContextTypeGLSLVersion(renderCtx.getType());
412 pair<deUint32, deUint32> createAndAttachShaders (TestLog& log, glu::RenderContext& renderCtx, deUint32 program, const vector<Attribute>& attributes, bool attributeAliasing) argument
414 const glw::Functions& gl = renderCtx.getFunctions();
415 const string vertexShaderSource = createVertexShaderSource(renderCtx, attributes, attributeAliasing);
416 const string fragmentShaderSource = createFragmentShaderSource(renderCtx, attributeAliasin
686 runTest(tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const vector<Attribute>& attributes, const vector<Bind>& preAttachBind, const vector<Bind>& preLinkBind, const vector<Bind>& postLinkBind, bool relink, bool reattach = false, const vector<Attribute>& reattachAttributes = vector<Attribute>()) argument
804 BindAttributeTest(tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const AttribType& type, int arraySize) argument
829 BindMaxAttributesTest(tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const AttribType& type, int arraySize) argument
863 BindAliasingAttributeTest(tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const AttribType& type, int offset, int arraySize) argument
893 BindMaxAliasingAttributeTest(tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const AttribType& type, int arraySize) argument
930 BindHoleAttributeTest(tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const AttribType& type, int arraySize) argument
970 BindInactiveAliasingAttributeTest(tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const AttribType& type, int arraySize) argument
1008 PreAttachBindAttributeTest(tcu::TestContext& testCtx, glu::RenderContext& renderCtx) argument
1029 PreLinkBindAttributeTest(tcu::TestContext& testCtx, glu::RenderContext& renderCtx) argument
1050 PostLinkBindAttributeTest(tcu::TestContext& testCtx, glu::RenderContext& renderCtx) argument
1071 LocationAttributeTest(tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const AttribType& type, int arraySize) argument
1094 LocationMaxAttributesTest(tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const AttribType& type, int arraySize) argument
1126 LocationHoleAttributeTest(tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const AttribType& type, int arraySize) argument
1162 MixedAttributeTest(tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const AttribType& type, int arraySize) argument
1187 MixedMaxAttributesTest(tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const AttribType& type, int arraySize) argument
1227 MixedHoleAttributeTest(tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const AttribType& type, int arraySize) argument
1272 BindRelinkAttributeTest(tcu::TestContext& testCtx, glu::RenderContext& renderCtx) argument
1300 BindRelinkHoleAttributeTest(tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const AttribType& type, int arraySize) argument
1343 MixedRelinkHoleAttributeTest(tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const AttribType& type, int arraySize) argument
1391 BindReattachAttributeTest(tcu::TestContext& testCtx, glu::RenderContext& renderCtx) argument
1418 PreAttachMixedAttributeTest(tcu::TestContext& testCtx, glu::RenderContext& renderCtx) argument
1439 PreLinkMixedAttributeTest(tcu::TestContext& testCtx, glu::RenderContext& renderCtx) argument
1460 PostLinkMixedAttributeTest(tcu::TestContext& testCtx, glu::RenderContext& renderCtx) argument
1481 MixedReattachAttributeTest(tcu::TestContext& testCtx, glu::RenderContext& renderCtx) argument
1508 MixedRelinkAttributeTest(tcu::TestContext& testCtx, glu::RenderContext& renderCtx) argument
[all...]
H A DglsShaderExecUtil.hpp91 ShaderExecutor (const glu::RenderContext& renderCtx, const ShaderSpec& shaderSpec);
102 ShaderExecutor* createExecutor (const glu::RenderContext& renderCtx, glu::ShaderType shaderType, const ShaderSpec& shaderSpec);
H A DglsFragOpInteractionCase.hpp52 FragOpInteractionCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const glu::ContextInfo& ctxInfo, const char* name, const rsg::ProgramParameters& params);
H A DglsRandomUniformBlockCase.hpp69 glu::RenderContext& renderCtx,
/external/deqp/modules/gles3/performance/
H A Des3pDepthTests.cpp103 RenderData (const ObjectData& object, const glu::RenderContext& renderCtx, TestLog& log);
113 RenderData::RenderData (const ObjectData& object, const glu::RenderContext& renderCtx, TestLog& log) argument
114 : m_program (renderCtx, object.shader)
115 , m_vao (renderCtx.getFunctions())
116 , m_vbo (renderCtx.getFunctions())
119 const glw::Functions& gl = renderCtx.getFunctions();
509 BaseCase (TestContext& testCtx, const RenderContext& renderCtx, const char* name, const char* desc);
535 BaseCase::BaseCase (TestContext& testCtx, const RenderContext& renderCtx, const char* name, const char* desc) argument
537 , m_renderCtx (renderCtx)
725 RenderCountCase (TestContext& testCtx, const RenderContext& renderCtx, cons
736 RenderCountCase(TestContext& testCtx, const RenderContext& renderCtx, const char* name, const char* desc) argument
906 RelativeChangeCase(TestContext& testCtx, const RenderContext& renderCtx, const char* name, const char* desc) argument
1132 BaseCostCase(TestContext& testCtx, const RenderContext& renderCtx, const char* name, const char* desc) argument
1158 GradientCostCase(TestContext& testCtx, const RenderContext& renderCtx, const char* name, const char* desc, float gradientDistance) argument
1194 OccluderStaticFragDepthCostCase(TestContext& testCtx, const RenderContext& renderCtx, const char* name, const char* desc) argument
1223 OccluderDynamicFragDepthCostCase(TestContext& testCtx, const RenderContext& renderCtx, const char* name, const char* desc) argument
1252 OccludedStaticFragDepthCostCase(TestContext& testCtx, const RenderContext& renderCtx, const char* name, const char* desc) argument
1281 OccludedDynamicFragDepthCostCase(TestContext& testCtx, const RenderContext& renderCtx, const char* name, const char* desc) argument
1310 OccludingGeometryComplexityCostCase(TestContext& testCtx, const RenderContext& renderCtx, const char* name, const char* desc, int resolution, float xyNoise, float zNoise) argument
1370 FragmentWorkloadCullCase(TestContext& testCtx, const RenderContext& renderCtx, const char* name, const char* desc) argument
1410 FragmentTextureWorkloadCullCase(TestContext& testCtx, const RenderContext& renderCtx, const char* name, const char* desc) argument
1438 FragmentArithmeticWorkloadCullCase(TestContext& testCtx, const RenderContext& renderCtx, const char* name, const char* desc) argument
1455 FragmentDiscardArithmeticWorkloadCullCase(TestContext& testCtx, const RenderContext& renderCtx, const char* name, const char* desc) argument
1487 PartialOccluderDiscardCullCase(TestContext& testCtx, const RenderContext& renderCtx, const char* name, const char* desc, int gridsize) argument
1519 PartialOccluderCullCase(TestContext& testCtx, const RenderContext& renderCtx, const char* name, const char* desc, float coverage) argument
1551 StaticOccluderFragDepthCullCase(TestContext& testCtx, const RenderContext& renderCtx, const char* name, const char* desc) argument
1581 DynamicOccluderFragDepthCullCase(TestContext& testCtx, const RenderContext& renderCtx, const char* name, const char* desc) argument
1611 StaticOccludedFragDepthCullCase(TestContext& testCtx, const RenderContext& renderCtx, const char* name, const char* desc) argument
1641 DynamicOccludedFragDepthCullCase(TestContext& testCtx, const RenderContext& renderCtx, const char* name, const char* desc) argument
1671 ReversedDepthOrderCullCase(TestContext& testCtx, const RenderContext& renderCtx, const char* name, const char* desc) argument
1780 const RenderContext& renderCtx = m_context.getRenderContext(); local
[all...]
/external/deqp/modules/gles31/functional/
H A Des31fStencilTexturingTests.cpp123 static void drawTestPattern (const glu::RenderContext& renderCtx, int width, int height) argument
125 const glu::ShaderProgram program(renderCtx, glu::ProgramSources()
137 const glw::Functions& gl = renderCtx.getFunctions();
158 glu::draw(renderCtx, program.getProgram(), 1, &posBinding, glu::pr::Triangles((int)indices.size(), &indices[0]));
199 static void blitStencilToColor2D (const glu::RenderContext& renderCtx, deUint32 srcTex, int width, int height) argument
201 const glu::ShaderProgram program(renderCtx, glu::ProgramSources()
243 const glw::Functions& gl = renderCtx.getFunctions();
260 glu::draw(renderCtx, program.getProgram(), DE_LENGTH_OF_ARRAY(vertexArrays), &vertexArrays[0],
264 static void blitStencilToColor2DArray (const glu::RenderContext& renderCtx, deUint32 srcTex, int width, int height, int level) argument
266 const glu::ShaderProgram program(renderCtx, gl
329 blitStencilToColorCube(const glu::RenderContext& renderCtx, deUint32 srcTex, const float* texCoord, int width, int height) argument
525 const glu::RenderContext& renderCtx = m_context.getRenderContext(); local
580 const glu::RenderContext& renderCtx = m_context.getRenderContext(); local
666 const glu::RenderContext& renderCtx = m_context.getRenderContext(); local
755 const glu::RenderContext& renderCtx = m_context.getRenderContext(); local
812 const glu::RenderContext& renderCtx = m_context.getRenderContext(); local
886 const glu::RenderContext& renderCtx = m_context.getRenderContext(); local
945 const glu::RenderContext& renderCtx = m_context.getRenderContext(); local
[all...]
H A Des31fFboNoAttachmentTests.cpp67 bool checkFramebufferSize (TestLog& log, const glu::RenderContext& renderCtx, GLuint framebuffer, const IVec2& size) argument
69 const glw::Functions& gl = renderCtx.getFunctions();
87 const glu::ShaderProgram program (renderCtx, glu::makeVtxFragSources(vertexSource, fragmentSource));
174 bool checkFramebufferRenderable (TestLog& log, const glu::RenderContext& renderCtx, GLuint framebuffer, const IVec2& size) argument
176 const glw::Functions& gl = renderCtx.getFunctions();
192 const glu::ShaderProgram program (renderCtx, glu::makeVtxFragSources(vertexSource, fragmentSource));
269 const glu::RenderContext& renderCtx,
281 const glu::RenderContext& renderCtx,
285 , m_renderCtx (renderCtx)
327 const glu::RenderContext& renderCtx,
280 FramebufferCompletenessCase(tcu::TestContext& testCtx, const glu::RenderContext& renderCtx, const char* name, const char* desc) argument
349 SizeCase(tcu::TestContext& testCtx, const glu::RenderContext& renderCtx, const char* name, const char* desc, const FboSpec& spec) argument
451 AttachmentInteractionCase(tcu::TestContext& testCtx, const glu::RenderContext& renderCtx, const char* name, const char* desc, const FboSpec& defaultSpec, const FboSpec& attachmentSpec) argument
501 const glu::RenderContext& renderCtx = context.getRenderContext(); local
[all...]
H A Des31fNegativeTestShared.cpp51 glu::RenderContext& renderCtx,
56 : glu::CallLogWrapper (renderCtx.getFunctions(), log)
58 , m_renderCtx (renderCtx)
50 NegativeTestContext(ErrorCase& host, glu::RenderContext& renderCtx, const glu::ContextInfo& ctxInfo, tcu::TestLog& log, tcu::ResultCollector& results, bool enableLogging_) argument
H A Des31fShaderHelperInvocationTests.cpp162 static void drawRandomPrimitives (const glu::RenderContext& renderCtx, deUint32 program, PrimitiveType primType, int numPrimitives, de::Random* rnd) argument
164 const glw::Functions& gl = renderCtx.getFunctions();
196 glu::draw(renderCtx, program, (int)vertexArrays.size(), &vertexArrays[0],
203 FboHelper (const glu::RenderContext& renderCtx, int width, int height, deUint32 format, int numSamples);
220 FboHelper::FboHelper (const glu::RenderContext& renderCtx, int width, int height, deUint32 format, int numSamples) argument
221 : m_renderCtx (renderCtx)
224 , m_colorbuffer (renderCtx)
225 , m_framebuffer (renderCtx)
226 , m_resolveColorbuffer (renderCtx)
227 , m_resolveFramebuffer (renderCtx)
331 const glu::RenderContext& renderCtx = m_context.getRenderContext(); local
426 const glu::RenderContext& renderCtx = m_context.getRenderContext(); local
490 const glu::RenderContext& renderCtx = m_context.getRenderContext(); local
625 const glu::RenderContext& renderCtx = m_context.getRenderContext(); local
[all...]
H A Des31fShaderImageLoadStoreTests.cpp821 static bool readIntegerTextureViaFBOAndVerify (const RenderContext& renderCtx, argument
838 glu::Framebuffer fbo (renderCtx);
842 GLU_EXPECT_NO_ERROR(renderCtx.getFunctions().getError(), "Bind FBO");
845 GLU_EXPECT_NO_ERROR(renderCtx.getFunctions().getError(), "glMemoryBarrier");
862 GLU_EXPECT_NO_ERROR(renderCtx.getFunctions().getError(), "Bind texture to framebuffer color attachment 0");
867 GLU_EXPECT_NO_ERROR(renderCtx.getFunctions().getError(), "glReadPixels");
878 static bool readFloatOrNormTextureWithLookupsAndVerify (const RenderContext& renderCtx, argument
892 const std::string glslVersionDeclaration = getGLSLVersionDeclaration(glu::getContextTypeGLSLVersion(renderCtx.getType()));
894 const glu::ShaderProgram program(renderCtx,
936 const glu::Buffer outputBuffer (renderCtx);
1030 readBufferTextureWithMappingAndVerify(const RenderContext& renderCtx, glu::CallLogWrapper& glLog, deUint32 bufferGL, const TextureFormat& textureFormat, int imageSize, const ImageLayerVerifier& verifyLayer) argument
1053 readTextureAndVerify(const RenderContext& renderCtx, glu::CallLogWrapper& glLog, deUint32 textureGL, deUint32 bufferGL, TextureType textureType, const TextureFormat& textureFormat, const IVec3& imageSize, const ImageLayerVerifier& verifyLayer) argument
1132 const RenderContext& renderCtx = m_context.getRenderContext(); local
1351 const RenderContext& renderCtx = m_context.getRenderContext(); local
1927 const RenderContext& renderCtx = m_context.getRenderContext(); local
2328 const RenderContext& renderCtx = m_context.getRenderContext(); local
2548 const RenderContext& renderCtx = m_context.getRenderContext(); local
2773 const RenderContext& renderCtx = m_context.getRenderContext(); local
2949 const RenderContext& renderCtx = m_context.getRenderContext(); local
[all...]
/external/deqp/modules/gles3/functional/
H A Des3fShaderFragDataTests.cpp148 const glu::RenderContext& renderCtx = m_context.getRenderContext(); local
149 const glw::Functions& gl = renderCtx.getFunctions();
150 const glu::ShaderProgram program (renderCtx, genSources(m_indexExprType));
151 const int viewportW = de::min(renderCtx.getRenderTarget().getWidth(), 128);
152 const int viewportH = de::min(renderCtx.getRenderTarget().getHeight(), 128);
195 glu::draw(renderCtx, program.getProgram(), DE_LENGTH_OF_ARRAY(vertexArrays), &vertexArrays[0],
201 const tcu::RGBA threshold = renderCtx.getRenderTarget().getPixelFormat().getColorThreshold() + tcu::RGBA(1,1,1,1);
204 glu::readPixels(renderCtx, 0, 0, result.getAccess());
230 const glu::RenderContext& renderCtx = m_context.getRenderContext(); local
231 const glu::ShaderProgram program (renderCtx, gl
[all...]
/external/deqp/modules/gles2/functional/
H A Des2fTextureCompletenessTests.cpp125 Tex2DCompletenessCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* description);
138 Tex2DCompletenessCase::Tex2DCompletenessCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* description) argument
141 , m_renderCtx (renderCtx)
177 TexCubeCompletenessCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* description);
190 TexCubeCompletenessCase::TexCubeCompletenessCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* description) argument
193 , m_renderCtx (renderCtx)
239 Incomplete2DSizeCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* description, IVec2 size, IVec2 invalidLevelSize, int invalidLevelNdx, const glu::ContextInfo& ctxInfo);
251 Incomplete2DSizeCase::Incomplete2DSizeCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* description, IVec2 size, IVec2 invalidLevelSize, int invalidLevelNdx, const glu::ContextInfo& ctxInfo) argument
252 : Tex2DCompletenessCase (testCtx, renderCtx, name, description)
315 Incomplete2DFormatCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, cons
327 Incomplete2DFormatCase(tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* description, IVec2 size, deUint32 format, deUint32 invalidFormat, int invalidLevelNdx) argument
382 Incomplete2DMissingLevelCase(tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* description, IVec2 size, int missingLevelNdx) argument
437 Incomplete2DWrapModeCase(tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* description, IVec2 size, deUint32 wrapT, deUint32 wrapS, const glu::ContextInfo& ctxInfo) argument
489 Complete2DExtraLevelCase(tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* description, IVec2 size) argument
542 Incomplete2DEmptyObjectCase(tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* description, IVec2 size) argument
581 IncompleteCubeSizeCase(tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* description, IVec2 size, IVec2 invalidLevelSize, int invalidLevelNdx) argument
590 IncompleteCubeSizeCase(tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* description, IVec2 size, IVec2 invalidLevelSize, int invalidLevelNdx, tcu::CubeFace invalidCubeFace) argument
653 IncompleteCubeFormatCase(tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* description, IVec2 size, deUint32 format, deUint32 invalidFormat) argument
662 IncompleteCubeFormatCase(tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* description, IVec2 size, deUint32 format, deUint32 invalidFormat, tcu::CubeFace invalidCubeFace) argument
724 IncompleteCubeMissingLevelCase(tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* description, IVec2 size, int invalidLevelNdx) argument
732 IncompleteCubeMissingLevelCase(tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* description, IVec2 size, int invalidLevelNdx, tcu::CubeFace invalidCubeFace) argument
794 IncompleteCubeWrapModeCase(tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* description, IVec2 size, deUint32 wrapT, deUint32 wrapS, const glu::ContextInfo& ctxInfo) argument
847 CompleteCubeExtraLevelCase(tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* description, IVec2 size) argument
903 IncompleteCubeEmptyObjectCase(tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* description, IVec2 size) argument
[all...]
H A Des2fShaderFragDataTests.cpp148 const glu::RenderContext& renderCtx = m_context.getRenderContext(); local
149 const glw::Functions& gl = renderCtx.getFunctions();
150 const glu::ShaderProgram program (renderCtx, genSources(m_indexExprType));
151 const int viewportW = de::min(renderCtx.getRenderTarget().getWidth(), 128);
152 const int viewportH = de::min(renderCtx.getRenderTarget().getHeight(), 128);
195 glu::draw(renderCtx, program.getProgram(), DE_LENGTH_OF_ARRAY(vertexArrays), &vertexArrays[0],
201 const tcu::RGBA threshold = renderCtx.getRenderTarget().getPixelFormat().getColorThreshold() + tcu::RGBA(1,1,1,1);
204 glu::readPixels(renderCtx, 0, 0, result.getAccess());
/external/deqp/modules/gles2/
H A Dtes2TestPackage.cpp81 glu::RenderContext& renderCtx = m_testPackage.getContext()->getRenderContext(); local
86 const glw::Functions& gl = renderCtx.getFunctions();
96 renderCtx.postIterate();
/external/deqp/modules/gles3/
H A Dtes3TestPackage.cpp80 glu::RenderContext& renderCtx = m_testPackage.getContext()->getRenderContext(); local
85 const glw::Functions& gl = renderCtx.getFunctions();
95 renderCtx.postIterate();

Completed in 418 milliseconds

12345