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

  /external/skia/src/gpu/gl/
GrGLStencilBuffer.cpp 20 size *= GrMax(1,this->numSamples());
  /external/skia/src/gpu/
GrAllocPool.cpp 59 fMinBlockSize = GrMax(blockSize, GrAllocPool_MIN_BLOCK_SIZE);
84 size_t blockSize = GrMax(fMinBlockSize, size);
GrMemoryPool.cpp 19 minAllocSize = GrMax<size_t>(minAllocSize, 1 << 10);
22 fPreallocSize = GrMax(fPreallocSize, fMinAllocSize);
45 blockSize = GrMax<size_t>(blockSize, fMinAllocSize);
GrRenderTarget.cpp 69 size *= GrMax(1, fDesc.fSampleCnt);
GrBufferAllocPool.cpp 30 fBlocks(GrMax(8, 2*preallocBufferCnt)) {
40 fMinBlockSize = GrMax(GrBufferAllocPool_MIN_BLOCK_SIZE, blockSize);
260 size_t size = GrMax(requestSize, fMinBlockSize);
GrAllocator.h 69 int blockCount = GrMax((unsigned)1,
GrInOrderDrawBuffer.cpp 261 poolState.fUsedPoolVertexBytes = GrMax(poolState.fUsedPoolVertexBytes, vertexBytes);
325 poolState.fUsedPoolVertexBytes = GrMax(poolState.fUsedPoolVertexBytes, vertexBytes);
343 poolState.fUsedPoolIndexBytes = GrMax(poolState.fUsedPoolIndexBytes, indexBytes);
GrAAHairLinePathRenderer.cpp 177 log = GrMin(GrMax(0, log), kMaxSub);
185 return GrMin(GrMax(0, SkScalarCeilToInt(log)),kMaxSub);
GrContext.cpp 296 rtDesc.fWidth = GrNextPow2(GrMax(desc.fWidth, 64));
297 rtDesc.fHeight = GrNextPow2(GrMax(desc.fHeight, 64));
384 desc.fWidth = GrMax(MIN_SIZE, GrNextPow2(desc.fWidth));
385 desc.fHeight = GrMax(MIN_SIZE, GrNextPow2(desc.fHeight));
    [all...]
GrPathUtils.cpp 99 SkScalar d = GrMax(
  /external/skia/include/gpu/
GrTypes.h 65 template <typename T> const T& GrMax(const T& a, const T& b) {

Completed in 343 milliseconds