Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(598)

Side by Side Diff: src/gpu/GrProcOptInfo.cpp

Issue 1233853004: Revert of Another trivial cleanup (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/gpu/GrProcOptInfo.h ('k') | src/gpu/effects/GrConfigConversionEffect.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2014 Google Inc. 2 * Copyright 2014 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 "GrProcOptInfo.h" 8 #include "GrProcOptInfo.h"
9 9
10 #include "GrBatch.h" 10 #include "GrBatch.h"
11 #include "GrFragmentProcessor.h"
12 #include "GrFragmentStage.h"
11 #include "GrGeometryProcessor.h" 13 #include "GrGeometryProcessor.h"
12 14
13 void GrProcOptInfo::calcColorWithBatch(const GrBatch* batch, 15 void GrProcOptInfo::calcColorWithBatch(const GrBatch* batch,
14 const GrFragmentStage* stages, 16 const GrFragmentStage* stages,
15 int stageCount) { 17 int stageCount) {
16 GrInitInvariantOutput out; 18 GrInitInvariantOutput out;
17 batch->getInvariantOutputColor(&out); 19 batch->getInvariantOutputColor(&out);
18 fInOut.reset(out); 20 fInOut.reset(out);
19 this->internalCalc(stages, stageCount, batch->willReadFragmentPosition()); 21 this->internalCalc(stages, stageCount, batch->willReadFragmentPosition());
20 } 22 }
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 fInputColor = fInOut.color(); 88 fInputColor = fInOut.color();
87 fInputColorIsUsed = true; 89 fInputColorIsUsed = true;
88 // Since we are clearing all previous color stages we are in a state where we have found 90 // Since we are clearing all previous color stages we are in a state where we have found
89 // zero stages that don't multiply the inputColor. 91 // zero stages that don't multiply the inputColor.
90 fInOut.resetNonMulStageFound(); 92 fInOut.resetNonMulStageFound();
91 // Reset these since we don't care if previous stages read these val ues 93 // Reset these since we don't care if previous stages read these val ues
92 fReadsFragPosition = initWillReadFragmentPosition; 94 fReadsFragPosition = initWillReadFragmentPosition;
93 } 95 }
94 } 96 }
95 } 97 }
OLDNEW
« no previous file with comments | « src/gpu/GrProcOptInfo.h ('k') | src/gpu/effects/GrConfigConversionEffect.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698