Lines Matching full:m_width
84 const int m_width;
96 , m_width (width)
117 log << TestLog::Message << "2D texture, " << fmtName.str() << ", " << m_width << "x" << m_height
121 m_texture = new Texture2D(m_renderCtx, m_format, m_dataType, m_width, m_height);
140 RandomViewport viewport (m_renderCtx.getRenderTarget(), m_width, m_height, deStringHash(getName()));
224 const int m_width;
240 , m_width (width)
266 log << TestLog::Message << "Cube map texture, " << fmtName.str() << ", " << m_width << "x" << m_height
270 DE_ASSERT(m_width == m_height);
272 ? new TextureCube(m_renderCtx, m_format, m_dataType, m_width) // Implicit internal format.
273 : new TextureCube(m_renderCtx, m_format, m_width); // Explicit internal format.
316 RandomViewport viewport (m_renderCtx.getRenderTarget(), m_width, m_height, deStringHash(getName())+(deUint32)face);