Lines Matching refs:m_width
84 const int m_width; member in deqp::gles2::Functional::Texture2DFormatCase
96 , m_width (width) in Texture2DFormatCase()
117 log << TestLog::Message << "2D texture, " << fmtName.str() << ", " << m_width << "x" << m_height in init()
121 m_texture = new Texture2D(m_renderCtx, m_format, m_dataType, m_width, m_height); in init()
140 …RandomViewport viewport (m_renderCtx.getRenderTarget(), m_width, m_height, deStringHash(getNam… in iterate()
224 const int m_width; member in deqp::gles2::Functional::TextureCubeFormatCase
240 , m_width (width) in TextureCubeFormatCase()
266 …log << TestLog::Message << "Cube map texture, " << fmtName.str() << ", " << m_width << "x" << m_he… in init()
270 DE_ASSERT(m_width == m_height); 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()
316 …RandomViewport viewport (m_renderCtx.getRenderTarget(), m_width, m_height, deStringHash(getNam… in testFace()