• Home
  • Raw
  • Download

Lines Matching refs:m_width

105 	int						m_width;  member in deqp::gles3::Functional::Texture2DFormatCase
118 , m_width (width) in Texture2DFormatCase()
131 , m_width (width) in Texture2DFormatCase()
157 log << TestLog::Message << "2D texture, " << fmtName.str() << ", " << m_width << "x" << m_height in init()
162 …? new glu::Texture2D(m_renderCtx, m_format, m_dataType, m_width, m_height) // Implicit internal fo… in init()
163 : new glu::Texture2D(m_renderCtx, m_format, m_width, m_height); // Explicit internal format. in init()
182 …RandomViewport viewport (m_renderCtx.getRenderTarget(), m_width, m_height, deStringHash(getNam… in iterate()
268 int m_width; member in deqp::gles3::Functional::TextureCubeFormatCase
284 , m_width (width) in TextureCubeFormatCase()
299 , m_width (width) in TextureCubeFormatCase()
327 …log << TestLog::Message << "Cube map texture, " << fmtName.str() << ", " << m_width << "x" << m_he… in init()
331 DE_ASSERT(m_width == m_height); in init()
333 ? new glu::TextureCube(m_renderCtx, m_format, m_dataType, m_width) // Implicit internal format. in init()
334 : new glu::TextureCube(m_renderCtx, m_format, m_width); // Explicit internal format. in init()
377 …RandomViewport viewport (m_renderCtx.getRenderTarget(), m_width, m_height, deStringHash(getNam… in testFace()
468 int m_width; member in deqp::gles3::Functional::Texture2DArrayFormatCase
484 , m_width (width) in Texture2DArrayFormatCase()
499 , m_width (width) in Texture2DArrayFormatCase()
518 …? new glu::Texture2DArray(m_renderCtx, m_format, m_dataType, m_width, m_height, m_numLayers) // Im… in init()
519 …: new glu::Texture2DArray(m_renderCtx, m_format, m_width, m_height, m_numLayers); // Explicit i… in init()
544 …RandomViewport viewport (m_renderCtx.getRenderTarget(), m_width, m_height, deStringHash(getNam… in testLayer()
625 int m_width; member in deqp::gles3::Functional::Texture3DFormatCase
641 , m_width (width) in Texture3DFormatCase()
656 , m_width (width) in Texture3DFormatCase()
675 …? new glu::Texture3D(m_renderCtx, m_format, m_dataType, m_width, m_height, m_depth) // Implicit in… in init()
676 …: new glu::Texture3D(m_renderCtx, m_format, m_width, m_height, m_depth); // Explicit internal f… in init()
701 …RandomViewport viewport (m_renderCtx.getRenderTarget(), m_width, m_height, deStringHash(getNam… in testSlice()
789 int m_width; member in deqp::gles3::Functional::Compressed2DFormatCase
810 , m_width (width) in Compressed2DFormatCase()
825 tcu::CompressedTexture compressedTexture (m_format, m_width, m_height); in init()
927 int m_width; member in deqp::gles3::Functional::CompressedCubeFormatCase
951 , m_width (width) in CompressedCubeFormatCase()
972 levels[face].setStorage(m_format, m_width, m_height); in init()