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);
GrContext.cpp 296 rtDesc.fWidth = GrNextPow2(GrMax(desc.fWidth, 64));
297 rtDesc.fHeight = GrNextPow2(GrMax(desc.fHeight, 64));
330 rtDesc.fWidth = GrNextPow2(desc.fWidth);
331 rtDesc.fHeight = GrNextPow2(desc.fHeight);
384 desc.fWidth = GrMax(MIN_SIZE, GrNextPow2(desc.fWidth));
385 desc.fHeight = GrMax(MIN_SIZE, GrNextPow2(desc.fHeight));
    [all...]
GrPathUtils.cpp 56 int pow2 = GrNextPow2(temp);
107 int pow2 = GrNextPow2(temp);
  /external/skia/include/gpu/
GrTypes.h 150 static inline uint32_t GrNextPow2(uint32_t n) {
154 static inline int GrNextPow2(int n) {

Completed in 27 milliseconds