Lines Matching refs:m_width

105 	int						m_width;
118 , m_width (width)
131 , m_width (width)
157 log << TestLog::Message << "2D texture, " << fmtName.str() << ", " << m_width << "x" << m_height
162 ? new glu::Texture2D(m_renderCtx, m_format, m_dataType, m_width, m_height) // Implicit internal format.
163 : new glu::Texture2D(m_renderCtx, m_format, m_width, m_height); // Explicit internal format.
182 RandomViewport viewport (m_renderCtx.getRenderTarget(), m_width, m_height, deStringHash(getName()));
268 int m_width;
284 , m_width (width)
299 , m_width (width)
327 log << TestLog::Message << "Cube map texture, " << fmtName.str() << ", " << m_width << "x" << m_height
331 DE_ASSERT(m_width == m_height);
333 ? new glu::TextureCube(m_renderCtx, m_format, m_dataType, m_width) // Implicit internal format.
334 : new glu::TextureCube(m_renderCtx, m_format, m_width); // Explicit internal format.
377 RandomViewport viewport (m_renderCtx.getRenderTarget(), m_width, m_height, deStringHash(getName())+(deUint32)face);
468 int m_width;
484 , m_width (width)
499 , m_width (width)
518 ? new glu::Texture2DArray(m_renderCtx, m_format, m_dataType, m_width, m_height, m_numLayers) // Implicit internal format.
519 : new glu::Texture2DArray(m_renderCtx, m_format, m_width, m_height, m_numLayers); // Explicit internal format.
544 RandomViewport viewport (m_renderCtx.getRenderTarget(), m_width, m_height, deStringHash(getName()));
625 int m_width;
641 , m_width (width)
656 , m_width (width)
675 ? new glu::Texture3D(m_renderCtx, m_format, m_dataType, m_width, m_height, m_depth) // Implicit internal format.
676 : new glu::Texture3D(m_renderCtx, m_format, m_width, m_height, m_depth); // Explicit internal format.
701 RandomViewport viewport (m_renderCtx.getRenderTarget(), m_width, m_height, deStringHash(getName()));
789 int m_width;
810 , m_width (width)
825 tcu::CompressedTexture compressedTexture (m_format, m_width, m_height);
927 int m_width;
951 , m_width (width)
972 levels[face].setStorage(m_format, m_width, m_height);