| 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 #include "GrDrawTarget.h" | 9 #include "GrDrawTarget.h" |
| 10 | 10 |
| 11 #include "GrBatch.h" | 11 #include "GrBatch.h" |
| 12 #include "GrContext.h" | 12 #include "GrContext.h" |
| 13 #include "GrDrawTargetCaps.h" | 13 #include "GrDrawTargetCaps.h" |
| 14 #include "GrPath.h" | 14 #include "GrPath.h" |
| 15 #include "GrPipeline.h" | 15 #include "GrPipeline.h" |
| 16 #include "GrMemoryPool.h" |
| 16 #include "GrRenderTarget.h" | 17 #include "GrRenderTarget.h" |
| 17 #include "GrRenderTargetPriv.h" | 18 #include "GrRenderTargetPriv.h" |
| 18 #include "GrSurfacePriv.h" | 19 #include "GrSurfacePriv.h" |
| 19 #include "GrTemplates.h" | 20 #include "GrTemplates.h" |
| 20 #include "GrTexture.h" | 21 #include "GrTexture.h" |
| 21 #include "GrVertexBuffer.h" | 22 #include "GrVertexBuffer.h" |
| 22 | 23 |
| 23 #include "SkStrokeRec.h" | 24 #include "SkStrokeRec.h" |
| 24 | 25 |
| 25 //////////////////////////////////////////////////////////////////////////////// | 26 //////////////////////////////////////////////////////////////////////////////// |
| (...skipping 1233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1259 GrPipelineBuilder::AutoRestoreFragmentProcessors* a
rfp, | 1260 GrPipelineBuilder::AutoRestoreFragmentProcessors* a
rfp, |
| 1260 GrPipelineBuilder::AutoRestoreStencil* ars, | 1261 GrPipelineBuilder::AutoRestoreStencil* ars, |
| 1261 GrScissorState* scissorState, | 1262 GrScissorState* scissorState, |
| 1262 const SkRect* devBounds) { | 1263 const SkRect* devBounds) { |
| 1263 return fClipMaskManager.setupClipping(pipelineBuilder, | 1264 return fClipMaskManager.setupClipping(pipelineBuilder, |
| 1264 arfp, | 1265 arfp, |
| 1265 ars, | 1266 ars, |
| 1266 scissorState, | 1267 scissorState, |
| 1267 devBounds); | 1268 devBounds); |
| 1268 } | 1269 } |
| OLD | NEW |