/external/skia/tests/ |
D | MipMapTest.cpp | 28 REPORTER_ASSERT(reporter, mm->countLevels() == SkMipMap::ComputeLevelCount(width, height)); in DEF_TEST() 67 REPORTER_ASSERT(reporter, mipLevelCount == SkMipMap::ComputeLevelCount(width, height)); in test_mipmap_generation() 153 int levelCount = SkMipMap::ComputeLevelCount(currentTest.fWidth, currentTest.fHeight); in DEF_TEST()
|
/external/skqp/tests/ |
D | MipMapTest.cpp | 28 REPORTER_ASSERT(reporter, mm->countLevels() == SkMipMap::ComputeLevelCount(width, height)); in DEF_TEST() 67 REPORTER_ASSERT(reporter, mipLevelCount == SkMipMap::ComputeLevelCount(width, height)); in test_mipmap_generation() 153 int levelCount = SkMipMap::ComputeLevelCount(currentTest.fWidth, currentTest.fHeight); in DEF_TEST()
|
/external/skia/src/core/ |
D | SkMipMap.h | 38 static int ComputeLevelCount(int baseWidth, int baseHeight);
|
D | SkMipMap.cpp | 392 int countLevels = ComputeLevelCount(src.width(), src.height()); in Build() 493 int SkMipMap::ComputeLevelCount(int baseWidth, int baseHeight) { in ComputeLevelCount() function in SkMipMap 532 int maxLevelCount = ComputeLevelCount(baseWidth, baseHeight); in ComputeLevelSize()
|
/external/skqp/src/core/ |
D | SkMipMap.h | 38 static int ComputeLevelCount(int baseWidth, int baseHeight);
|
D | SkMipMap.cpp | 391 int countLevels = ComputeLevelCount(src.width(), src.height()); in Build() 492 int SkMipMap::ComputeLevelCount(int baseWidth, int baseHeight) { in ComputeLevelCount() function in SkMipMap 531 int maxLevelCount = ComputeLevelCount(baseWidth, baseHeight); in ComputeLevelSize()
|
/external/skqp/src/gpu/ |
D | GrTextureProducer.cpp | 236 int mipCount = SkMipMap::ComputeLevelCount(this->width(), this->height()); in refTextureProxyForParams() 260 int mipCount = SkMipMap::ComputeLevelCount(this->width(), this->height()); in refTextureProxy()
|
D | GrTexture.cpp | 45 fMaxMipMapLevel = SkMipMap::ComputeLevelCount(this->width(), this->height()); in GrTexture()
|
D | GrProxyProvider.cpp | 305 if (0 == SkMipMap::ComputeLevelCount(baseLevel->width(), baseLevel->height())) { in createMipMapProxyFromBitmap() 388 int mipCount = SkMipMap::ComputeLevelCount(desc.fWidth, desc.fHeight) + 1; in createProxy()
|
D | GrSurfaceProxy.cpp | 159 int mipCount = SkMipMap::ComputeLevelCount(desc.fWidth, desc.fHeight) + 1; in createSurfaceImpl()
|
/external/skia/tools/fiddle/ |
D | fiddle_main.cpp | 153 ? SkMipMap::ComputeLevelCount(bm.width(), bm.height()) in setup_backend_objects() 208 ? SkMipMap::ComputeLevelCount(backingDesc.fWidth, backingDesc.fHeight) in setup_backend_objects()
|
/external/skia/src/gpu/ |
D | GrTextureProducer.cpp | 269 int mipCount = SkMipMap::ComputeLevelCount(this->width(), this->height()); in refTextureProxyForParams() 293 int mipCount = SkMipMap::ComputeLevelCount(this->width(), this->height()); in refTextureProxy()
|
D | GrTexture.cpp | 45 fMaxMipMapLevel = SkMipMap::ComputeLevelCount(this->width(), this->height()); in GrTexture()
|
D | GrProxyProvider.cpp | 321 if (0 == SkMipMap::ComputeLevelCount(baseLevel->width(), baseLevel->height())) { in createMipMapProxyFromBitmap() 403 int mipCount = SkMipMap::ComputeLevelCount(desc.fWidth, desc.fHeight) + 1; in createProxy()
|
D | GrSurfaceProxy.cpp | 156 int mipCount = SkMipMap::ComputeLevelCount(desc.fWidth, desc.fHeight) + 1; in createSurfaceImpl()
|
/external/skqp/tools/fiddle/ |
D | fiddle_main.cpp | 153 ? SkMipMap::ComputeLevelCount(bm.width(), bm.height()) in setup_backend_objects() 208 ? SkMipMap::ComputeLevelCount(backingDesc.fWidth, backingDesc.fHeight) in setup_backend_objects()
|
/external/skqp/src/image/ |
D | SkImage_GpuYUVA.cpp | 84 int mipCount = SkMipMap::ComputeLevelCount(fProxies[i]->width(), fProxies[i]->height()); in setupMipmapsForPlanes()
|
/external/skia/src/image/ |
D | SkImage_GpuYUVA.cpp | 90 int mipCount = SkMipMap::ComputeLevelCount(fProxies[i]->width(), fProxies[i]->height()); in setupMipmapsForPlanes()
|
/external/skqp/src/gpu/vk/ |
D | GrVkGpu.cpp | 1214 uint32_t levelCount = SkMipMap::ComputeLevelCount(tex->width(), tex->height()) + 1; in onRegenerateMipMapLevels() 1376 mipLevels = SkMipMap::ComputeLevelCount(w, h) + 1; in createTestingOnlyVkImage()
|
/external/skia/src/gpu/vk/ |
D | GrVkGpu.cpp | 1226 uint32_t levelCount = SkMipMap::ComputeLevelCount(tex->width(), tex->height()) + 1; in onRegenerateMipMapLevels() 1388 mipLevels = SkMipMap::ComputeLevelCount(w, h) + 1; in createTestingOnlyVkImage()
|
/external/skia/src/gpu/gl/ |
D | GrGLGpu.cpp | 3821 int levelCount = SkMipMap::ComputeLevelCount(width, height) + 1; in onRegenerateMipMapLevels() 4040 mipLevels = SkMipMap::ComputeLevelCount(w, h) + 1; in createTestingOnlyBackendTexture()
|
/external/skqp/src/gpu/gl/ |
D | GrGLGpu.cpp | 3795 int levelCount = SkMipMap::ComputeLevelCount(width, height) + 1; in onRegenerateMipMapLevels() 3999 mipLevels = SkMipMap::ComputeLevelCount(w, h) + 1; in createTestingOnlyBackendTexture()
|