| 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 "GrIndexBuffer.h" |
| 17 #include "GrPathRendering.h" | 17 #include "GrPathRendering.h" |
| 18 #include "GrPipelineBuilder.h" | 18 #include "GrPipelineBuilder.h" |
| 19 #include "GrPipeline.h" | 19 #include "GrPipeline.h" |
| 20 #include "GrVertexBuffer.h" | 20 #include "GrVertexBuffer.h" |
| 21 #include "GrXferProcessor.h" | 21 #include "GrXferProcessor.h" |
| 22 | 22 |
| 23 #include "SkClipStack.h" | 23 #include "SkClipStack.h" |
| 24 #include "SkMatrix.h" | 24 #include "SkMatrix.h" |
| 25 #include "SkPath.h" | 25 #include "SkPath.h" |
| 26 #include "SkStringUtils.h" | |
| 27 #include "SkStrokeRec.h" | 26 #include "SkStrokeRec.h" |
| 28 #include "SkTArray.h" | 27 #include "SkTArray.h" |
| 29 #include "SkTLazy.h" | 28 #include "SkTLazy.h" |
| 30 #include "SkTypes.h" | 29 #include "SkTypes.h" |
| 31 #include "SkXfermode.h" | 30 #include "SkXfermode.h" |
| 32 | 31 |
| 33 class GrBatch; | 32 class GrBatch; |
| 34 class GrClip; | 33 class GrClip; |
| 35 class GrCaps; | 34 class GrCaps; |
| 36 class GrPath; | 35 class GrPath; |
| (...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 236 GrContext* fContext; | 235 GrContext* fContext; |
| 237 GrGpu* fGpu; | 236 GrGpu* fGpu; |
| 238 GrResourceProvider* fResourceProvider; | 237 GrResourceProvider* fResourceProvider; |
| 239 bool fFlushing; | 238 bool fFlushing; |
| 240 GrBatchToken fLastFlushToken; | 239 GrBatchToken fLastFlushToken; |
| 241 | 240 |
| 242 typedef SkRefCnt INHERITED; | 241 typedef SkRefCnt INHERITED; |
| 243 }; | 242 }; |
| 244 | 243 |
| 245 #endif | 244 #endif |
| OLD | NEW |