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

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

Issue 654273002: Push isEqual/onIsEqual down from GrProcessor to subclasses. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 2 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 "gl/builders/GrGLProgramBuilder.h" 8 #include "gl/builders/GrGLProgramBuilder.h"
9 #include "GrDitherEffect.h" 9 #include "GrDitherEffect.h"
10 10
(...skipping 22 matching lines...) Expand all
33 virtual const GrBackendFragmentProcessorFactory& getFactory() const SK_OVERR IDE { 33 virtual const GrBackendFragmentProcessorFactory& getFactory() const SK_OVERR IDE {
34 return GrTBackendFragmentProcessorFactory<DitherEffect>::getInstance(); 34 return GrTBackendFragmentProcessorFactory<DitherEffect>::getInstance();
35 } 35 }
36 36
37 private: 37 private:
38 DitherEffect() { 38 DitherEffect() {
39 this->setWillReadFragmentPosition(); 39 this->setWillReadFragmentPosition();
40 } 40 }
41 41
42 // All dither effects are equal 42 // All dither effects are equal
43 virtual bool onIsEqual(const GrProcessor&) const SK_OVERRIDE { return true; } 43 virtual bool onIsEqual(const GrFragmentProcessor&) const SK_OVERRIDE { retur n true; }
44 44
45 virtual void onComputeInvariantOutput(InvariantOutput* inout) const SK_OVERR IDE; 45 virtual void onComputeInvariantOutput(InvariantOutput* inout) const SK_OVERR IDE;
46 46
47 GR_DECLARE_FRAGMENT_PROCESSOR_TEST; 47 GR_DECLARE_FRAGMENT_PROCESSOR_TEST;
48 48
49 typedef GrFragmentProcessor INHERITED; 49 typedef GrFragmentProcessor INHERITED;
50 }; 50 };
51 51
52 void DitherEffect::onComputeInvariantOutput(InvariantOutput* inout) const { 52 void DitherEffect::onComputeInvariantOutput(InvariantOutput* inout) const {
53 inout->setToUnknown(); 53 inout->setToUnknown();
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 fsBuilder->codeAppendf("\t\tfloat r = " 107 fsBuilder->codeAppendf("\t\tfloat r = "
108 "fract(sin(dot(%s.xy ,vec2(12.9898,78.233))) * 43758. 5453);\n", 108 "fract(sin(dot(%s.xy ,vec2(12.9898,78.233))) * 43758. 5453);\n",
109 fsBuilder->fragmentPosition()); 109 fsBuilder->fragmentPosition());
110 fsBuilder->codeAppendf("\t\t%s = (1.0/255.0) * vec4(r, r, r, r) + %s;\n", 110 fsBuilder->codeAppendf("\t\t%s = (1.0/255.0) * vec4(r, r, r, r) + %s;\n",
111 outputColor, GrGLSLExpr4(inputColor).c_str()); 111 outputColor, GrGLSLExpr4(inputColor).c_str());
112 } 112 }
113 113
114 ////////////////////////////////////////////////////////////////////////////// 114 //////////////////////////////////////////////////////////////////////////////
115 115
116 GrFragmentProcessor* GrDitherEffect::Create() { return DitherEffect::Create(); } 116 GrFragmentProcessor* GrDitherEffect::Create() { return DitherEffect::Create(); }
OLDNEW
« no previous file with comments | « src/gpu/effects/GrDistanceFieldTextureEffect.cpp ('k') | src/gpu/effects/GrMatrixConvolutionEffect.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698