Lines Matching defs:texHeight
582 const int texHeight = 1 << deLog2Ceil32(MAX_2D_RENDER_HEIGHT / 2);
587 m_textures[i] = new glu::Texture2D(m_context.getRenderContext(), GL_RGB, GL_UNSIGNED_BYTE, texWidth, texHeight);
590 const bool mipmaps = (deIsPowerOfTwo32(texWidth) && deIsPowerOfTwo32(texHeight));
591 const int numLevels = mipmaps ? deLog2Floor32(de::max(texWidth, texHeight))+1 : 1;
888 const int texHeight = 1 << deLog2Ceil32(MAX_CUBE_RENDER_HEIGHT / 2 / 2);
890 DE_ASSERT(texWidth == texHeight);
891 DE_UNREF(texHeight);
1228 const int texHeight = HEIGHT_2D_ARRAY;
1234 m_textures[i] = new glu::Texture2DArray(m_context.getRenderContext(), GL_RGB, GL_UNSIGNED_BYTE, texWidth, texHeight, texLayers);
1237 const int numLevels = deLog2Floor32(de::max(texWidth, texHeight)) + 1;
1292 const int texHeight = refTexture.getHeight();
1302 const float dvdx = (trans10.y() - trans00.y()) * (float)texHeight / dstSize.x();
1303 const float dvdy = (trans01.y() - trans00.y()) * (float)texHeight / dstSize.y();
1568 const int texHeight = HEIGHT_3D;
1574 m_textures[i] = new glu::Texture3D(m_context.getRenderContext(), GL_RGB, GL_UNSIGNED_BYTE, texWidth, texHeight, texDepth);
1577 const int numLevels = deLog2Floor32(de::max(de::max(texWidth, texHeight), texDepth)) + 1;