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