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

Unified Diff: Source/platform/graphics/filters/FEDiffuseLighting.h

Issue 1354923003: Remove kernelUnitLength plumbing (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: More TEs 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 side-by-side diff with in-line comments
Download patch
Index: Source/platform/graphics/filters/FEDiffuseLighting.h
diff --git a/Source/platform/graphics/filters/FEDiffuseLighting.h b/Source/platform/graphics/filters/FEDiffuseLighting.h
index 0155b755d5bbd967f76938fcf2149ee3f70095b3..41100d918bd64ae4106e48bc62b6bb01ccff326d 100644
--- a/Source/platform/graphics/filters/FEDiffuseLighting.h
+++ b/Source/platform/graphics/filters/FEDiffuseLighting.h
@@ -32,7 +32,7 @@ class LightSource;
class PLATFORM_EXPORT FEDiffuseLighting : public FELighting {
public:
static PassRefPtrWillBeRawPtr<FEDiffuseLighting> create(Filter*, const Color&, float, float,
- float, float, PassRefPtr<LightSource>);
+ PassRefPtr<LightSource>);
~FEDiffuseLighting() override;
Color lightingColor() const;
@@ -44,19 +44,13 @@ public:
float diffuseConstant() const;
bool setDiffuseConstant(float);
- float kernelUnitLengthX() const;
- bool setKernelUnitLengthX(float);
-
- float kernelUnitLengthY() const;
- bool setKernelUnitLengthY(float);
-
const LightSource* lightSource() const;
void setLightSource(PassRefPtr<LightSource>);
TextStream& externalRepresentation(TextStream&, int indention) const override;
private:
- FEDiffuseLighting(Filter*, const Color&, float, float, float, float, PassRefPtr<LightSource>);
+ FEDiffuseLighting(Filter*, const Color&, float, float, PassRefPtr<LightSource>);
};
} // namespace blink
« no previous file with comments | « Source/platform/graphics/filters/FEConvolveMatrix.cpp ('k') | Source/platform/graphics/filters/FEDiffuseLighting.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698