Searched refs:baseHeight (Results 1 – 6 of 6) sorted by relevance
/external/skia/src/core/ |
D | SkMipmap.h | 45 static int ComputeLevelCount(int baseWidth, int baseHeight); 51 static SkISize ComputeLevelSize(int baseWidth, int baseHeight, int level);
|
D | SkMipmap.cpp | 665 int SkMipmap::ComputeLevelCount(int baseWidth, int baseHeight) { in ComputeLevelCount() argument 666 if (baseWidth < 1 || baseHeight < 1) { in ComputeLevelCount() 675 const int largestAxis = std::max(baseWidth, baseHeight); in ComputeLevelCount() 699 SkISize SkMipmap::ComputeLevelSize(int baseWidth, int baseHeight, int level) { in ComputeLevelSize() argument 700 if (baseWidth < 1 || baseHeight < 1) { in ComputeLevelSize() 704 int maxLevelCount = ComputeLevelCount(baseWidth, baseHeight); in ComputeLevelSize() 717 int height = std::max(1, baseHeight >> (level + 1)); in ComputeLevelSize()
|
/external/mesa3d/src/gallium/drivers/swr/rasterizer/memory/ |
D | TilingFunctions.h | 344 uint32_t baseHeight, 356 uint32_t mipHeight = baseHeight;
|
/external/angle/src/libANGLE/renderer/d3d/ |
D | TextureD3D.cpp | 2154 int baseHeight = getBaseLevelHeight(); in isCubeComplete() local 2157 if (baseWidth <= 0 || baseWidth != baseHeight) in isCubeComplete() 2166 if (faceBaseImage.getWidth() != baseWidth || faceBaseImage.getHeight() != baseHeight || in isCubeComplete() 3642 int baseHeight = getLevelZeroHeight(); in initMipmapImages() local 3650 ASSERT((baseWidth >> level) > 0 || (baseHeight >> level) > 0); in initMipmapImages() 3652 std::max(baseHeight >> level, 1), baseDepth); in initMipmapImages()
|
/external/python/cpython2/Lib/lib-tk/ |
D | Tkinter.py | 1677 baseWidth=None, baseHeight=None, argument 1685 baseWidth, baseHeight, widthInc, heightInc))
|
/external/python/cpython3/Lib/tkinter/ |
D | __init__.py | 2078 baseWidth=None, baseHeight=None, argument 2086 baseWidth, baseHeight, widthInc, heightInc))
|