Lines Matching refs:internalformat
81 GLenum internalformat; member
506 const FormatInfo* findFormat(GLenum internalformat) const;
507 const InternalFormat& findInternalFormat(GLenum internalformat) const;
508 …void clearTextures(GLenum target, GLsizei width, GLsizei height, GLint lod, GLenum internalformat,…
511 GLenum internalformat) const;
516 …mpMode(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) cons…
548 const InternalFormat& TestClampModeForInternalFormat::findInternalFormat(GLenum internalformat) con… in findInternalFormat()
561 if (internalFormats[i].sizedFormat == internalformat) in findInternalFormat()
568 const FormatInfo* TestClampModeForInternalFormat::findFormat(GLenum internalformat) const in findFormat()
571 if (testedFormats[i].internalformat == internalformat) in findFormat()
598 GLenum internalformat) const in fillTextureWithColor()
600 const FormatInfo* testedFormat = findFormat(internalformat); in fillTextureWithColor()
638 GLenum internalformat, GLenum type, GLenum format) const in clearTextures() argument
654 gl.texImage2D(target, level, internalformat, width, height, 0, format, type, &tex_buf[0]); in clearTextures()
746 GLsizei width, GLsizei height, GLenum internalformat) const in verifyClampToEdge()
749 const FormatInfo* testedFormat = findFormat(internalformat); in verifyClampToEdge()
839 GLenum internalformat) const in verifyRepeat()
842 const FormatInfo* testedFormat = findFormat(internalformat); in verifyRepeat()
922 GLenum internalformat) const in verifyMirroredRepeat()
925 const FormatInfo* testedFormat = findFormat(internalformat); in verifyMirroredRepeat()
1126 GLenum internalformat) const in verifyClampMode()
1131 return verifyClampToEdge(buf, width, height, width, height, internalformat); in verifyClampMode()
1133 return verifyRepeat(buf, width, height, internalformat); in verifyClampMode()
1135 return verifyMirroredRepeat(buf, width, height, internalformat); in verifyClampMode()
1224 GLenum internalformat = internalFormatStruct.sizedFormat; in iterate() local
1248 fillTextureWithColor(&textureData[0], m_width, m_height, internalformat); in iterate()
1256 …gl.texImage2D(GL_TEXTURE_2D, m_lodLevel, internalformat, m_width, m_height, 0, format, type, &text… in iterate()
1266 clearTextures(GL_TEXTURE_2D, m_width, m_height, m_lodLevel, internalformat, type, format); in iterate()
1321 if (verifyClampMode(&buffer[0], viewWidth, viewHeight, m_clampMode, internalformat)) in iterate()
1366 GLenum internalFormat = formatInfo.internalformat; in init()