Home
last modified time | relevance | path

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

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

Completed in 4 milliseconds