| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2010 Google Inc. | 2 * Copyright 2010 Google Inc. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
| 5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
| 6 */ | 6 */ |
| 7 | 7 |
| 8 #ifndef GrDrawTarget_DEFINED | 8 #ifndef GrDrawTarget_DEFINED |
| 9 #define GrDrawTarget_DEFINED | 9 #define GrDrawTarget_DEFINED |
| 10 | 10 |
| 11 #include "GrClipData.h" | 11 #include "GrClipData.h" |
| 12 #include "GrClipMaskManager.h" | 12 #include "GrClipMaskManager.h" |
| 13 #include "GrContext.h" | 13 #include "GrContext.h" |
| 14 #include "GrPathProcessor.h" |
| 15 #include "GrPrimitiveProcessor.h" |
| 14 #include "GrIndexBuffer.h" | 16 #include "GrIndexBuffer.h" |
| 15 #include "GrPathRendering.h" | 17 #include "GrPathRendering.h" |
| 16 #include "GrPipelineBuilder.h" | 18 #include "GrPipelineBuilder.h" |
| 17 #include "GrTraceMarker.h" | 19 #include "GrTraceMarker.h" |
| 18 #include "GrVertexBuffer.h" | 20 #include "GrVertexBuffer.h" |
| 19 | 21 |
| 20 #include "SkClipStack.h" | 22 #include "SkClipStack.h" |
| 21 #include "SkMatrix.h" | 23 #include "SkMatrix.h" |
| 22 #include "SkPath.h" | 24 #include "SkPath.h" |
| 23 #include "SkStrokeRec.h" | 25 #include "SkStrokeRec.h" |
| (...skipping 847 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 871 virtual bool setupClip(GrPipelineBuilder*, | 873 virtual bool setupClip(GrPipelineBuilder*, |
| 872 GrPipelineBuilder::AutoRestoreEffects* are, | 874 GrPipelineBuilder::AutoRestoreEffects* are, |
| 873 GrPipelineBuilder::AutoRestoreStencil* ars, | 875 GrPipelineBuilder::AutoRestoreStencil* ars, |
| 874 GrScissorState* scissorState, | 876 GrScissorState* scissorState, |
| 875 const SkRect* devBounds) SK_OVERRIDE; | 877 const SkRect* devBounds) SK_OVERRIDE; |
| 876 | 878 |
| 877 typedef GrDrawTarget INHERITED; | 879 typedef GrDrawTarget INHERITED; |
| 878 }; | 880 }; |
| 879 | 881 |
| 880 #endif | 882 #endif |
| OLD | NEW |