Index: Source/platform/graphics/filters/FELighting.cpp |
diff --git a/Source/platform/graphics/filters/FELighting.cpp b/Source/platform/graphics/filters/FELighting.cpp |
index 4301e3a108e988b056b1ca88936d8b24459f00cc..6204756561597a72ea4424d998ba024b26666242 100644 |
--- a/Source/platform/graphics/filters/FELighting.cpp |
+++ b/Source/platform/graphics/filters/FELighting.cpp |
@@ -39,7 +39,7 @@ namespace blink { |
FELighting::FELighting(Filter* filter, LightingType lightingType, const Color& lightingColor, float surfaceScale, |
float diffuseConstant, float specularConstant, float specularExponent, |
- float kernelUnitLengthX, float kernelUnitLengthY, PassRefPtr<LightSource> lightSource) |
+ PassRefPtr<LightSource> lightSource) |
: FilterEffect(filter) |
, m_lightingType(lightingType) |
, m_lightSource(lightSource) |
@@ -48,8 +48,6 @@ FELighting::FELighting(Filter* filter, LightingType lightingType, const Color& l |
, m_diffuseConstant(std::max(diffuseConstant, 0.0f)) |
, m_specularConstant(std::max(specularConstant, 0.0f)) |
, m_specularExponent(std::min(std::max(specularExponent, 1.0f), 128.0f)) |
- , m_kernelUnitLengthX(kernelUnitLengthX) |
- , m_kernelUnitLengthY(kernelUnitLengthY) |
{ |
} |