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

Unified Diff: include/effects/SkPoint3.h

Issue 1269383003: Remove SK_LEGACY_SKPOINT3_CTORS flag (Closed) Base URL: https://chromium.googlesource.com/skia.git@master
Patch Set: Created 5 years, 4 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 | « include/effects/SkLightingImageFilter.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: include/effects/SkPoint3.h
diff --git a/include/effects/SkPoint3.h b/include/effects/SkPoint3.h
index c086931c08feb8fe698a8aea876e9f24553f3e65..f31f8207ab94aa8d02453cc36f8b09a57e467510 100644
--- a/include/effects/SkPoint3.h
+++ b/include/effects/SkPoint3.h
@@ -13,12 +13,6 @@
struct SK_API SkPoint3 {
SkScalar fX, fY, fZ;
-#ifdef SK_LEGACY_SKPOINT3_CTORS
- // TODO: remove these - they are needed for Chromium staging
- SkPoint3() {}
- SkPoint3(SkScalar x, SkScalar y, SkScalar z) : fX(x), fY(y), fZ(z) {}
-#endif
-
static SkPoint3 Make(SkScalar x, SkScalar y, SkScalar z) {
SkPoint3 pt;
pt.set(x, y, z);
« no previous file with comments | « include/effects/SkLightingImageFilter.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698