Lines Matching defs: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());
291 , m_format (getGLFormat(levels[0].getFormat()))
299 if (!contextInfo.isCompressedTextureFormatSupported(m_format))
319 , m_format (format)
331 , m_format (internalFormat)
368 gl.texImage2D(getGLCubeFace((tcu::CubeFace)face), levelNdx, m_format, access.getWidth(), access.getHeight(), 0 /* border */, transferFormat.format, transferFormat.dataType, access.getDataPtr());
443 , m_format (format)
454 , m_format (sizedFormat)
487 gl.texImage2D(GL_TEXTURE_1D_ARRAY, levelNdx, m_format, access.getWidth(), access.getHeight(), 0 /* border */, transferFormat.format, transferFormat.dataType, access.getDataPtr());
498 , m_format (format)
511 , m_format (sizedFormat)
524 , m_format (getGLFormat(levels[0].getFormat()))
530 if (!contextInfo.isCompressedTextureFormatSupported(m_format))
575 gl.texImage3D(GL_TEXTURE_2D_ARRAY, levelNdx, m_format, access.getWidth(), access.getHeight(), access.getDepth(), 0 /* border */, transferFormat.format, transferFormat.dataType, access.getDataPtr());
614 , m_format (format)
627 , m_format (sizedFormat)
644 , m_format (getGLFormat(levels[0].getFormat()))
650 if (!contextInfo.isCompressedTextureFormatSupported(m_format))
697 gl.texImage3D(GL_TEXTURE_3D, levelNdx, m_format, access.getWidth(), access.getHeight(), access.getDepth(), 0 /* border */, transferFormat.format, transferFormat.dataType, access.getDataPtr());
738 , m_format (format)
750 , m_format (sizedFormat)
788 gl.texImage3D(GL_TEXTURE_CUBE_MAP_ARRAY, levelNdx, m_format, access.getWidth(), access.getHeight(), access.getDepth(), 0 /* border */, transferFormat.format, transferFormat.dataType, access.getDataPtr());
798 , m_format (0)
809 , m_format (0)
846 m_format = internalFormat;
867 gl.texBufferRange(GL_TEXTURE_BUFFER, m_format, m_glBuffer, (glw::GLintptr)m_offset, (glw::GLsizeiptr)m_size);
869 gl.texBuffer(GL_TEXTURE_BUFFER, m_format, m_glBuffer);
888 const tcu::TextureFormat format = mapGLInternalFormat(m_format);