Home
last modified time | relevance | path

Searched refs:baseHeight (Results 1 - 4 of 4) sorted by relevance

/third_party/skia/src/core/
H A DSkMipmap.h44 static int SK_API ComputeLevelCount(int baseWidth, int baseHeight);
50 static SkISize ComputeLevelSize(int baseWidth, int baseHeight, int level);
H A DSkMipmap.cpp659 int SkMipmap::ComputeLevelCount(int baseWidth, int baseHeight) { in ComputeLevelCount() argument
660 if (baseWidth < 1 || baseHeight < 1) { in ComputeLevelCount()
669 const int largestAxis = std::max(baseWidth, baseHeight); in ComputeLevelCount()
693 SkISize SkMipmap::ComputeLevelSize(int baseWidth, int baseHeight, int level) { in ComputeLevelSize() argument
694 if (baseWidth < 1 || baseHeight < 1) { in ComputeLevelSize()
698 int maxLevelCount = ComputeLevelCount(baseWidth, baseHeight); in ComputeLevelSize()
711 int height = std::max(1, baseHeight >> (level + 1)); in ComputeLevelSize()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/
H A DTextureD3D.cpp2077 int baseHeight = getBaseLevelHeight();
2080 if (baseWidth <= 0 || baseWidth != baseHeight)
2089 if (faceBaseImage.getWidth() != baseWidth || faceBaseImage.getHeight() != baseHeight ||
3536 int baseHeight = getLevelZeroHeight();
3544 ASSERT((baseWidth >> level) > 0 || (baseHeight >> level) > 0);
3546 std::max(baseHeight >> level, 1), baseDepth);
/third_party/python/Lib/tkinter/
H A D__init__.py2105 baseWidth=None, baseHeight=None,
2113 baseWidth, baseHeight, widthInc, heightInc))

Completed in 16 milliseconds