summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/platform/graphics/transforms
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/platform/graphics/transforms')
-rw-r--r--Source/WebCore/platform/graphics/transforms/AffineTransform.h4
-rw-r--r--Source/WebCore/platform/graphics/transforms/TransformationMatrix.h8
2 files changed, 6 insertions, 6 deletions
diff --git a/Source/WebCore/platform/graphics/transforms/AffineTransform.h b/Source/WebCore/platform/graphics/transforms/AffineTransform.h
index 3e3995f..14431aa 100644
--- a/Source/WebCore/platform/graphics/transforms/AffineTransform.h
+++ b/Source/WebCore/platform/graphics/transforms/AffineTransform.h
@@ -40,7 +40,7 @@
#include "VGUtils.h"
#elif PLATFORM(QT)
#include <QTransform>
-#elif PLATFORM(SKIA)
+#elif USE(SKIA)
#include <SkMatrix.h>
#elif PLATFORM(WX) && USE(WXGC)
#include <wx/graphics.h>
@@ -165,7 +165,7 @@ public:
operator VGMatrix() const;
#elif PLATFORM(QT)
operator QTransform() const;
-#elif PLATFORM(SKIA)
+#elif USE(SKIA)
operator SkMatrix() const;
#elif PLATFORM(WX) && USE(WXGC)
operator wxGraphicsMatrix() const;
diff --git a/Source/WebCore/platform/graphics/transforms/TransformationMatrix.h b/Source/WebCore/platform/graphics/transforms/TransformationMatrix.h
index fa27c0e..adda46b 100644
--- a/Source/WebCore/platform/graphics/transforms/TransformationMatrix.h
+++ b/Source/WebCore/platform/graphics/transforms/TransformationMatrix.h
@@ -32,17 +32,17 @@
#include <wtf/FastAllocBase.h>
#if PLATFORM(CA)
-#include <QuartzCore/CATransform3D.h>
+typedef struct CATransform3D CATransform3D;
#endif
#if PLATFORM(CG)
-#include <CoreGraphics/CGAffineTransform.h>
+typedef struct CGAffineTransform CGAffineTransform;
#elif PLATFORM(CAIRO)
#include <cairo.h>
#elif PLATFORM(OPENVG)
#include "VGUtils.h"
#elif PLATFORM(QT)
#include <QTransform>
-#elif PLATFORM(SKIA)
+#elif USE(SKIA)
#include <SkMatrix.h>
#elif PLATFORM(WX) && USE(WXGC)
#include <wx/graphics.h>
@@ -321,7 +321,7 @@ public:
operator VGMatrix() const;
#elif PLATFORM(QT)
operator QTransform() const;
-#elif PLATFORM(SKIA)
+#elif USE(SKIA)
operator SkMatrix() const;
#elif PLATFORM(WX) && USE(WXGC)
operator wxGraphicsMatrix() const;