Lines Matching defs:const

86 	const char* formatName;
94 static const TypeFormat TextureTypes[NUM_TEXTURE_TYPES] = {
101 static const GLenum coreTexTargets[] = {
128 static const GLenum esTexTargets[] = {
141 static const GLenum coreNonDepthStencilTypes[] = {
165 static const GLenum esNonDepthStencilTypes[] = {
183 static const GLenum coreNonDepthStencilFormats[] = {
188 static const GLenum esNonDepthStencilFormats[] = {
203 static const GLenum coreOtherBaseFormats[] = {
206 static const GLenum esOtherBaseFormats[] = {
219 static const AttachmentParam coreAttachmentParams[NUM_TEXTURE_TYPES][NUM_ATTACHMENT_PARAMS_CORE] = {
251 static const AttachmentParam esAttachmentParams[NUM_TEXTURE_TYPES][NUM_ATTACHMENT_PARAMS_ES] = {
292 BaseTest(deqp::Context& context, const TypeFormat& tf);
298 const AttachmentParam* getAttachmentParams() const;
308 GLuint createProgram(const char* vsCode, const char* fsCode);
325 const GLenum* m_textureTargets;
327 const GLenum* m_nonDepthStencilTypes;
329 const GLenum* m_nonDepthStencilFormats;
331 const GLenum* m_otherBaseFormats;
334 const AttachmentParam* m_attachmentParams[NUM_TEXTURE_TYPES];
337 const TypeFormat& m_typeFormat;
347 BaseTest::BaseTest(deqp::Context& context, const TypeFormat& tf)
371 const glw::Functions& gl = m_context.getRenderContext().getFunctions();
411 const AttachmentParam* BaseTest::getAttachmentParams() const
469 const glw::Functions& gl = m_context.getRenderContext().getFunctions();
486 const glw::Functions& gl = m_context.getRenderContext().getFunctions();
495 const glw::Functions& gl = m_context.getRenderContext().getFunctions();
560 const glw::Functions& gl = m_context.getRenderContext().getFunctions();
571 const glw::Functions& gl = m_context.getRenderContext().getFunctions();
576 GLuint BaseTest::createProgram(const char* vsCode, const char* fsCode)
580 const glw::Functions& gl = m_context.getRenderContext().getFunctions();
582 const char* version = glu::getGLSLVersionDeclaration(glslVersion);
585 const char* vSources[] = { version, vsCode };
586 const int vLengths[] = { int(strlen(version)), int(strlen(vsCode)) };
593 const char* fSources[] = { version, fsCode };
594 const int fLengths[] = { int(strlen(version)), int(strlen(fsCode)) };
609 const glw::Functions& gl = m_context.getRenderContext().getFunctions();
611 const char* vs = "\n"
618 const char* fs = "\n"
647 const glw::Functions& gl = m_context.getRenderContext().getFunctions();
667 const char* vs = "\n"
677 const char* fs = "\n"
697 const char* vs = "\n"
707 const char* fs = "\n"
728 static const GLfloat verticesDefault[] = {
732 static const GLfloat verticesDepthSpan1[] = {
736 static const GLfloat verticesDepthSpan2[] = {
740 static const GLfloat texCoords[] = {
744 static const deUint16 quadIndices[] = { 0, 1, 2, 2, 1, 3 };
747 static const glu::VertexArrayBinding depthSpanVA1[] = { glu::va::Float("pos", 4, 4, 0, verticesDepthSpan1) };
748 static const glu::VertexArrayBinding depthSpanVA2[] = { glu::va::Float("pos", 4, 4, 0, verticesDepthSpan2) };
749 static const glu::VertexArrayBinding defaultVA[] = { glu::va::Float("pos", 4, 4, 0, verticesDefault),
752 const glu::RenderContext& renderContext = m_context.getRenderContext();
764 const glu::RenderContext& renderContext = m_context.getRenderContext();
765 const glw::Functions& gl = renderContext.getFunctions();
1151 const glw::Functions& gl = m_context.getRenderContext().getFunctions();
1255 const glw::Functions& gl = m_context.getRenderContext().getFunctions();
1287 ValidateErrorsTest(deqp::Context& context, const TypeFormat& tf);
1296 ValidateErrorsTest::ValidateErrorsTest(deqp::Context& context, const TypeFormat& tf) : BaseTest(context, tf)
1358 const glu::RenderContext& renderContext = m_context.getRenderContext();
1359 const glw::Functions& gl = renderContext.getFunctions();
1568 VerifyReadPixelsTest(deqp::Context& context, const TypeFormat& tf);
1574 VerifyReadPixelsTest::VerifyReadPixelsTest(deqp::Context& context, const TypeFormat& tf) : BaseTest(context, tf)
1592 const glu::RenderContext& renderContext = m_context.getRenderContext();
1593 const glw::Functions& gl = renderContext.getFunctions();
1636 VerifyGetTexImageTest(deqp::Context& context, const TypeFormat& tf);
1642 VerifyGetTexImageTest::VerifyGetTexImageTest(deqp::Context& context, const TypeFormat& tf) : BaseTest(context, tf)
1652 const glw::Functions& gl = m_context.getRenderContext().getFunctions();
1679 VerifyCopyTexImageTest(deqp::Context& context, const TypeFormat& tf);
1685 VerifyCopyTexImageTest::VerifyCopyTexImageTest(deqp::Context& context, const TypeFormat& tf) : BaseTest(context, tf)
1703 const glw::Functions& gl = m_context.getRenderContext().getFunctions();
1777 VerifyPartialAttachmentsTest(deqp::Context& context, const TypeFormat& tf);
1783 VerifyPartialAttachmentsTest::VerifyPartialAttachmentsTest(deqp::Context& context, const TypeFormat& tf)
1811 const glu::RenderContext& renderContext = m_context.getRenderContext();
1812 const glw::Functions& gl = renderContext.getFunctions();
1941 VerifyMixedAttachmentsTest(deqp::Context& context, const TypeFormat& tf);
1947 VerifyMixedAttachmentsTest::VerifyMixedAttachmentsTest(deqp::Context& context, const TypeFormat& tf)
1972 const glu::RenderContext& renderContext = m_context.getRenderContext();
1973 const glw::Functions& gl = renderContext.getFunctions();
2099 VerifyParametersTest(deqp::Context& context, const TypeFormat& tf);
2105 VerifyParametersTest::VerifyParametersTest(deqp::Context& context, const TypeFormat& tf) : BaseTest(context, tf)
2124 const glw::Functions& gl = m_context.getRenderContext().getFunctions();
2139 const AttachmentParam* attachmentParams = getAttachmentParams();
2178 RenderbuffersTest(deqp::Context& context, const TypeFormat& tf);
2184 RenderbuffersTest::RenderbuffersTest(deqp::Context& context, const TypeFormat& tf) : BaseTest(context, tf)
2202 const glw::Functions& gl = m_context.getRenderContext().getFunctions();
2245 StencilSizeTest(deqp::Context& context, const TypeFormat& tf);
2251 StencilSizeTest::StencilSizeTest(deqp::Context& context, const TypeFormat& tf) : BaseTest(context, tf)
2267 const glw::Functions& gl = m_context.getRenderContext().getFunctions();
2321 ClearBufferTest(deqp::Context& context, const TypeFormat& tf);
2327 ClearBufferTest::ClearBufferTest(deqp::Context& context, const TypeFormat& tf) : BaseTest(context, tf)
2352 const glw::Functions& gl = m_context.getRenderContext().getFunctions();
2451 BlitTest(deqp::Context& context, const TypeFormat& tf);
2457 BlitTest::BlitTest(deqp::Context& context, const TypeFormat& tf) : BaseTest(context, tf)
2481 const glu::RenderContext& renderContext = m_context.getRenderContext();
2482 const glw::Functions& gl = renderContext.getFunctions();
2610 StencilTexturingTest(deqp::Context& context, const TypeFormat& tf);
2616 StencilTexturingTest::StencilTexturingTest(deqp::Context& context, const TypeFormat& tf) : BaseTest(context, tf)
2629 const glu::RenderContext& renderContext = m_context.getRenderContext();
2631 const glw::Functions& gl = renderContext.getFunctions();
2742 const TypeFormat& typeFormat = TextureTypes[i];