HomeSort by relevance Sort by last modified time
    Searched refs:useMipmap (Results 1 - 2 of 2) sorted by null

  /external/deqp/modules/glshared/
glsLongStressCase.hpp 141 bool useMipmap;
170 , useMipmap (useMipmap_)
glsLongStressCase.cpp 454 void setData (const ConstPixelBufferAccess& src, int width, int height, deUint32 internalFormat, bool useMipmap);
463 int getApproxMemUsageDiff (int width, int height, deUint32 internalFormat, bool useMipmap) const;
495 int Texture::getApproxMemUsageDiff (const int width, const int height, const deUint32 internalFormat, const bool useMipmap) const
497 const int numLevels = useMipmap ? deLog2Floor32(de::max(width, height))+1 : 1;
510 void Texture::setData (const ConstPixelBufferAccess& src, const int width, const int height, const deUint32 internalFormat, const bool useMipmap)
513 DE_ASSERT(!useMipmap || (deIsPowerOfTwo32(width) && deIsPowerOfTwo32(height)));
518 m_numMipLevels = useMipmap ? deLog2Floor32(de::max(width, height))+1 : 1;
    [all...]

Completed in 38 milliseconds