summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/platform/graphics/transforms/AffineTransform.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/platform/graphics/transforms/AffineTransform.h')
-rw-r--r--Source/WebCore/platform/graphics/transforms/AffineTransform.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/WebCore/platform/graphics/transforms/AffineTransform.h b/Source/WebCore/platform/graphics/transforms/AffineTransform.h
index 14431aa..176c41e 100644
--- a/Source/WebCore/platform/graphics/transforms/AffineTransform.h
+++ b/Source/WebCore/platform/graphics/transforms/AffineTransform.h
@@ -32,9 +32,9 @@
#include <string.h> // for memcpy
#include <wtf/FastAllocBase.h>
-#if PLATFORM(CG)
+#if USE(CG)
#include <CoreGraphics/CGAffineTransform.h>
-#elif PLATFORM(CAIRO)
+#elif USE(CAIRO)
#include <cairo.h>
#elif PLATFORM(OPENVG)
#include "VGUtils.h"
@@ -157,9 +157,9 @@ public:
return result;
}
-#if PLATFORM(CG)
+#if USE(CG)
operator CGAffineTransform() const;
-#elif PLATFORM(CAIRO)
+#elif USE(CAIRO)
operator cairo_matrix_t() const;
#elif PLATFORM(OPENVG)
operator VGMatrix() const;