Lines Matching refs:m_width
84 int m_width; member in deqp::gles3::Functional::Texture2DFormatCase
96 , m_width (width) in Texture2DFormatCase()
108 , m_width (width) in Texture2DFormatCase()
132 log << TestLog::Message << "2D texture, " << fmtName.str() << ", " << m_width << "x" << m_height in init()
137 …? new glu::Texture2D(m_renderCtx, m_format, m_dataType, m_width, m_height) // Implicit internal fo… in init()
138 : new glu::Texture2D(m_renderCtx, m_format, m_width, m_height); // Explicit internal format. in init()
157 …RandomViewport viewport (m_renderCtx.getRenderTarget(), m_width, m_height, deStringHash(getNam… in iterate()
242 int m_width; member in deqp::gles3::Functional::TextureCubeFormatCase
257 , m_width (width) in TextureCubeFormatCase()
271 , m_width (width) in TextureCubeFormatCase()
297 …log << TestLog::Message << "Cube map texture, " << fmtName.str() << ", " << m_width << "x" << m_he… in init()
301 DE_ASSERT(m_width == m_height); in init()
303 ? new glu::TextureCube(m_renderCtx, m_format, m_dataType, m_width) // Implicit internal format. in init()
304 : new glu::TextureCube(m_renderCtx, m_format, m_width); // Explicit internal format. in init()
347 …RandomViewport viewport (m_renderCtx.getRenderTarget(), m_width, m_height, deStringHash(getNam… in testFace()
437 int m_width; member in deqp::gles3::Functional::Texture2DArrayFormatCase
452 , m_width (width) in Texture2DArrayFormatCase()
466 , m_width (width) in Texture2DArrayFormatCase()
483 …? new glu::Texture2DArray(m_renderCtx, m_format, m_dataType, m_width, m_height, m_numLayers) // Im… in init()
484 …: new glu::Texture2DArray(m_renderCtx, m_format, m_width, m_height, m_numLayers); // Explicit i… in init()
509 …RandomViewport viewport (m_renderCtx.getRenderTarget(), m_width, m_height, deStringHash(getNam… in testLayer()
589 int m_width; member in deqp::gles3::Functional::Texture3DFormatCase
604 , m_width (width) in Texture3DFormatCase()
618 , m_width (width) in Texture3DFormatCase()
635 …? new glu::Texture3D(m_renderCtx, m_format, m_dataType, m_width, m_height, m_depth) // Implicit in… in init()
636 …: new glu::Texture3D(m_renderCtx, m_format, m_width, m_height, m_depth); // Explicit internal f… in init()
661 …RandomViewport viewport (m_renderCtx.getRenderTarget(), m_width, m_height, deStringHash(getNam… in testSlice()
749 int m_width; member in deqp::gles3::Functional::Compressed2DFormatCase
770 , m_width (width) in Compressed2DFormatCase()
785 tcu::CompressedTexture compressedTexture (m_format, m_width, m_height); in init()
887 int m_width; member in deqp::gles3::Functional::CompressedCubeFormatCase
911 , m_width (width) in CompressedCubeFormatCase()
932 levels[face].setStorage(m_format, m_width, m_height); in init()