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

Side by Side Diff: src/effects/SkLumaColorFilter.cpp

Issue 1334293003: Create fragment processor for performing input color blend with child processor (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: fix 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/effects/SkColorMatrixFilter.cpp ('k') | src/effects/SkTableColorFilter.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 2013 Google Inc. 2 * Copyright 2013 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 "SkLumaColorFilter.h" 8 #include "SkLumaColorFilter.h"
9 9
10 #include "SkColorPriv.h" 10 #include "SkColorPriv.h"
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 bool onIsEqual(const GrFragmentProcessor&) const override { return true; } 102 bool onIsEqual(const GrFragmentProcessor&) const override { return true; }
103 103
104 void onComputeInvariantOutput(GrInvariantOutput* inout) const override { 104 void onComputeInvariantOutput(GrInvariantOutput* inout) const override {
105 // The output is always black. The alpha value for the color passed in i s arbitrary. 105 // The output is always black. The alpha value for the color passed in i s arbitrary.
106 inout->setToOther(kRGB_GrColorComponentFlags, GrColorPackRGBA(0, 0, 0, 0 ), 106 inout->setToOther(kRGB_GrColorComponentFlags, GrColorPackRGBA(0, 0, 0, 0 ),
107 GrInvariantOutput::kWill_ReadInput); 107 GrInvariantOutput::kWill_ReadInput);
108 } 108 }
109 }; 109 };
110 110
111 bool SkLumaColorFilter::asFragmentProcessors(GrContext*, GrProcessorDataManager* , 111 bool SkLumaColorFilter::asFragmentProcessors(GrContext*, GrProcessorDataManager* ,
112 SkTDArray<GrFragmentProcessor*>* ar ray) const { 112 SkTDArray<const GrFragmentProcessor *>* array) const {
113 113
114 GrFragmentProcessor* frag = LumaColorFilterEffect::Create(); 114 GrFragmentProcessor* frag = LumaColorFilterEffect::Create();
115 if (frag) { 115 if (frag) {
116 if (array) { 116 if (array) {
117 *array->append() = frag; 117 *array->append() = frag;
118 } else { 118 } else {
119 frag->unref(); 119 frag->unref();
120 SkDEBUGCODE(frag = nullptr;) 120 SkDEBUGCODE(frag = nullptr;)
121 } 121 }
122 return true; 122 return true;
123 } 123 }
124 return false; 124 return false;
125 } 125 }
126 #endif 126 #endif
OLDNEW
« no previous file with comments | « src/effects/SkColorMatrixFilter.cpp ('k') | src/effects/SkTableColorFilter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698