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

Side by Side Diff: src/gpu/effects/GrExtractAlphaFragmentProcessor.cpp

Issue 1334273003: Add helper for creating leaf FPs inside GrFP::TestCreate functions (Closed) Base URL: https://skia.googlesource.com/skia.git@noinputtest
Patch Set: address comment Created 5 years, 3 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/GrProcessorUnitTest.cpp ('k') | src/gpu/effects/GrXfermodeFragmentProcessor.cpp » ('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 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 "effects/GrExtractAlphaFragmentProcessor.h" 8 #include "effects/GrExtractAlphaFragmentProcessor.h"
9 #include "gl/GrGLFragmentProcessor.h" 9 #include "gl/GrGLFragmentProcessor.h"
10 #include "gl/builders/GrGLProgramBuilder.h" 10 #include "gl/builders/GrGLProgramBuilder.h"
(...skipping 29 matching lines...) Expand all
40 void GrExtractAlphaFragmentProcessor::onComputeInvariantOutput(GrInvariantOutput * inout) const { 40 void GrExtractAlphaFragmentProcessor::onComputeInvariantOutput(GrInvariantOutput * inout) const {
41 if (inout->validFlags() & kA_GrColorComponentFlag) { 41 if (inout->validFlags() & kA_GrColorComponentFlag) {
42 GrColor color = GrColorPackA4(GrColorUnpackA(inout->color())); 42 GrColor color = GrColorPackA4(GrColorUnpackA(inout->color()));
43 inout->setToOther(kRGBA_GrColorComponentFlags, color, 43 inout->setToOther(kRGBA_GrColorComponentFlags, color,
44 GrInvariantOutput::kWill_ReadInput); 44 GrInvariantOutput::kWill_ReadInput);
45 } else { 45 } else {
46 inout->setToUnknown(GrInvariantOutput::kWill_ReadInput); 46 inout->setToUnknown(GrInvariantOutput::kWill_ReadInput);
47 } 47 }
48 this->childProcessor(0).computeInvariantOutput(inout); 48 this->childProcessor(0).computeInvariantOutput(inout);
49 } 49 }
50
51 GR_DEFINE_FRAGMENT_PROCESSOR_TEST(GrExtractAlphaFragmentProcessor);
52
53 const GrFragmentProcessor* GrExtractAlphaFragmentProcessor::TestCreate(GrProcess orTestData* d) {
54 SkAutoTUnref<const GrFragmentProcessor> child(GrProcessorUnitTest::CreateChi ldFP(d));
55 return SkNEW_ARGS(GrExtractAlphaFragmentProcessor, (child));
56 }
OLDNEW
« no previous file with comments | « src/gpu/GrProcessorUnitTest.cpp ('k') | src/gpu/effects/GrXfermodeFragmentProcessor.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698