Lines Matching refs:m_format
82 const deUint32 m_format; member in deqp::gles2::Functional::Texture2DFormatCase
94 , m_format (format) in Texture2DFormatCase()
111 tcu::TextureFormat fmt = glu::mapGLTransferFormat(m_format, m_dataType); in init()
115 fmtName << getPixelFormatStr(m_format) << ", " << getTypeStr(m_dataType); in init()
121 m_texture = new Texture2D(m_renderCtx, m_format, m_dataType, m_width, m_height); in init()
222 const deUint32 m_format; member in deqp::gles2::Functional::TextureCubeFormatCase
238 , m_format (format) in TextureCubeFormatCase()
257 tcu::TextureFormat fmt = glu::mapGLTransferFormat(m_format, m_dataType); in init()
262 fmtName << getPixelFormatStr(m_format) << ", " << getTypeStr(m_dataType); in init()
264 fmtName << getPixelFormatStr(m_format); in init()
272 ? new TextureCube(m_renderCtx, m_format, m_dataType, m_width) // Implicit internal format. in init()
273 : new TextureCube(m_renderCtx, m_format, m_width); // Explicit internal format. in init()