Lines Matching refs:m_format
113 const deUint32 m_format; member in deqp::gles31::Functional::TextureCubeArrayFormatCase
128 , m_format (format) in TextureCubeArrayFormatCase()
142 , m_format (internalFormat) in TextureCubeArrayFormatCase()
161 if ((supportedExtensions.cubeMapArray && m_format != GL_SR8_EXT) || in init()
162 (supportedExtensions.cubeMapArray && m_format == GL_SR8_EXT && supportedExtensions.sRGBR8)) in init()
165 …? new glu::TextureCubeArray(m_renderCtx, m_format, m_dataType, m_size, m_depth) // Implicit intern… in init()
166 …: new glu::TextureCubeArray(m_renderCtx, m_format, m_size, m_depth); // Explicit internal forma… in init()
283 deUint32 m_format; member in deqp::gles31::Functional::TextureBufferFormatCase
294 , m_format (internalFormat) in TextureBufferFormatCase()
310 tcu::TextureFormat fmt = glu::mapGLInternalFormat(m_format); in init()
328 …log << TestLog::Message << "Buffer texture, " << glu::getTextureFormatStr(m_format) << ", " << m_w… in init()
332 m_texture = new glu::TextureBuffer(m_renderCtx, m_format, m_width * fmt.getPixelSize()); in init()