| Index: src/gpu/GrBufferAllocPool.cpp
|
| diff --git a/src/gpu/GrBufferAllocPool.cpp b/src/gpu/GrBufferAllocPool.cpp
|
| index 82ec432bd9d10b035125d2e86b104c8e0ce854ad..878d537d45833ddeb82e57e7daad9637771e4454 100644
|
| --- a/src/gpu/GrBufferAllocPool.cpp
|
| +++ b/src/gpu/GrBufferAllocPool.cpp
|
| @@ -358,10 +358,10 @@ GrGeometryBuffer* GrBufferAllocPool::createBuffer(size_t size) {
|
| GrVertexBufferAllocPool::GrVertexBufferAllocPool(GrGpu* gpu,
|
| size_t bufferSize,
|
| int preallocBufferCnt)
|
| -: GrBufferAllocPool(gpu,
|
| - kVertex_BufferType,
|
| - bufferSize,
|
| - preallocBufferCnt) {
|
| + : GrBufferAllocPool(gpu,
|
| + kVertex_BufferType,
|
| + bufferSize,
|
| + preallocBufferCnt) {
|
| }
|
|
|
| void* GrVertexBufferAllocPool::makeSpace(size_t vertexSize,
|
| @@ -391,10 +391,10 @@ void* GrVertexBufferAllocPool::makeSpace(size_t vertexSize,
|
| GrIndexBufferAllocPool::GrIndexBufferAllocPool(GrGpu* gpu,
|
| size_t bufferSize,
|
| int preallocBufferCnt)
|
| -: GrBufferAllocPool(gpu,
|
| - kIndex_BufferType,
|
| - bufferSize,
|
| - preallocBufferCnt) {
|
| + : GrBufferAllocPool(gpu,
|
| + kIndex_BufferType,
|
| + bufferSize,
|
| + preallocBufferCnt) {
|
| }
|
|
|
| void* GrIndexBufferAllocPool::makeSpace(int indexCount,
|
|
|