Searched refs:useMipmap (Results 1 - 2 of 2) sorted by relevance

/external/deqp/modules/glshared/
H A DglsLongStressCase.hpp141 bool useMipmap; member in struct:deqp::gls::TextureSpec
170 , useMipmap (useMipmap_)
H A DglsLongStressCase.cpp454 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) argument
513 DE_ASSERT(!useMipmap || (deIsPowerOfTwo32(width) && deIsPowerOfTwo32(height)));
518 m_numMipLevels = useMipmap ? deLog2Floor32(de::max(width, height))+1 : 1;
1314 m_textures->removeGarbageUntilUnder(m_maxTexMemoryUsageBytes - texture.getApproxMemUsageDiff(spec.width, spec.height, spec.internalFormat, spec.useMipmap), m_rnd);
1317 texture.setData(programResources.dummyTextures[texNdx]->getAccess(), spec.width, spec.height, spec.internalFormat, spec.useMipmap);

Completed in 61 milliseconds