| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2015 Google Inc. | 2 * Copyright 2015 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 GrPipeline_DEFINED | 8 #ifndef GrPipeline_DEFINED |
| 9 #define GrPipeline_DEFINED | 9 #define GrPipeline_DEFINED |
| 10 | 10 |
| 11 #include "GrColor.h" | 11 #include "GrColor.h" |
| 12 #include "GrGpu.h" | 12 #include "GrGpu.h" |
| 13 #include "GrPendingFragmentStage.h" | 13 #include "GrPendingFragmentStage.h" |
| 14 #include "GrPrimitiveProcessor.h" |
| 14 #include "GrProgramDesc.h" | 15 #include "GrProgramDesc.h" |
| 15 #include "GrStencil.h" | 16 #include "GrStencil.h" |
| 16 #include "GrTypesPriv.h" | 17 #include "GrTypesPriv.h" |
| 17 #include "SkMatrix.h" | 18 #include "SkMatrix.h" |
| 18 #include "SkRefCnt.h" | 19 #include "SkRefCnt.h" |
| 19 | 20 |
| 20 class GrBatch; | 21 class GrBatch; |
| 21 class GrDeviceCoordTexture; | 22 class GrDeviceCoordTexture; |
| 22 class GrPipelineBuilder; | 23 class GrPipelineBuilder; |
| 23 | 24 |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 138 | 139 |
| 139 // This function is equivalent to the offset into fFragmentStages where cove
rage stages begin. | 140 // This function is equivalent to the offset into fFragmentStages where cove
rage stages begin. |
| 140 int fNumColorStages; | 141 int fNumColorStages; |
| 141 | 142 |
| 142 GrProgramDesc fDesc; | 143 GrProgramDesc fDesc; |
| 143 | 144 |
| 144 typedef SkRefCnt INHERITED; | 145 typedef SkRefCnt INHERITED; |
| 145 }; | 146 }; |
| 146 | 147 |
| 147 #endif | 148 #endif |
| OLD | NEW |