From 5e2bc6953fe6923165b8a5d7679939693a1d58d6 Mon Sep 17 00:00:00 2001 From: Steve Block Date: Fri, 5 Feb 2010 14:27:46 +0000 Subject: Merge webkit.org at r54340 : Initial merge by git Change-Id: Ib489d2ff91186ea3652522e1d586e54416a2cf44 --- WebCore/platform/graphics/wx/GraphicsContextWx.cpp | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'WebCore/platform/graphics/wx/GraphicsContextWx.cpp') diff --git a/WebCore/platform/graphics/wx/GraphicsContextWx.cpp b/WebCore/platform/graphics/wx/GraphicsContextWx.cpp index 839bc59..e35334e 100644 --- a/WebCore/platform/graphics/wx/GraphicsContextWx.cpp +++ b/WebCore/platform/graphics/wx/GraphicsContextWx.cpp @@ -26,6 +26,7 @@ #include "config.h" #include "GraphicsContext.h" +#include "AffineTransform.h" #include "TransformationMatrix.h" #include "FloatRect.h" #include "Font.h" @@ -359,6 +360,12 @@ void GraphicsContext::clipToImageBuffer(const FloatRect&, const ImageBuffer*) notImplemented(); } +AffineTransform GraphicsContext::getAffineCTM() const +{ + notImplemented(); + return AffineTransform(); +} + TransformationMatrix GraphicsContext::getCTM() const { notImplemented(); @@ -471,6 +478,15 @@ void GraphicsContext::setPlatformFillColor(const Color& color, ColorSpace colorS m_data->context->SetBrush(wxBrush(color)); } +void GraphicsContext::concatCTM(const AffineTransform& transform) +{ + if (paintingDisabled()) + return; + + notImplemented(); + return; +} + void GraphicsContext::concatCTM(const TransformationMatrix& transform) { if (paintingDisabled()) -- cgit v1.1