| 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 "GrStagedProcessor.h" |
| 14 #include "GrPendingProgramElement.h" |
| 14 #include "GrPrimitiveProcessor.h" | 15 #include "GrPrimitiveProcessor.h" |
| 15 #include "GrProgramDesc.h" | 16 #include "GrProgramDesc.h" |
| 16 #include "GrStencil.h" | 17 #include "GrStencil.h" |
| 17 #include "GrTypesPriv.h" | 18 #include "GrTypesPriv.h" |
| 18 #include "SkMatrix.h" | 19 #include "SkMatrix.h" |
| 19 #include "SkRefCnt.h" | 20 #include "SkRefCnt.h" |
| 20 | 21 |
| 21 class GrBatch; | 22 class GrBatch; |
| 22 class GrDeviceCoordTexture; | 23 class GrDeviceCoordTexture; |
| 23 class GrPipelineBuilder; | 24 class GrPipelineBuilder; |
| 24 | 25 |
| 26 typedef GrStagedProcessor<GrPendingProgramElement> GrPendingFragmentStage; |
| 27 |
| 25 /** | 28 /** |
| 26 * Class that holds an optimized version of a GrPipelineBuilder. It is meant to
be an immutable | 29 * Class that holds an optimized version of a GrPipelineBuilder. It is meant to
be an immutable |
| 27 * class, and contains all data needed to set the state for a gpu draw. | 30 * class, and contains all data needed to set the state for a gpu draw. |
| 28 */ | 31 */ |
| 29 class GrPipeline { | 32 class GrPipeline { |
| 30 public: | 33 public: |
| 31 | 34 |
| 32 | 35 |
| 33 GrPipeline(const GrPipelineBuilder&, | 36 GrPipeline(const GrPipelineBuilder&, |
| 34 const GrProcOptInfo& colorPOI, | 37 const GrProcOptInfo& colorPOI, |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 | 144 |
| 142 // This function is equivalent to the offset into fFragmentStages where cove
rage stages begin. | 145 // This function is equivalent to the offset into fFragmentStages where cove
rage stages begin. |
| 143 int fNumColorStages; | 146 int fNumColorStages; |
| 144 | 147 |
| 145 GrProgramDesc fDesc; | 148 GrProgramDesc fDesc; |
| 146 | 149 |
| 147 typedef SkRefCnt INHERITED; | 150 typedef SkRefCnt INHERITED; |
| 148 }; | 151 }; |
| 149 | 152 |
| 150 #endif | 153 #endif |
| OLD | NEW |