Searched refs:GrNextPow2 (Results 1 – 18 of 18) sorted by relevance
/external/skqp/src/gpu/ |
D | GrSurface.cpp | 23 ? SkTMax(GrResourceProvider::kMinScratchTextureSize, GrNextPow2(desc.fWidth)) in WorstCaseSize() 26 ? SkTMax(GrResourceProvider::kMinScratchTextureSize, GrNextPow2(desc.fHeight)) in WorstCaseSize() 70 ? SkTMax(GrResourceProvider::kMinScratchTextureSize, GrNextPow2(width)) in ComputeSize() 73 ? SkTMax(GrResourceProvider::kMinScratchTextureSize, GrNextPow2(height)) in ComputeSize()
|
D | GrRectanizer_pow2.cpp | 18 height = GrNextPow2(height); in addRect()
|
D | GrResourceProvider.cpp | 192 wdesc->fWidth = SkTMax(kMinScratchTextureSize, GrNextPow2(desc.fWidth)); in createApproxTexture() 193 wdesc->fHeight = SkTMax(kMinScratchTextureSize, GrNextPow2(desc.fHeight)); in createApproxTexture()
|
D | GrGpu.cpp | 56 copyParams->fWidth = GrNextPow2(width); in IsACopyNeededForRepeatWrapMode() 57 copyParams->fHeight = GrNextPow2(height); in IsACopyNeededForRepeatWrapMode()
|
D | GrSurfaceProxy.cpp | 310 return SkTMax(GrResourceProvider::kMinScratchTextureSize, GrNextPow2(fWidth)); in worstCaseWidth() 322 return SkTMax(GrResourceProvider::kMinScratchTextureSize, GrNextPow2(fHeight)); in worstCaseHeight()
|
D | GrPathUtils.cpp | 67 int pow2 = GrNextPow2(temp); in quadraticPointCount() 123 int pow2 = GrNextPow2(temp); in cubicPointCount()
|
/external/skia/bench/ |
D | RectanizerBench.cpp | 96 size = SkISize::Make(GrNextPow2(rand.nextRangeU(1, kWidth / 2)), in onDraw() 97 GrNextPow2(rand.nextRangeU(1, kHeight / 2))); in onDraw()
|
/external/skqp/bench/ |
D | RectanizerBench.cpp | 94 size = SkISize::Make(GrNextPow2(rand.nextRangeU(1, kWidth / 2)), in onDraw() 95 GrNextPow2(rand.nextRangeU(1, kHeight / 2))); in onDraw()
|
/external/skia/samplecode/ |
D | SampleRectanizer.cpp | 42 GrNextPow2(random.nextRangeU(kMinRectSize, kMaxRectSize)), in RectanizerView() 43 GrNextPow2(random.nextRangeU(kMinRectSize, kMaxRectSize))); in RectanizerView()
|
/external/skqp/samplecode/ |
D | SampleRectanizer.cpp | 42 GrNextPow2(random.nextRangeU(kMinRectSize, kMaxRectSize)), in RectanizerView() 43 GrNextPow2(random.nextRangeU(kMinRectSize, kMaxRectSize))); in RectanizerView()
|
/external/skia/src/gpu/ |
D | GrRectanizerPow2.cpp | 18 height = GrNextPow2(height); in addRect()
|
/external/skqp/tools/sk_app/ |
D | GLWindowContext.cpp | 27 fDisplayParams.fMSAASampleCount = GrNextPow2(fDisplayParams.fMSAASampleCount); in GLWindowContext()
|
/external/skia/tools/sk_app/ |
D | GLWindowContext.cpp | 27 fDisplayParams.fMSAASampleCount = GrNextPow2(fDisplayParams.fMSAASampleCount); in GLWindowContext()
|
D | MetalWindowContext.mm | 29 fDisplayParams.fMSAASampleCount = GrNextPow2(fDisplayParams.fMSAASampleCount);
|
/external/skqp/src/gpu/mock/ |
D | GrMockCaps.h | 53 return requestCount > kMaxSampleCnt ? 0 : GrNextPow2(requestCount); in getRenderTargetSampleCount()
|
/external/skqp/src/core/ |
D | SkMathPriv.h | 220 static inline uint32_t GrNextPow2(uint32_t n) { in GrNextPow2() function
|
/external/skia/src/gpu/mock/ |
D | GrMockCaps.h | 96 return requestCount > kMaxSampleCnt ? 0 : GrNextPow2(requestCount); in getRenderTargetSampleCount()
|
/external/skia/src/core/ |
D | SkMathPriv.h | 289 static inline uint32_t GrNextPow2(uint32_t n) { in GrNextPow2() function
|