| 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 "GrCaps.h" |
| 12 #include "GrContext.h" | 13 #include "GrContext.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 "GrMemoryPool.h" |
| 17 #include "GrRectBatch.h" | 17 #include "GrRectBatch.h" |
| 18 #include "GrRenderTarget.h" | 18 #include "GrRenderTarget.h" |
| 19 #include "GrRenderTargetPriv.h" | 19 #include "GrRenderTargetPriv.h" |
| 20 #include "GrSurfacePriv.h" | 20 #include "GrSurfacePriv.h" |
| 21 #include "GrTemplates.h" | 21 #include "GrTemplates.h" |
| 22 #include "GrTexture.h" | 22 #include "GrTexture.h" |
| 23 #include "GrVertexBuffer.h" | 23 #include "GrVertexBuffer.h" |
| (...skipping 759 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 783 GrPipelineBuilder::AutoRestoreFragmentProcessors* a
rfp, | 783 GrPipelineBuilder::AutoRestoreFragmentProcessors* a
rfp, |
| 784 GrPipelineBuilder::AutoRestoreStencil* ars, | 784 GrPipelineBuilder::AutoRestoreStencil* ars, |
| 785 GrScissorState* scissorState, | 785 GrScissorState* scissorState, |
| 786 const SkRect* devBounds) { | 786 const SkRect* devBounds) { |
| 787 return fClipMaskManager.setupClipping(pipelineBuilder, | 787 return fClipMaskManager.setupClipping(pipelineBuilder, |
| 788 arfp, | 788 arfp, |
| 789 ars, | 789 ars, |
| 790 scissorState, | 790 scissorState, |
| 791 devBounds); | 791 devBounds); |
| 792 } | 792 } |
| OLD | NEW |