Home | History | Annotate | Download | only in openvg

Lines Matching refs:GraphicsContext

21 #include "GraphicsContext.h"
51 void GraphicsContext::platformInit(SurfaceOpenVG* surface)
57 void GraphicsContext::platformDestroy()
62 PlatformGraphicsContext* GraphicsContext::platformContext() const
70 AffineTransform GraphicsContext::getCTM() const
78 void GraphicsContext::savePlatformState()
86 void GraphicsContext::restorePlatformState()
94 void GraphicsContext::drawRect(const IntRect& rect)
102 void GraphicsContext::drawLine(const IntPoint& from, const IntPoint& to)
113 void GraphicsContext::drawEllipse(const IntRect& rect)
121 void GraphicsContext::strokeArc(const IntRect& rect, int startAngle, int angleSpan)
129 void GraphicsContext::drawConvexPolygon(size_t numPoints, const FloatPoint* points, bool shouldAntialias)
139 void GraphicsContext::fillPath(const Path& path)
147 void GraphicsContext::strokePath(const Path& path)
155 void GraphicsContext::fillRect(const FloatRect& rect)
163 void GraphicsContext::fillRect(const FloatRect& rect, const Color& color, ColorSpace colorSpace)
176 void GraphicsContext::fillRoundedRect(const IntRect& rect, const IntSize& topLeft, const IntSize& topRight, const IntSize& bottomLeft, const IntSize& bottomRight, const Color& color, ColorSpace colorSpace)
189 void GraphicsContext::clip(const FloatRect& rect)
197 void GraphicsContext::clipPath(const Path& path, WindRule clipRule)
205 void GraphicsContext::drawFocusRing(const Vector<IntRect>& rects, int width, int offset, const Color& color)
233 void GraphicsContext::drawLineForText(const IntPoint& origin, int width, bool printing)
249 void GraphicsContext::drawLineForTextChecking(const IntPoint& origin, int width, TextCheckingLineStyle style)
260 FloatRect GraphicsContext::roundToDevicePixels(const FloatRect& rect, RoundingMode)
268 void GraphicsContext::setPlatformShadow(const FloatSize& size, float blur, const Color& color, ColorSpace colorSpace)
280 void GraphicsContext::clearPlatformShadow()
288 void GraphicsContext::beginTransparencyLayer(float opacity)
297 void GraphicsContext::endTransparencyLayer()
305 void GraphicsContext::clearRect(const FloatRect& rect)
316 void GraphicsContext::strokeRect(const FloatRect& rect, float lineWidth)
327 void GraphicsContext::setLineCap(LineCap lc)
335 void GraphicsContext::setLineDash(const DashArray& dashes, float dashOffset)
343 void GraphicsContext::setLineJoin(LineJoin lj)
351 void GraphicsContext::setMiterLimit(float limit)
359 void GraphicsContext::setAlpha(float opacity)
367 void GraphicsContext::setPlatformCompositeOperation(CompositeOperator op)
375 void GraphicsContext::clip(const Path& path)
383 void GraphicsContext::canvasClip(const Path& path)
388 void GraphicsContext::clipOut(const Path& path)
396 void GraphicsContext::scale(const FloatSize& scaleFactors)
404 void GraphicsContext::rotate(float radians)
412 void GraphicsContext::translate(float dx, float dy)
420 void GraphicsContext::clipOut(const IntRect& rect)
430 void GraphicsContext::clipToImageBuffer(const FloatRect& rect, const ImageBuffer* imageBuffer)
440 void GraphicsContext::addInnerRoundedRectClip(const IntRect& rect, int thickness)
453 void GraphicsContext::concatCTM(const AffineTransform& transformation)
461 void GraphicsContext::setCTM(const AffineTransform& transformation)
469 void GraphicsContext::setURLForRect(const KURL& link, const IntRect& destRect)
476 void GraphicsContext::setPlatformStrokeColor(const Color& color, ColorSpace colorSpace)
486 void GraphicsContext::setPlatformStrokeStyle(StrokeStyle strokeStyle)
494 void GraphicsContext::setPlatformStrokeThickness(float thickness)
502 void GraphicsContext::setPlatformFillColor(const Color& color, ColorSpace colorSpace)
512 void GraphicsContext::setPlatformShouldAntialias(bool enable)
520 void GraphicsContext::setImageInterpolationQuality(InterpolationQuality)
525 InterpolationQuality GraphicsContext::imageInterpolationQuality() const