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

  /external/skia/src/gpu/
GrRectanizer_pow2.cpp 19 height = GrNextPow2(height);
GrTextureProvider.cpp 92 wdesc->fWidth = SkTMax(kMinSize, GrNextPow2(desc->fWidth));
93 wdesc->fHeight = SkTMax(kMinSize, GrNextPow2(desc->fHeight));
GrResourceProvider.cpp 103 size = SkTMax(MIN_SIZE, GrNextPow2(SkToUInt(size)));
132 size = SkTMax(MIN_SIZE, GrNextPow2(SkToUInt(size)));
GrGpu.cpp 63 copyParams->fWidth = GrNextPow2(width);
64 copyParams->fHeight = GrNextPow2(height);
GrPathUtils.cpp 58 int pow2 = GrNextPow2(temp);
114 int pow2 = GrNextPow2(temp);
  /external/skia/bench/
RectanizerBench.cpp 96 size = SkISize::Make(GrNextPow2(rand.nextRangeU(1, kWidth / 2)),
97 GrNextPow2(rand.nextRangeU(1, kHeight / 2)));
  /external/skia/samplecode/
SampleRectanizer.cpp 40 GrNextPow2(random.nextRangeU(kMinRectSize, kMaxRectSize)),
41 GrNextPow2(random.nextRangeU(kMinRectSize, kMaxRectSize)));
  /external/skia/include/gpu/
GrTypes.h 113 static inline uint32_t GrNextPow2(uint32_t n) {
117 static inline int GrNextPow2(int n) {
  /external/skia/src/gpu/batches/
GrAtlasTextBatch.cpp 233 int newAllocSize = GrNextPow2(newGeoCount);
234 int currAllocSize = SkTMax<int>(kMinGeometryAllocated, GrNextPow2(fGeoCount));

Completed in 104 milliseconds