| OLD | NEW |
| 1 | 1 |
| 2 /* | 2 /* |
| 3 * Copyright 2010 Google Inc. | 3 * Copyright 2010 Google Inc. |
| 4 * | 4 * |
| 5 * Use of this source code is governed by a BSD-style license that can be | 5 * Use of this source code is governed by a BSD-style license that can be |
| 6 * found in the LICENSE file. | 6 * found in the LICENSE file. |
| 7 */ | 7 */ |
| 8 | 8 |
| 9 | 9 |
| 10 #include "GrGpu.h" | 10 #include "GrGpu.h" |
| 11 | 11 |
| 12 #include "GrBufferAllocPool.h" | |
| 13 #include "GrContext.h" | 12 #include "GrContext.h" |
| 14 #include "GrDrawTargetCaps.h" | 13 #include "GrDrawTargetCaps.h" |
| 15 #include "GrGpuResourcePriv.h" | 14 #include "GrGpuResourcePriv.h" |
| 16 #include "GrIndexBuffer.h" | 15 #include "GrIndexBuffer.h" |
| 17 #include "GrResourceCache.h" | 16 #include "GrResourceCache.h" |
| 18 #include "GrRenderTargetPriv.h" | 17 #include "GrRenderTargetPriv.h" |
| 19 #include "GrStencilAttachment.h" | 18 #include "GrStencilAttachment.h" |
| 20 #include "GrVertexBuffer.h" | 19 #include "GrVertexBuffer.h" |
| 21 #include "GrVertices.h" | 20 #include "GrVertices.h" |
| 22 | 21 |
| (...skipping 287 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 310 GrDrawTarget::PathIndexType indexType, | 309 GrDrawTarget::PathIndexType indexType, |
| 311 const float transformValues[], | 310 const float transformValues[], |
| 312 GrDrawTarget::PathTransformType transformType, | 311 GrDrawTarget::PathTransformType transformType, |
| 313 int count, | 312 int count, |
| 314 const GrStencilSettings& stencilSettings) { | 313 const GrStencilSettings& stencilSettings) { |
| 315 this->handleDirtyContext(); | 314 this->handleDirtyContext(); |
| 316 pathRange->willDrawPaths(indices, indexType, count); | 315 pathRange->willDrawPaths(indices, indexType, count); |
| 317 this->onDrawPaths(args, pathRange, indices, indexType, transformValues, | 316 this->onDrawPaths(args, pathRange, indices, indexType, transformValues, |
| 318 transformType, count, stencilSettings); | 317 transformType, count, stencilSettings); |
| 319 } | 318 } |
| OLD | NEW |