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 "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 Loading... |
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 } |
OLD | NEW |