Lines Matching refs:m_format
54 , m_format (format)
65 , m_format (sizedFormat)
97 gl.texImage1D(GL_TEXTURE_1D, levelNdx, m_format, access.getWidth(), 0 /* border */, transferFormat.format, transferFormat.dataType, access.getDataPtr());
108 , m_format (format)
120 , m_format (sizedFormat)
132 , m_format (getGLFormat(levels[0].getFormat()))
138 if (!contextInfo.isCompressedTextureFormatSupported(m_format))
181 gl.texImage2D(GL_TEXTURE_2D, levelNdx, m_format, access.getWidth(), access.getHeight(), 0 /* border */, transferFormat.format, transferFormat.dataType, access.getDataPtr());
306 gl.texStorage2D(GL_TEXTURE_2D, m_refTexture.getNumLevels(), m_format, m_refTexture.getWidth(), m_refTexture.getHeight());
325 , m_format (getGLFormat(levels[0].getFormat()))
333 if (!contextInfo.isCompressedTextureFormatSupported(m_format))
353 , m_format (format)
365 , m_format (internalFormat)
402 gl.texImage2D(getGLCubeFace((tcu::CubeFace)face), levelNdx, m_format, access.getWidth(), access.getHeight(), 0 /* border */, transferFormat.format, transferFormat.dataType, access.getDataPtr());
477 , m_format (format)
488 , m_format (sizedFormat)
521 gl.texImage2D(GL_TEXTURE_1D_ARRAY, levelNdx, m_format, access.getWidth(), access.getHeight(), 0 /* border */, transferFormat.format, transferFormat.dataType, access.getDataPtr());
532 , m_format (format)
545 , m_format (sizedFormat)
558 , m_format (getGLFormat(levels[0].getFormat()))
564 if (!contextInfo.isCompressedTextureFormatSupported(m_format))
609 gl.texImage3D(GL_TEXTURE_2D_ARRAY, levelNdx, m_format, access.getWidth(), access.getHeight(), access.getDepth(), 0 /* border */, transferFormat.format, transferFormat.dataType, access.getDataPtr());
648 , m_format (format)
661 , m_format (sizedFormat)
678 , m_format (getGLFormat(levels[0].getFormat()))
684 if (!contextInfo.isCompressedTextureFormatSupported(m_format))
731 gl.texImage3D(GL_TEXTURE_3D, levelNdx, m_format, access.getWidth(), access.getHeight(), access.getDepth(), 0 /* border */, transferFormat.format, transferFormat.dataType, access.getDataPtr());
772 , m_format (format)
784 , m_format (sizedFormat)
822 gl.texImage3D(GL_TEXTURE_CUBE_MAP_ARRAY, levelNdx, m_format, access.getWidth(), access.getHeight(), access.getDepth(), 0 /* border */, transferFormat.format, transferFormat.dataType, access.getDataPtr());
832 , m_format (0)
843 , m_format (0)
880 m_format = internalFormat;
901 gl.texBufferRange(GL_TEXTURE_BUFFER, m_format, m_glBuffer, (glw::GLintptr)m_offset, (glw::GLsizeiptr)m_size);
903 gl.texBuffer(GL_TEXTURE_BUFFER, m_format, m_glBuffer);
922 const tcu::TextureFormat format = mapGLInternalFormat(m_format);