HomeSort by relevance Sort by last modified time
    Searched refs:SkNextLog2 (Results 1 - 6 of 6) sorted by null

  /external/skia/src/gpu/
GrTest.cpp 32 configs[kA8_GrMaskFormat].fLog2Width = SkNextLog2(dim);
33 configs[kA8_GrMaskFormat].fLog2Height = SkNextLog2(dim);
39 configs[kA565_GrMaskFormat].fLog2Width = SkNextLog2(dim);
40 configs[kA565_GrMaskFormat].fLog2Height = SkNextLog2(dim);
46 configs[kARGB_GrMaskFormat].fLog2Width = SkNextLog2(dim);
47 configs[kARGB_GrMaskFormat].fLog2Height = SkNextLog2(dim);
  /external/skia/include/core/
SkMath.h 138 * SkNextLog2(1) -> 0
139 * SkNextLog2(2) -> 1
140 * SkNextLog2(3) -> 2
141 * SkNextLog2(4) -> 2
142 * SkNextLog2(5) -> 3
144 static inline int SkNextLog2(uint32_t value) {
  /external/skia/gm/
drawminibitmaprect.cpp 87 static const int kMaxSrcRectSize = 1 << (SkNextLog2(gSurfaceSize) + 2);
drawbitmaprect.cpp 148 static const int kMaxSrcRectSize = 1 << (SkNextLog2(gBmpSize) + 2);
  /external/skia/src/core/
SkTSort.h 196 int depth = 2 * SkNextLog2(SkToU32(right - left));
  /external/skia/src/images/
SkImageDecoder_libpng.cpp 749 int bits = SkNextLog2(colorCount);
    [all...]

Completed in 162 milliseconds