Home | History | Annotate | Download | only in functional

Lines Matching defs:m_width

85 	const int						m_width;
127 , m_width (width)
144 , m_width (0)
171 m_textures.push_back(new glu::Texture2D(m_renderCtx, m_format, m_dataType, m_width, m_height));
173 bool mipmaps = deIsPowerOfTwo32(m_width) && deIsPowerOfTwo32(m_height);
174 int numLevels = mipmaps ? deLog2Floor32(de::max(m_width, m_height))+1 : 1;
348 const int m_width;
390 , m_width (width)
407 , m_width (0)
431 DE_ASSERT(m_width == m_height);
434 m_textures.push_back(new glu::TextureCube(m_renderCtx, m_format, m_dataType, m_width));
436 const bool mipmaps = deIsPowerOfTwo32(m_width) && deIsPowerOfTwo32(m_height);
437 const int numLevels = mipmaps ? deLog2Floor32(de::max(m_width, m_height))+1 : 1;