Lines Matching defs:m_format
82 deUint32 m_format;
94 , m_format (format)
106 , m_format (internalFormat)
123 tcu::TextureFormat fmt = m_dataType ? glu::mapGLTransferFormat(m_format, m_dataType) : glu::mapGLInternalFormat(m_format);
128 fmtName << glu::getPixelFormatStr(m_format) << ", " << glu::getTypeStr(m_dataType);
130 fmtName << glu::getPixelFormatStr(m_format);
137 ? new glu::Texture2D(m_renderCtx, m_format, m_dataType, m_width, m_height) // Implicit internal format.
138 : new glu::Texture2D(m_renderCtx, m_format, m_width, m_height); // Explicit internal format.
240 deUint32 m_format;
255 , m_format (format)
269 , m_format (internalFormat)
288 tcu::TextureFormat fmt = m_dataType ? glu::mapGLTransferFormat(m_format, m_dataType) : glu::mapGLInternalFormat(m_format);
293 fmtName << glu::getPixelFormatStr(m_format) << ", " << glu::getTypeStr(m_dataType);
295 fmtName << glu::getPixelFormatStr(m_format);
303 ? new glu::TextureCube(m_renderCtx, m_format, m_dataType, m_width) // Implicit internal format.
304 : new glu::TextureCube(m_renderCtx, m_format, m_width); // Explicit internal format.
435 deUint32 m_format;
450 , m_format (format)
464 , m_format (internalFormat)
483 ? new glu::Texture2DArray(m_renderCtx, m_format, m_dataType, m_width, m_height, m_numLayers) // Implicit internal format.
484 : new glu::Texture2DArray(m_renderCtx, m_format, m_width, m_height, m_numLayers); // Explicit internal format.
587 deUint32 m_format;
602 , m_format (format)
616 , m_format (internalFormat)
635 ? new glu::Texture3D(m_renderCtx, m_format, m_dataType, m_width, m_height, m_depth) // Implicit internal format.
636 : new glu::Texture3D(m_renderCtx, m_format, m_width, m_height, m_depth); // Explicit internal format.
746 tcu::CompressedTexFormat m_format;
768 , m_format (format)
785 tcu::CompressedTexture compressedTexture (m_format, m_width, m_height);
884 tcu::CompressedTexFormat m_format;
909 , m_format (format)
932 levels[face].setStorage(m_format, m_width, m_height);