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 #include "GrPipelineBuilder.h" | 8 #include "GrPipelineBuilder.h" |
9 | 9 |
10 #include "GrBlend.h" | 10 #include "GrBlend.h" |
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
109 | 109 |
110 void GrPipelineBuilder::calcColorInvariantOutput(const GrDrawBatch* batch) const
{ | 110 void GrPipelineBuilder::calcColorInvariantOutput(const GrDrawBatch* batch) const
{ |
111 fColorProcInfo.calcColorWithBatch(batch, fColorFragmentProcessors.begin(), | 111 fColorProcInfo.calcColorWithBatch(batch, fColorFragmentProcessors.begin(), |
112 this->numColorFragmentProcessors()); | 112 this->numColorFragmentProcessors()); |
113 } | 113 } |
114 | 114 |
115 void GrPipelineBuilder::calcCoverageInvariantOutput(const GrDrawBatch* batch) co
nst { | 115 void GrPipelineBuilder::calcCoverageInvariantOutput(const GrDrawBatch* batch) co
nst { |
116 fCoverageProcInfo.calcCoverageWithBatch(batch, fCoverageFragmentProcessors.b
egin(), | 116 fCoverageProcInfo.calcCoverageWithBatch(batch, fCoverageFragmentProcessors.b
egin(), |
117 this->numCoverageFragmentProcessors(
)); | 117 this->numCoverageFragmentProcessors(
)); |
118 } | 118 } |
| 119 |
OLD | NEW |