summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteve Block <steveblock@google.com>2010-07-08 15:07:02 +0100
committerSteve Block <steveblock@google.com>2010-07-09 15:33:40 +0100
commit92ce648f1d71373c7b14734aabd6db25de280f85 (patch)
treec062c49e8ae85e8135b0652a3dc977ffd62642e7
parent9130a2f8733ef12edb2608a84469ddc461bed1f6 (diff)
downloadexternal_webkit-92ce648f1d71373c7b14734aabd6db25de280f85.zip
external_webkit-92ce648f1d71373c7b14734aabd6db25de280f85.tar.gz
external_webkit-92ce648f1d71373c7b14734aabd6db25de280f85.tar.bz2
Merge WebKit at r62496: Stub out new GraphicsContext::clipConvexPolygon()
See http://trac.webkit.org/changeset/62035 Change-Id: Iaa2c76ac96d7dd95a6203b969679759dd1b306a3
-rw-r--r--WebCore/platform/graphics/android/GraphicsContextAndroid.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/WebCore/platform/graphics/android/GraphicsContextAndroid.cpp b/WebCore/platform/graphics/android/GraphicsContextAndroid.cpp
index 408f4e7..7c1f107 100644
--- a/WebCore/platform/graphics/android/GraphicsContextAndroid.cpp
+++ b/WebCore/platform/graphics/android/GraphicsContextAndroid.cpp
@@ -1173,6 +1173,17 @@ void GraphicsContext::setImageInterpolationQuality(InterpolationQuality mode)
*/
}
+void GraphicsContext::clipConvexPolygon(size_t numPoints, const FloatPoint*)
+{
+ if (paintingDisabled())
+ return;
+
+ if (numPoints <= 1)
+ return;
+
+ // FIXME: IMPLEMENT!
+}
+
} // namespace WebCore
///////////////////////////////////////////////////////////////////////////////