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

  /external/skia/src/gpu/
GrRectanizer.cpp 81 height = GrNextPow2(height);
GrRectanizer_fifo.cpp 81 height = GrNextPow2(height);
GrPathUtils.cpp 56 int pow2 = GrNextPow2(temp);
107 int pow2 = GrNextPow2(temp);
GrContext.cpp 338 rtDesc.fWidth = GrNextPow2(GrMax(desc.fWidth, 64));
339 rtDesc.fHeight = GrNextPow2(GrMax(desc.fHeight, 64));
386 rtDesc.fWidth = GrNextPow2(desc.fWidth);
387 rtDesc.fHeight = GrNextPow2(desc.fHeight);
437 desc.fWidth = GrMax(MIN_SIZE, GrNextPow2(desc.fWidth));
438 desc.fHeight = GrMax(MIN_SIZE, GrNextPow2(desc.fHeight));
    [all...]
  /external/skia/include/gpu/
GrTypes.h 148 static inline uint32_t GrNextPow2(uint32_t n) {
152 static inline int GrNextPow2(int n) {

Completed in 105 milliseconds