Lines Matching refs:m_format
103 deUint32 m_format;
116 , m_format (format)
129 , m_format (internalFormat)
145 checkSupport(m_renderCtxInfo, m_format);
148 tcu::TextureFormat fmt = m_dataType ? glu::mapGLTransferFormat(m_format, m_dataType) : glu::mapGLInternalFormat(m_format);
153 fmtName << glu::getTextureFormatStr(m_format) << ", " << glu::getTypeStr(m_dataType);
155 fmtName << glu::getTextureFormatStr(m_format);
162 ? new glu::Texture2D(m_renderCtx, m_format, m_dataType, m_width, m_height) // Implicit internal format.
163 : new glu::Texture2D(m_renderCtx, m_format, m_width, m_height); // Explicit internal format.
266 deUint32 m_format;
282 , m_format (format)
297 , m_format (internalFormat)
315 checkSupport(m_renderCtxInfo, m_format);
318 tcu::TextureFormat fmt = m_dataType ? glu::mapGLTransferFormat(m_format, m_dataType) : glu::mapGLInternalFormat(m_format);
323 fmtName << glu::getTextureFormatStr(m_format) << ", " << glu::getTypeStr(m_dataType);
325 fmtName << glu::getTextureFormatStr(m_format);
333 ? new glu::TextureCube(m_renderCtx, m_format, m_dataType, m_width) // Implicit internal format.
334 : new glu::TextureCube(m_renderCtx, m_format, m_width); // Explicit internal format.
466 deUint32 m_format;
482 , m_format (format)
497 , m_format (internalFormat)
515 checkSupport(m_renderCtxInfo, m_format);
518 ? new glu::Texture2DArray(m_renderCtx, m_format, m_dataType, m_width, m_height, m_numLayers) // Implicit internal format.
519 : new glu::Texture2DArray(m_renderCtx, m_format, m_width, m_height, m_numLayers); // Explicit internal format.
623 deUint32 m_format;
639 , m_format (format)
654 , m_format (internalFormat)
672 checkSupport(m_renderCtxInfo, m_format);
675 ? new glu::Texture3D(m_renderCtx, m_format, m_dataType, m_width, m_height, m_depth) // Implicit internal format.
676 : new glu::Texture3D(m_renderCtx, m_format, m_width, m_height, m_depth); // Explicit internal format.
786 tcu::CompressedTexFormat m_format;
808 , m_format (format)
825 tcu::CompressedTexture compressedTexture (m_format, m_width, m_height);
924 tcu::CompressedTexFormat m_format;
949 , m_format (format)
972 levels[face].setStorage(m_format, m_width, m_height);