| 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 "GrClip.h" | 11 #include "GrClip.h" | 
| 12 #include "GrClipMaskManager.h" | 12 #include "GrClipMaskManager.h" | 
| 13 #include "GrContext.h" | 13 #include "GrContext.h" | 
| 14 #include "GrPathProcessor.h" | 14 #include "GrPathProcessor.h" | 
| 15 #include "GrPrimitiveProcessor.h" | 15 #include "GrPrimitiveProcessor.h" | 
|  | 16 #include "GrIndexBuffer.h" | 
| 16 #include "GrPathRendering.h" | 17 #include "GrPathRendering.h" | 
| 17 #include "GrPipelineBuilder.h" | 18 #include "GrPipelineBuilder.h" | 
|  | 19 #include "GrPipeline.h" | 
|  | 20 #include "GrVertexBuffer.h" | 
| 18 #include "GrXferProcessor.h" | 21 #include "GrXferProcessor.h" | 
| 19 | 22 | 
| 20 #include "batches/GrDrawBatch.h" | 23 #include "batches/GrDrawBatch.h" | 
| 21 | 24 | 
| 22 #include "SkClipStack.h" | 25 #include "SkClipStack.h" | 
| 23 #include "SkMatrix.h" | 26 #include "SkMatrix.h" | 
| 24 #include "SkPath.h" | 27 #include "SkPath.h" | 
| 25 #include "SkStringUtils.h" | 28 #include "SkStringUtils.h" | 
| 26 #include "SkStrokeRec.h" | 29 #include "SkStrokeRec.h" | 
| 27 #include "SkTArray.h" | 30 #include "SkTArray.h" | 
| (...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 259     GrRenderTarget*                             fRenderTarget; | 262     GrRenderTarget*                             fRenderTarget; | 
| 260 | 263 | 
| 261     bool                                        fDrawBatchBounds; | 264     bool                                        fDrawBatchBounds; | 
| 262     int                                         fMaxBatchLookback; | 265     int                                         fMaxBatchLookback; | 
| 263     int                                         fMaxBatchLookahead; | 266     int                                         fMaxBatchLookahead; | 
| 264 | 267 | 
| 265     typedef SkRefCnt INHERITED; | 268     typedef SkRefCnt INHERITED; | 
| 266 }; | 269 }; | 
| 267 | 270 | 
| 268 #endif | 271 #endif | 
| OLD | NEW | 
|---|