Index: sky/engine/platform/graphics/Color.h |
diff --git a/sky/engine/platform/graphics/Color.h b/sky/engine/platform/graphics/Color.h |
index 9fdffac7fef8c4d5dbef8b8ca482b37b5c0a5d96..8145ad9bc332fb1edf7784198f1d21e41b2f781a 100644 |
--- a/sky/engine/platform/graphics/Color.h |
+++ b/sky/engine/platform/graphics/Color.h |
@@ -45,8 +45,6 @@ PLATFORM_EXPORT RGBA32 makeRGBA32FromFloats(float r, float g, float b, float a); |
PLATFORM_EXPORT RGBA32 makeRGBAFromHSLA(double h, double s, double l, double a); |
PLATFORM_EXPORT RGBA32 makeRGBAFromCMYKA(float c, float m, float y, float k, float a); |
-PLATFORM_EXPORT int differenceSquared(const Color&, const Color&); |
- |
inline int redChannel(RGBA32 color) { return (color >> 16) & 0xFF; } |
inline int greenChannel(RGBA32 color) { return (color >> 8) & 0xFF; } |
inline int blueChannel(RGBA32 color) { return color & 0xFF; } |