Home | History | Annotate | Download | only in functional

Lines Matching defs:mipmaps

645 			bool				mipmaps		= (deIsPowerOfTwo32(texWidth) && deIsPowerOfTwo32(texHeight));
646 int numLevels = mipmaps ? deLog2Floor32(de::max(texWidth, texHeight))+1 : 1;
653 // Certain minification filters are only used when using mipmaps.
654 if (mipmaps)
714 int curCellSize = deMax32(1, GRID_CELL_SIZE >> levelNdx); // \note Scale grid cell size for mipmaps.
854 bool mipmaps = (deIsPowerOfTwo32(texture->getWidth()) && deIsPowerOfTwo32(texture->getHeight()));
855 int numLevels = mipmaps ? deLog2Floor32(de::max(texture->getWidth(), texture->getHeight()))+1 : 1;
876 bool mipmaps = deIsPowerOfTwo32(texture->getSize()) != DE_FALSE;
877 int numLevels = mipmaps ? deLog2Floor32(texture->getSize())+1 : 1;