Lines Matching defs:const

83 	const char* name;
101 static const FormatInfo testedFormats[] = {
244 static const InternalFormat glInternalFormats[] =
347 static const InternalFormat esInternalFormats[] =
423 const char* basic_vs = "precision mediump float;\n"
448 const char* basic_fs = "precision mediump float;\n"
457 const char* shadow_fs = "precision mediump float;\n"
469 const char* integer_fs = "precision mediump float;\n"
495 TestClampModeForInternalFormat(deqp::Context& context, const std::string& name, GLenum internalFormat,
506 const FormatInfo* findFormat(GLenum internalformat) const;
507 const InternalFormat& findInternalFormat(GLenum internalformat) const;
509 GLenum format) const;
511 GLenum internalformat) const;
512 void calcTextureEpsilon(const GLsizei textureBits[4], GLfloat textureEpsilon[4]) const;
513 GLsizei proportion(GLsizei a, GLsizei b, GLsizei c) const;
514 bool isEqual(const GLubyte* color1, const GLubyte* color2, GLubyte tolerance) const;
516 bool verifyClampMode(GLubyte* buf, GLsizei width, GLsizei height, GLenum clampMode, GLenum internalformat) const;
518 GLenum internalformat) const;
519 bool verifyRepeat(GLubyte* buf, GLsizei width, GLsizei height, GLenum internalformat) const;
520 bool verifyMirroredRepeat(GLubyte* buf, GLsizei width, GLsizei height, GLenum internalformat) const;
535 TestClampModeForInternalFormat::TestClampModeForInternalFormat(deqp::Context& context, const std::string& name,
548 const InternalFormat& TestClampModeForInternalFormat::findInternalFormat(GLenum internalformat) const
550 const InternalFormat* internalFormats = glInternalFormats;
568 const FormatInfo* TestClampModeForInternalFormat::findFormat(GLenum internalformat) const
576 bool TestClampModeForInternalFormat::isEqual(const GLubyte* color1, const GLubyte* color2, GLubyte tolerance) const
598 GLenum internalformat) const
600 const FormatInfo* testedFormat = findFormat(internalformat);
601 const GLubyte* red = testedFormat->internalred;
602 const GLubyte* green = testedFormat->internalgreen;
603 const GLubyte* blue = testedFormat->internalblue;
604 const GLubyte* white = testedFormat->internalwhite;
605 const GLsizei size = testedFormat->pixelSize;
638 GLenum internalformat, GLenum type, GLenum format) const
640 const glw::Functions& gl = m_context.getRenderContext().getFunctions();
670 void TestClampModeForInternalFormat::calcTextureEpsilon(const GLsizei textureBits[4], GLfloat textureEpsilon[4]) const
675 const glw::Functions& gl = m_context.getRenderContext().getFunctions();
714 const float zeroEpsilon = deFloatLdExp(1.0f, -13);
728 GLsizei TestClampModeForInternalFormat::proportion(GLsizei a, GLsizei b, GLsizei c) const
746 GLsizei width, GLsizei height, GLenum internalformat) const
749 const FormatInfo* testedFormat = findFormat(internalformat);
750 const GLubyte* red = testedFormat->RGBAred;
751 const GLubyte* green = testedFormat->RGBAgreen;
752 const GLubyte* blue = testedFormat->RGBAblue;
753 const GLubyte* white = testedFormat->RGBAwhite;
754 const GLsizei size = 4;
755 const GLsizei skip = 6;
839 GLenum internalformat) const
842 const FormatInfo* testedFormat = findFormat(internalformat);
844 const GLubyte* red = testedFormat->RGBAred;
845 const GLubyte* green = testedFormat->RGBAgreen;
846 const GLubyte* blue = testedFormat->RGBAblue;
847 const GLubyte* white = testedFormat->RGBAwhite;
848 const GLsizei size = 4;
849 const GLubyte tolerance = 0;
922 GLenum internalformat) const
925 const FormatInfo* testedFormat = findFormat(internalformat);
927 const GLubyte* red = testedFormat->RGBAred;
928 const GLubyte* green = testedFormat->RGBAgreen;
929 const GLubyte* blue = testedFormat->RGBAblue;
930 const GLubyte* white = testedFormat->RGBAwhite;
932 const GLsizei size = 4;
933 const GLubyte tolerance = 0;
1126 GLenum internalformat) const
1217 const glw::Functions& gl = m_context.getRenderContext().getFunctions();
1221 const InternalFormat& internalFormatStruct = findInternalFormat(m_internalFormat);
1349 const struct TexSize
1358 const GLint levelsOfDetail[] = { 0, 1, 2 };
1362 const TexSize& ts = textureSizes[sizeIndex];
1365 const FormatInfo& formatInfo = testedFormats[formatIndex];