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

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

Issue 1313573005: Revert of Change SkShader;asFragmentProcessor signature to no longer take skpaint\grcolor* (Closed) Base URL: https://skia.googlesource.com/skia.git@things
Patch Set: 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
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 "GrDitherEffect.h" 8 #include "GrDitherEffect.h"
9 #include "GrFragmentProcessor.h" 9 #include "GrFragmentProcessor.h"
10 #include "GrInvariantOutput.h" 10 #include "GrInvariantOutput.h"
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 }; 46 };
47 47
48 void DitherEffect::onComputeInvariantOutput(GrInvariantOutput* inout) const { 48 void DitherEffect::onComputeInvariantOutput(GrInvariantOutput* inout) const {
49 inout->setToUnknown(GrInvariantOutput::kWill_ReadInput); 49 inout->setToUnknown(GrInvariantOutput::kWill_ReadInput);
50 } 50 }
51 51
52 ////////////////////////////////////////////////////////////////////////////// 52 //////////////////////////////////////////////////////////////////////////////
53 53
54 GR_DEFINE_FRAGMENT_PROCESSOR_TEST(DitherEffect); 54 GR_DEFINE_FRAGMENT_PROCESSOR_TEST(DitherEffect);
55 55
56 const GrFragmentProcessor* DitherEffect::TestCreate(GrProcessorTestData*) { 56 GrFragmentProcessor* DitherEffect::TestCreate(GrProcessorTestData*) {
57 return DitherEffect::Create(); 57 return DitherEffect::Create();
58 } 58 }
59 59
60 ////////////////////////////////////////////////////////////////////////////// 60 //////////////////////////////////////////////////////////////////////////////
61 61
62 class GLDitherEffect : public GrGLFragmentProcessor { 62 class GLDitherEffect : public GrGLFragmentProcessor {
63 public: 63 public:
64 GLDitherEffect(const GrProcessor&); 64 GLDitherEffect(const GrProcessor&);
65 65
66 virtual void emitCode(EmitArgs& args) override; 66 virtual void emitCode(EmitArgs& args) override;
(...skipping 28 matching lines...) Expand all
95 void DitherEffect::onGetGLProcessorKey(const GrGLSLCaps& caps, 95 void DitherEffect::onGetGLProcessorKey(const GrGLSLCaps& caps,
96 GrProcessorKeyBuilder* b) const { 96 GrProcessorKeyBuilder* b) const {
97 GLDitherEffect::GenKey(*this, caps, b); 97 GLDitherEffect::GenKey(*this, caps, b);
98 } 98 }
99 99
100 GrGLFragmentProcessor* DitherEffect::onCreateGLInstance() const { 100 GrGLFragmentProcessor* DitherEffect::onCreateGLInstance() const {
101 return new GLDitherEffect(*this); 101 return new GLDitherEffect(*this);
102 } 102 }
103 103
104 GrFragmentProcessor* GrDitherEffect::Create() { return DitherEffect::Create(); } 104 GrFragmentProcessor* GrDitherEffect::Create() { return DitherEffect::Create(); }
OLDNEW
« no previous file with comments | « src/gpu/effects/GrDistanceFieldGeoProc.cpp ('k') | src/gpu/effects/GrExtractAlphaFragmentProcessor.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698