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

  /external/skia/src/gpu/
GrRectanizer_pow2.cpp 18 height = GrNextPow2(height);
GrSurface.cpp 30 int width = useNextPow2 ? GrNextPow2(desc.fWidth) : desc.fWidth;
31 int height = useNextPow2 ? GrNextPow2(desc.fHeight) : desc.fHeight;
70 int width = useNextPow2 ? GrNextPow2(desc.fWidth) : desc.fWidth;
71 int height = useNextPow2 ? GrNextPow2(desc.fHeight) : desc.fHeight;
GrSurfaceProxy.cpp 77 return SkTMax(GrResourceProvider::kMinScratchTextureSize, GrNextPow2(fDesc.fWidth));
93 return SkTMax(GrResourceProvider::kMinScratchTextureSize, GrNextPow2(fDesc.fHeight));
GrResourceProvider.cpp 149 wdesc->fWidth = SkTMax(kMinScratchTextureSize, GrNextPow2(desc->fWidth));
150 wdesc->fHeight = SkTMax(kMinScratchTextureSize, GrNextPow2(desc->fHeight));
GrGpu.cpp 68 copyParams->fWidth = GrNextPow2(width);
69 copyParams->fHeight = GrNextPow2(height);
GrPathUtils.cpp 61 int pow2 = GrNextPow2(temp);
119 int pow2 = GrNextPow2(temp);
    [all...]
  /external/skia/bench/
RectanizerBench.cpp 96 size = SkISize::Make(GrNextPow2(rand.nextRangeU(1, kWidth / 2)),
97 GrNextPow2(rand.nextRangeU(1, kHeight / 2)));
  /external/skia/src/core/
SkMathPriv.h 177 static inline uint32_t GrNextPow2(uint32_t n) {
203 static inline int GrNextPow2(int n) {
  /external/skia/samplecode/
SampleRectanizer.cpp 40 GrNextPow2(random.nextRangeU(kMinRectSize, kMaxRectSize)),
41 GrNextPow2(random.nextRangeU(kMinRectSize, kMaxRectSize)));
  /external/skia/tools/viewer/sk_app/
GLWindowContext.cpp 31 GrNextPow2(fDisplayParams.fMSAASampleCount) :
  /external/skia/src/gpu/ops/
GrAtlasTextOp.cpp 199 int newAllocSize = GrNextPow2(newGeoCount);
200 int currAllocSize = SkTMax<int>(kMinGeometryAllocated, GrNextPow2(fGeoCount));

Completed in 533 milliseconds