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

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

Issue 395813002: Resolve light-source position/direction when updated (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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
« no previous file with comments | « Source/core/svg/SVGFESpotLightElement.cpp ('k') | Source/platform/graphics/filters/PointLightSource.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/graphics/filters/LightSource.h
diff --git a/Source/platform/graphics/filters/LightSource.h b/Source/platform/graphics/filters/LightSource.h
index ecd9271c408136228839852bd4e4cff8bb23c756..b9f198615084354e52cacc03215500d17efa74c4 100644
--- a/Source/platform/graphics/filters/LightSource.h
+++ b/Source/platform/graphics/filters/LightSource.h
@@ -77,12 +77,8 @@ public:
virtual bool setAzimuth(float) { return false; }
virtual bool setElevation(float) { return false; }
- virtual bool setX(float) { return false; }
- virtual bool setY(float) { return false; }
- virtual bool setZ(float) { return false; }
- virtual bool setPointsAtX(float) { return false; }
- virtual bool setPointsAtY(float) { return false; }
- virtual bool setPointsAtZ(float) { return false; }
+ virtual bool setPosition(const FloatPoint3D&) { return false; }
+ virtual bool setPointsAt(const FloatPoint3D&) { return false; }
virtual bool setSpecularExponent(float) { return false; }
virtual bool setLimitingConeAngle(float) { return false; }
« no previous file with comments | « Source/core/svg/SVGFESpotLightElement.cpp ('k') | Source/platform/graphics/filters/PointLightSource.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698