| /* |
| * Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. |
| * Copyright (C) 2007 Trolltech ASA |
| * Copyright (C) 2007 Alp Toker <alp@atoker.com> |
| * |
| * Redistribution and use in source and binary forms, with or without |
| * modification, are permitted provided that the following conditions |
| * are met: |
| * 1. Redistributions of source code must retain the above copyright |
| * notice, this list of conditions and the following disclaimer. |
| * 2. Redistributions in binary form must reproduce the above copyright |
| * notice, this list of conditions and the following disclaimer in the |
| * documentation and/or other materials provided with the distribution. |
| * |
| * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY |
| * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR |
| * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, |
| * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
| * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
| * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY |
| * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| */ |
| |
| #include "config.h" |
| #include "CanvasRenderingContext2D.h" |
| |
| #include "AffineTransform.h" |
| #include "CSSParser.h" |
| #include "CachedImage.h" |
| #include "CanvasGradient.h" |
| #include "CanvasPattern.h" |
| #include "CanvasPixelArray.h" |
| #include "CanvasStyle.h" |
| #include "Document.h" |
| #include "ExceptionCode.h" |
| #include "FloatConversion.h" |
| #include "Frame.h" |
| #include "GraphicsContext.h" |
| #include "HTMLCanvasElement.h" |
| #include "HTMLImageElement.h" |
| #include "HTMLNames.h" |
| #include "ImageBuffer.h" |
| #include "ImageData.h" |
| #include "KURL.h" |
| #include "NotImplemented.h" |
| #include "Page.h" |
| #include "RenderHTMLCanvas.h" |
| #include "SecurityOrigin.h" |
| #include "Settings.h" |
| #include <kjs/interpreter.h> |
| #include <stdio.h> |
| #include <wtf/MathExtras.h> |
| |
| #if PLATFORM(QT) |
| #include <QPainter> |
| #include <QPixmap> |
| #include <QPainterPath> |
| #elif PLATFORM(CAIRO) |
| #include "CairoPath.h" |
| #include <cairo.h> |
| #endif |
| |
| namespace WebCore { |
| |
| using namespace HTMLNames; |
| |
| CanvasRenderingContext2D::CanvasRenderingContext2D(HTMLCanvasElement* canvas) |
| : m_canvas(canvas) |
| , m_stateStack(1) |
| { |
| } |
| |
| void CanvasRenderingContext2D::ref() |
| { |
| m_canvas->ref(); |
| } |
| |
| void CanvasRenderingContext2D::deref() |
| { |
| m_canvas->deref(); |
| } |
| |
| void CanvasRenderingContext2D::reset() |
| { |
| m_stateStack.resize(1); |
| m_stateStack.first() = State(); |
| } |
| |
| CanvasRenderingContext2D::State::State() |
| : m_strokeStyle(CanvasStyle::create("black")) |
| , m_fillStyle(CanvasStyle::create("black")) |
| , m_lineWidth(1) |
| , m_lineCap(ButtCap) |
| , m_lineJoin(MiterJoin) |
| , m_miterLimit(10) |
| , m_shadowBlur(0) |
| , m_shadowColor("black") |
| , m_globalAlpha(1) |
| , m_globalComposite(CompositeSourceOver) |
| , m_appliedStrokePattern(false) |
| , m_appliedFillPattern(false) |
| { |
| } |
| |
| void CanvasRenderingContext2D::save() |
| { |
| ASSERT(m_stateStack.size() >= 1); |
| m_stateStack.append(state()); |
| GraphicsContext* c = drawingContext(); |
| if (!c) |
| return; |
| c->save(); |
| } |
| |
| void CanvasRenderingContext2D::restore() |
| { |
| ASSERT(m_stateStack.size() >= 1); |
| if (m_stateStack.size() <= 1) |
| return; |
| m_path.transform(state().m_transform); |
| m_stateStack.removeLast(); |
| m_path.transform(state().m_transform.inverse()); |
| GraphicsContext* c = drawingContext(); |
| if (!c) |
| return; |
| c->restore(); |
| } |
| |
| CanvasStyle* CanvasRenderingContext2D::strokeStyle() const |
| { |
| return state().m_strokeStyle.get(); |
| } |
| |
| void CanvasRenderingContext2D::setStrokeStyle(PassRefPtr<CanvasStyle> style) |
| { |
| if (!style) |
| return; |
| |
| if (m_canvas->originClean()) { |
| if (CanvasPattern* pattern = style->pattern()) { |
| if (!pattern->originClean()) |
| m_canvas->setOriginTainted(); |
| } |
| } |
| |
| state().m_strokeStyle = style; |
| GraphicsContext* c = drawingContext(); |
| if (!c) |
| return; |
| state().m_strokeStyle->applyStrokeColor(c); |
| state().m_appliedStrokePattern = false; |
| } |
| |
| CanvasStyle* CanvasRenderingContext2D::fillStyle() const |
| { |
| return state().m_fillStyle.get(); |
| } |
| |
| void CanvasRenderingContext2D::setFillStyle(PassRefPtr<CanvasStyle> style) |
| { |
| if (!style) |
| return; |
| |
| if (m_canvas->originClean()) { |
| if (CanvasPattern* pattern = style->pattern()) { |
| if (!pattern->originClean()) |
| m_canvas->setOriginTainted(); |
| } |
| } |
| |
| state().m_fillStyle = style; |
| GraphicsContext* c = drawingContext(); |
| if (!c) |
| return; |
| state().m_fillStyle->applyFillColor(c); |
| state().m_appliedFillPattern = false; |
| } |
| |
| float CanvasRenderingContext2D::lineWidth() const |
| { |
| return state().m_lineWidth; |
| } |
| |
| void CanvasRenderingContext2D::setLineWidth(float width) |
| { |
| if (!(width > 0)) |
| return; |
| state().m_lineWidth = width; |
| GraphicsContext* c = drawingContext(); |
| if (!c) |
| return; |
| c->setStrokeThickness(width); |
| } |
| |
| String CanvasRenderingContext2D::lineCap() const |
| { |
| return lineCapName(state().m_lineCap); |
| } |
| |
| void CanvasRenderingContext2D::setLineCap(const String& s) |
| { |
| LineCap cap; |
| if (!parseLineCap(s, cap)) |
| return; |
| state().m_lineCap = cap; |
| GraphicsContext* c = drawingContext(); |
| if (!c) |
| return; |
| c->setLineCap(cap); |
| } |
| |
| String CanvasRenderingContext2D::lineJoin() const |
| { |
| return lineJoinName(state().m_lineJoin); |
| } |
| |
| void CanvasRenderingContext2D::setLineJoin(const String& s) |
| { |
| LineJoin join; |
| if (!parseLineJoin(s, join)) |
| return; |
| state().m_lineJoin = join; |
| GraphicsContext* c = drawingContext(); |
| if (!c) |
| return; |
| c->setLineJoin(join); |
| } |
| |
| float CanvasRenderingContext2D::miterLimit() const |
| { |
| return state().m_miterLimit; |
| } |
| |
| void CanvasRenderingContext2D::setMiterLimit(float limit) |
| { |
| if (!(limit > 0)) |
| return; |
| state().m_miterLimit = limit; |
| GraphicsContext* c = drawingContext(); |
| if (!c) |
| return; |
| c->setMiterLimit(limit); |
| } |
| |
| float CanvasRenderingContext2D::shadowOffsetX() const |
| { |
| return state().m_shadowOffset.width(); |
| } |
| |
| void CanvasRenderingContext2D::setShadowOffsetX(float x) |
| { |
| state().m_shadowOffset.setWidth(x); |
| applyShadow(); |
| } |
| |
| float CanvasRenderingContext2D::shadowOffsetY() const |
| { |
| return state().m_shadowOffset.height(); |
| } |
| |
| void CanvasRenderingContext2D::setShadowOffsetY(float y) |
| { |
| state().m_shadowOffset.setHeight(y); |
| applyShadow(); |
| } |
| |
| float CanvasRenderingContext2D::shadowBlur() const |
| { |
| return state().m_shadowBlur; |
| } |
| |
| void CanvasRenderingContext2D::setShadowBlur(float blur) |
| { |
| state().m_shadowBlur = blur; |
| applyShadow(); |
| } |
| |
| String CanvasRenderingContext2D::shadowColor() const |
| { |
| // FIXME: What should this return if you called setShadow with a non-string color? |
| return state().m_shadowColor; |
| } |
| |
| void CanvasRenderingContext2D::setShadowColor(const String& color) |
| { |
| state().m_shadowColor = color; |
| applyShadow(); |
| } |
| |
| float CanvasRenderingContext2D::globalAlpha() const |
| { |
| return state().m_globalAlpha; |
| } |
| |
| void CanvasRenderingContext2D::setGlobalAlpha(float alpha) |
| { |
| if (!(alpha >= 0 && alpha <= 1)) |
| return; |
| state().m_globalAlpha = alpha; |
| GraphicsContext* c = drawingContext(); |
| if (!c) |
| return; |
| c->setAlpha(alpha); |
| } |
| |
| String CanvasRenderingContext2D::globalCompositeOperation() const |
| { |
| return compositeOperatorName(state().m_globalComposite); |
| } |
| |
| void CanvasRenderingContext2D::setGlobalCompositeOperation(const String& operation) |
| { |
| CompositeOperator op; |
| if (!parseCompositeOperator(operation, op)) |
| return; |
| state().m_globalComposite = op; |
| GraphicsContext* c = drawingContext(); |
| if (!c) |
| return; |
| c->setCompositeOperation(op); |
| } |
| |
| void CanvasRenderingContext2D::scale(float sx, float sy) |
| { |
| GraphicsContext* c = drawingContext(); |
| if (!c) |
| return; |
| c->scale(FloatSize(sx, sy)); |
| state().m_transform.scale(sx, sy); |
| m_path.transform(AffineTransform().scale(1.0/sx, 1.0/sy)); |
| } |
| |
| void CanvasRenderingContext2D::rotate(float angleInRadians) |
| { |
| GraphicsContext* c = drawingContext(); |
| if (!c) |
| return; |
| c->rotate(angleInRadians); |
| state().m_transform.rotate(angleInRadians / piDouble * 180.0); |
| m_path.transform(AffineTransform().rotate(-angleInRadians / piDouble * 180.0)); |
| } |
| |
| void CanvasRenderingContext2D::translate(float tx, float ty) |
| { |
| GraphicsContext* c = drawingContext(); |
| if (!c) |
| return; |
| c->translate(tx, ty); |
| state().m_transform.translate(tx, ty); |
| m_path.transform(AffineTransform().translate(-tx, -ty)); |
| } |
| |
| void CanvasRenderingContext2D::transform(float m11, float m12, float m21, float m22, float dx, float dy) |
| { |
| GraphicsContext* c = drawingContext(); |
| if (!c) |
| return; |
| |
| // HTML5 3.14.11.1 -- ignore any calls that pass non-finite numbers |
| if (!isfinite(m11) | !isfinite(m21) | !isfinite(dx) | |
| !isfinite(m12) | !isfinite(m22) | !isfinite(dy)) |
| return; |
| AffineTransform transform(m11, m12, m21, m22, dx, dy); |
| c->concatCTM(transform); |
| state().m_transform.multiply(transform); |
| m_path.transform(transform.inverse()); |
| } |
| |
| void CanvasRenderingContext2D::setStrokeColor(const String& color) |
| { |
| setStrokeStyle(CanvasStyle::create(color)); |
| } |
| |
| void CanvasRenderingContext2D::setStrokeColor(float grayLevel) |
| { |
| setStrokeStyle(CanvasStyle::create(grayLevel, 1)); |
| } |
| |
| void CanvasRenderingContext2D::setStrokeColor(const String& color, float alpha) |
| { |
| setStrokeStyle(CanvasStyle::create(color, alpha)); |
| } |
| |
| void CanvasRenderingContext2D::setStrokeColor(float grayLevel, float alpha) |
| { |
| setStrokeStyle(CanvasStyle::create(grayLevel, alpha)); |
| } |
| |
| void CanvasRenderingContext2D::setStrokeColor(float r, float g, float b, float a) |
| { |
| setStrokeStyle(CanvasStyle::create(r, g, b, a)); |
| } |
| |
| void CanvasRenderingContext2D::setStrokeColor(float c, float m, float y, float k, float a) |
| { |
| setStrokeStyle(CanvasStyle::create(c, m, y, k, a)); |
| } |
| |
| void CanvasRenderingContext2D::setFillColor(const String& color) |
| { |
| setFillStyle(CanvasStyle::create(color)); |
| } |
| |
| void CanvasRenderingContext2D::setFillColor(float grayLevel) |
| { |
| setFillStyle(CanvasStyle::create(grayLevel, 1)); |
| } |
| |
| void CanvasRenderingContext2D::setFillColor(const String& color, float alpha) |
| { |
| setFillStyle(CanvasStyle::create(color, 1)); |
| } |
| |
| void CanvasRenderingContext2D::setFillColor(float grayLevel, float alpha) |
| { |
| setFillStyle(CanvasStyle::create(grayLevel, alpha)); |
| } |
| |
| void CanvasRenderingContext2D::setFillColor(float r, float g, float b, float a) |
| { |
| setFillStyle(CanvasStyle::create(r, g, b, a)); |
| } |
| |
| void CanvasRenderingContext2D::setFillColor(float c, float m, float y, float k, float a) |
| { |
| setFillStyle(CanvasStyle::create(c, m, y, k, a)); |
| } |
| |
| void CanvasRenderingContext2D::beginPath() |
| { |
| m_path.clear(); |
| } |
| |
| void CanvasRenderingContext2D::closePath() |
| { |
| m_path.closeSubpath(); |
| } |
| |
| void CanvasRenderingContext2D::moveTo(float x, float y) |
| { |
| if (!isfinite(x) | !isfinite(y)) |
| return; |
| m_path.moveTo(FloatPoint(x, y)); |
| } |
| |
| void CanvasRenderingContext2D::lineTo(float x, float y) |
| { |
| if (!isfinite(x) | !isfinite(y)) |
| return; |
| m_path.addLineTo(FloatPoint(x, y)); |
| } |
| |
| void CanvasRenderingContext2D::quadraticCurveTo(float cpx, float cpy, float x, float y) |
| { |
| if (!isfinite(cpx) | !isfinite(cpy) | !isfinite(x) | !isfinite(y)) |
| return; |
| m_path.addQuadCurveTo(FloatPoint(cpx, cpy), FloatPoint(x, y)); |
| } |
| |
| void CanvasRenderingContext2D::bezierCurveTo(float cp1x, float cp1y, float cp2x, float cp2y, float x, float y) |
| { |
| if (!isfinite(cp1x) | !isfinite(cp1y) | !isfinite(cp2x) | !isfinite(cp2y) | !isfinite(x) | !isfinite(y)) |
| return; |
| m_path.addBezierCurveTo(FloatPoint(cp1x, cp1y), FloatPoint(cp2x, cp2y), FloatPoint(x, y)); |
| } |
| |
| void CanvasRenderingContext2D::arcTo(float x0, float y0, float x1, float y1, float r, ExceptionCode& ec) |
| { |
| ec = 0; |
| if (!isfinite(x0) | !isfinite(y0) | !isfinite(x1) | !isfinite(y1) | !isfinite(r)) |
| return; |
| |
| if (r < 0) { |
| ec = INDEX_SIZE_ERR; |
| return; |
| } |
| |
| m_path.addArcTo(FloatPoint(x0, y0), FloatPoint(x1, y1), r); |
| } |
| |
| void CanvasRenderingContext2D::arc(float x, float y, float r, float sa, float ea, bool anticlockwise, ExceptionCode& ec) |
| { |
| ec = 0; |
| if (!isfinite(x) | !isfinite(y) | !isfinite(r) | !isfinite(sa) | !isfinite(ea)) |
| return; |
| |
| if (r < 0) { |
| ec = INDEX_SIZE_ERR; |
| return; |
| } |
| |
| m_path.addArc(FloatPoint(x, y), r, sa, ea, anticlockwise); |
| } |
| |
| static bool validateRectForCanvas(float& x, float& y, float& width, float& height) |
| { |
| if (!isfinite(x) | !isfinite(y) | !isfinite(width) | !isfinite(height)) |
| return false; |
| |
| if (width < 0) { |
| width = -width; |
| x -= width; |
| } |
| |
| if (height < 0) { |
| height = -height; |
| y -= height; |
| } |
| |
| return true; |
| } |
| |
| void CanvasRenderingContext2D::rect(float x, float y, float width, float height) |
| { |
| if (!validateRectForCanvas(x, y, width, height)) |
| return; |
| |
| m_path.addRect(FloatRect(x, y, width, height)); |
| } |
| |
| #if ENABLE(DASHBOARD_SUPPORT) |
| void CanvasRenderingContext2D::clearPathForDashboardBackwardCompatibilityMode() |
| { |
| if (Settings* settings = m_canvas->document()->settings()) |
| if (settings->usesDashboardBackwardCompatibilityMode()) |
| m_path.clear(); |
| } |
| #endif |
| |
| void CanvasRenderingContext2D::fill() |
| { |
| GraphicsContext* c = drawingContext(); |
| if (!c) |
| return; |
| |
| c->beginPath(); |
| c->addPath(m_path); |
| if (!m_path.isEmpty()) |
| willDraw(m_path.boundingRect()); |
| |
| #if PLATFORM(CG) |
| if (state().m_fillStyle->canvasGradient()) { |
| // Shading works on the entire clip region, so convert the current path to a clip. |
| c->save(); |
| CGContextClip(c->platformContext()); |
| CGContextDrawShading(c->platformContext(), state().m_fillStyle->canvasGradient()->gradient().platformGradient()); |
| c->restore(); |
| } else { |
| if (state().m_fillStyle->pattern()) |
| applyFillPattern(); |
| CGContextFillPath(c->platformContext()); |
| } |
| #elif PLATFORM(QT) |
| QPainterPath* path = m_path.platformPath(); |
| QPainter* p = static_cast<QPainter*>(c->platformContext()); |
| if (state().m_fillStyle->canvasGradient()) { |
| p->fillPath(*path, QBrush(*(state().m_fillStyle->canvasGradient()->gradient().platformGradient()))); |
| } else { |
| if (state().m_fillStyle->pattern()) |
| applyFillPattern(); |
| p->fillPath(*path, p->brush()); |
| } |
| #elif PLATFORM(CAIRO) |
| cairo_t* cr = c->platformContext(); |
| cairo_save(cr); |
| |
| if (state().m_fillStyle->canvasGradient()) { |
| cairo_set_source(cr, state().m_fillStyle->canvasGradient()->gradient().platformGradient()); |
| cairo_fill(cr); |
| } else { |
| if (state().m_fillStyle->pattern()) |
| applyFillPattern(); |
| cairo_fill(cr); |
| } |
| cairo_restore(cr); |
| #endif |
| |
| #if ENABLE(DASHBOARD_SUPPORT) |
| clearPathForDashboardBackwardCompatibilityMode(); |
| #endif |
| } |
| |
| void CanvasRenderingContext2D::stroke() |
| { |
| GraphicsContext* c = drawingContext(); |
| if (!c) |
| return; |
| c->beginPath(); |
| c->addPath(m_path); |
| |
| if (!m_path.isEmpty()) { |
| // FIXME: This is insufficient, need to use CGContextReplacePathWithStrokedPath to expand to required bounds |
| float lineWidth = state().m_lineWidth; |
| float inset = lineWidth / 2; |
| FloatRect boundingRect = m_path.boundingRect(); |
| boundingRect.inflate(inset); |
| willDraw(boundingRect); |
| } |
| |
| // FIXME: Do this through platform-independent GraphicsContext API. |
| #if PLATFORM(CG) |
| if (state().m_strokeStyle->canvasGradient()) { |
| // Shading works on the entire clip region, so convert the current path to a clip. |
| c->save(); |
| CGContextReplacePathWithStrokedPath(c->platformContext()); |
| CGContextClip(c->platformContext()); |
| CGContextDrawShading(c->platformContext(), state().m_strokeStyle->canvasGradient()->gradient().platformGradient()); |
| c->restore(); |
| } else { |
| if (state().m_strokeStyle->pattern()) |
| applyStrokePattern(); |
| CGContextStrokePath(c->platformContext()); |
| } |
| #elif PLATFORM(QT) |
| QPainterPath* path = m_path.platformPath(); |
| QPainter* p = static_cast<QPainter*>(c->platformContext()); |
| if (state().m_strokeStyle->canvasGradient()) { |
| p->save(); |
| p->setBrush(*(state().m_strokeStyle->canvasGradient()->gradient().platformGradient())); |
| p->strokePath(*path, p->pen()); |
| p->restore(); |
| } else { |
| if (state().m_strokeStyle->pattern()) |
| applyStrokePattern(); |
| p->strokePath(*path, p->pen()); |
| } |
| #elif PLATFORM(CAIRO) |
| cairo_t* cr = c->platformContext(); |
| cairo_save(cr); |
| if (state().m_strokeStyle->canvasGradient()) { |
| cairo_set_source(cr, state().m_strokeStyle->canvasGradient()->gradient().platformGradient()); |
| c->addPath(m_path); |
| cairo_stroke(cr); |
| } else { |
| if (state().m_strokeStyle->pattern()) |
| applyStrokePattern(); |
| c->addPath(m_path); |
| cairo_stroke(cr); |
| } |
| cairo_restore(cr); |
| #endif |
| |
| #if ENABLE(DASHBOARD_SUPPORT) |
| clearPathForDashboardBackwardCompatibilityMode(); |
| #endif |
| } |
| |
| void CanvasRenderingContext2D::clip() |
| { |
| GraphicsContext* c = drawingContext(); |
| if (!c) |
| return; |
| c->clip(m_path); |
| #if ENABLE(DASHBOARD_SUPPORT) |
| clearPathForDashboardBackwardCompatibilityMode(); |
| #endif |
| } |
| |
| bool CanvasRenderingContext2D::isPointInPath(const float x, const float y) |
| { |
| GraphicsContext* c = drawingContext(); |
| if (!c) |
| return false; |
| FloatPoint point(x, y); |
| // We have to invert the current transform to ensure we correctly handle the |
| // transforms applied to the current path. |
| AffineTransform ctm = state().m_transform; |
| if (!ctm.isInvertible()) |
| return false; |
| FloatPoint transformedPoint = ctm.inverse().mapPoint(point); |
| return m_path.contains(transformedPoint); |
| } |
| |
| void CanvasRenderingContext2D::clearRect(float x, float y, float width, float height) |
| { |
| if (!validateRectForCanvas(x, y, width, height)) |
| return; |
| GraphicsContext* c = drawingContext(); |
| if (!c) |
| return; |
| FloatRect rect(x, y, width, height); |
| willDraw(rect); |
| c->clearRect(rect); |
| } |
| |
| void CanvasRenderingContext2D::fillRect(float x, float y, float width, float height) |
| { |
| if (!validateRectForCanvas(x, y, width, height)) |
| return; |
| |
| GraphicsContext* c = drawingContext(); |
| if (!c) |
| return; |
| |
| FloatRect rect(x, y, width, height); |
| willDraw(rect); |
| |
| // FIXME: Do this through platform-independent GraphicsContext API. |
| #if PLATFORM(CG) |
| if (state().m_fillStyle->canvasGradient()) { |
| // Shading works on the entire clip region, so convert the rect to a clip. |
| c->save(); |
| CGContextClipToRect(c->platformContext(), rect); |
| CGContextDrawShading(c->platformContext(), state().m_fillStyle->canvasGradient()->gradient().platformGradient()); |
| c->restore(); |
| } else { |
| if (state().m_fillStyle->pattern()) |
| applyFillPattern(); |
| CGContextFillRect(c->platformContext(), rect); |
| } |
| #elif PLATFORM(QT) |
| QPainter* p = static_cast<QPainter*>(c->platformContext()); |
| if (state().m_fillStyle->canvasGradient()) { |
| p->fillRect(rect, QBrush(*(state().m_fillStyle->canvasGradient()->gradient().platformGradient()))); |
| } else { |
| if (state().m_fillStyle->pattern()) |
| applyFillPattern(); |
| p->fillRect(rect, p->brush()); |
| } |
| #elif PLATFORM(CAIRO) |
| cairo_t* cr = c->platformContext(); |
| cairo_save(cr); |
| if (state().m_fillStyle->canvasGradient()) { |
| cairo_set_source(cr, state().m_fillStyle->canvasGradient()->gradient().platformGradient()); |
| } else { |
| if (state().m_fillStyle->pattern()) |
| applyFillPattern(); |
| } |
| cairo_rectangle(cr, x, y, width, height); |
| cairo_fill(cr); |
| cairo_restore(cr); |
| #endif |
| } |
| |
| void CanvasRenderingContext2D::strokeRect(float x, float y, float width, float height) |
| { |
| if (!validateRectForCanvas(x, y, width, height)) |
| return; |
| strokeRect(x, y, width, height, state().m_lineWidth); |
| } |
| |
| void CanvasRenderingContext2D::strokeRect(float x, float y, float width, float height, float lineWidth) |
| { |
| if (!validateRectForCanvas(x, y, width, height)) |
| return; |
| |
| if (!(lineWidth >= 0)) |
| return; |
| |
| GraphicsContext* c = drawingContext(); |
| if (!c) |
| return; |
| |
| FloatRect rect(x, y, width, height); |
| |
| FloatRect boundingRect = rect; |
| boundingRect.inflate(lineWidth / 2); |
| willDraw(boundingRect); |
| |
| // FIXME: No support for gradients! |
| if (state().m_strokeStyle->pattern()) |
| applyStrokePattern(); |
| |
| c->strokeRect(rect, lineWidth); |
| } |
| |
| #if PLATFORM(CG) |
| static inline CGSize adjustedShadowSize(CGFloat width, CGFloat height) |
| { |
| // Work around <rdar://problem/5539388> by ensuring that shadow offsets will get truncated |
| // to the desired integer. |
| static const CGFloat extraShadowOffset = narrowPrecisionToCGFloat(1.0 / 128); |
| if (width > 0) |
| width += extraShadowOffset; |
| else if (width < 0) |
| width -= extraShadowOffset; |
| |
| if (height > 0) |
| height += extraShadowOffset; |
| else if (height < 0) |
| height -= extraShadowOffset; |
| |
| return CGSizeMake(width, height); |
| } |
| #endif |
| |
| void CanvasRenderingContext2D::setShadow(float width, float height, float blur) |
| { |
| state().m_shadowOffset = FloatSize(width, height); |
| state().m_shadowBlur = blur; |
| state().m_shadowColor = ""; |
| applyShadow(); |
| } |
| |
| void CanvasRenderingContext2D::setShadow(float width, float height, float blur, const String& color) |
| { |
| state().m_shadowOffset = FloatSize(width, height); |
| state().m_shadowBlur = blur; |
| state().m_shadowColor = color; |
| applyShadow(); |
| } |
| |
| void CanvasRenderingContext2D::setShadow(float width, float height, float blur, float grayLevel) |
| { |
| state().m_shadowOffset = FloatSize(width, height); |
| state().m_shadowBlur = blur; |
| state().m_shadowColor = ""; |
| |
| GraphicsContext* c = drawingContext(); |
| if (!c) |
| return; |
| // FIXME: Do this through platform-independent GraphicsContext API. |
| #if PLATFORM(CG) |
| const CGFloat components[2] = { grayLevel, 1 }; |
| CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceGray(); |
| CGColorRef color = CGColorCreate(colorSpace, components); |
| CGColorSpaceRelease(colorSpace); |
| CGContextSetShadowWithColor(c->platformContext(), adjustedShadowSize(width, -height), blur, color); |
| CGColorRelease(color); |
| #endif |
| } |
| |
| void CanvasRenderingContext2D::setShadow(float width, float height, float blur, const String& color, float alpha) |
| { |
| state().m_shadowOffset = FloatSize(width, height); |
| state().m_shadowBlur = blur; |
| state().m_shadowColor = color; |
| |
| GraphicsContext* c = drawingContext(); |
| if (!c) |
| return; |
| // FIXME: Do this through platform-independent GraphicsContext API. |
| #if PLATFORM(CG) |
| RGBA32 rgba = 0; // default is transparent black |
| CSSParser::parseColor(rgba, color); |
| const CGFloat components[4] = { |
| ((rgba >> 16) & 0xFF) / 255.0f, |
| ((rgba >> 8) & 0xFF) / 255.0f, |
| (rgba & 0xFF) / 255.0f, |
| alpha |
| }; |
| CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceRGB(); |
| CGColorRef shadowColor = CGColorCreate(colorSpace, components); |
| CGColorSpaceRelease(colorSpace); |
| CGContextSetShadowWithColor(c->platformContext(), adjustedShadowSize(width, -height), blur, shadowColor); |
| CGColorRelease(shadowColor); |
| #endif |
| } |
| |
| void CanvasRenderingContext2D::setShadow(float width, float height, float blur, float grayLevel, float alpha) |
| { |
| state().m_shadowOffset = FloatSize(width, height); |
| state().m_shadowBlur = blur; |
| state().m_shadowColor = ""; |
| |
| GraphicsContext* c = drawingContext(); |
| if (!c) |
| return; |
| // FIXME: Do this through platform-independent GraphicsContext API. |
| #if PLATFORM(CG) |
| const CGFloat components[2] = { grayLevel, alpha }; |
| CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceGray(); |
| CGColorRef color = CGColorCreate(colorSpace, components); |
| CGColorSpaceRelease(colorSpace); |
| CGContextSetShadowWithColor(c->platformContext(), adjustedShadowSize(width, -height), blur, color); |
| CGColorRelease(color); |
| #endif |
| } |
| |
| void CanvasRenderingContext2D::setShadow(float width, float height, float blur, float r, float g, float b, float a) |
| { |
| state().m_shadowOffset = FloatSize(width, height); |
| state().m_shadowBlur = blur; |
| state().m_shadowColor = ""; |
| |
| GraphicsContext* c = drawingContext(); |
| if (!c) |
| return; |
| // FIXME: Do this through platform-independent GraphicsContext API. |
| #if PLATFORM(CG) |
| const CGFloat components[4] = { r, g, b, a }; |
| CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceRGB(); |
| CGColorRef shadowColor = CGColorCreate(colorSpace, components); |
| CGColorSpaceRelease(colorSpace); |
| CGContextSetShadowWithColor(c->platformContext(), adjustedShadowSize(width, -height), blur, shadowColor); |
| CGColorRelease(shadowColor); |
| #endif |
| } |
| |
| void CanvasRenderingContext2D::setShadow(float width, float height, float blur, float c, float m, float y, float k, float a) |
| { |
| state().m_shadowOffset = FloatSize(width, height); |
| state().m_shadowBlur = blur; |
| state().m_shadowColor = ""; |
| |
| GraphicsContext* dc = drawingContext(); |
| if (!dc) |
| return; |
| // FIXME: Do this through platform-independent GraphicsContext API. |
| #if PLATFORM(CG) |
| const CGFloat components[5] = { c, m, y, k, a }; |
| CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceCMYK(); |
| CGColorRef shadowColor = CGColorCreate(colorSpace, components); |
| CGColorSpaceRelease(colorSpace); |
| CGContextSetShadowWithColor(dc->platformContext(), adjustedShadowSize(width, -height), blur, shadowColor); |
| CGColorRelease(shadowColor); |
| #endif |
| } |
| |
| void CanvasRenderingContext2D::clearShadow() |
| { |
| state().m_shadowOffset = FloatSize(); |
| state().m_shadowBlur = 0; |
| state().m_shadowColor = ""; |
| applyShadow(); |
| } |
| |
| void CanvasRenderingContext2D::applyShadow() |
| { |
| GraphicsContext* c = drawingContext(); |
| if (!c) |
| return; |
| // FIXME: Do this through platform-independent GraphicsContext API. |
| #if PLATFORM(CG) |
| RGBA32 rgba = 0; // default is transparent black |
| if (!state().m_shadowColor.isEmpty()) |
| CSSParser::parseColor(rgba, state().m_shadowColor); |
| const CGFloat components[4] = { |
| ((rgba >> 16) & 0xFF) / 255.0f, |
| ((rgba >> 8) & 0xFF) / 255.0f, |
| (rgba & 0xFF) / 255.0f, |
| ((rgba >> 24) & 0xFF) / 255.0f |
| }; |
| CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceRGB(); |
| CGColorRef color = CGColorCreate(colorSpace, components); |
| CGColorSpaceRelease(colorSpace); |
| |
| CGContextSetShadowWithColor(c->platformContext(), adjustedShadowSize(state().m_shadowOffset.width(), -state().m_shadowOffset.height()), state().m_shadowBlur, color); |
| CGColorRelease(color); |
| #endif |
| } |
| |
| static IntSize size(HTMLImageElement* image) |
| { |
| if (CachedImage* cachedImage = image->cachedImage()) |
| return cachedImage->imageSize(1.0f); // FIXME: Not sure about this. |
| return IntSize(); |
| } |
| |
| void CanvasRenderingContext2D::drawImage(HTMLImageElement* image, float x, float y) |
| { |
| ASSERT(image); |
| IntSize s = size(image); |
| ExceptionCode ec; |
| drawImage(image, x, y, s.width(), s.height(), ec); |
| } |
| |
| void CanvasRenderingContext2D::drawImage(HTMLImageElement* image, |
| float x, float y, float width, float height, ExceptionCode& ec) |
| { |
| ASSERT(image); |
| IntSize s = size(image); |
| drawImage(image, FloatRect(0, 0, s.width(), s.height()), FloatRect(x, y, width, height), ec); |
| } |
| |
| void CanvasRenderingContext2D::checkOrigin(const KURL& url) |
| { |
| RefPtr<SecurityOrigin> origin = SecurityOrigin::create(url); |
| if (!m_canvas->document()->securityOrigin()->canAccess(origin.get())) |
| m_canvas->setOriginTainted(); |
| } |
| |
| void CanvasRenderingContext2D::drawImage(HTMLImageElement* image, const FloatRect& srcRect, const FloatRect& dstRect, |
| ExceptionCode& ec) |
| { |
| ASSERT(image); |
| |
| ec = 0; |
| |
| FloatRect imageRect = FloatRect(FloatPoint(), size(image)); |
| if (!(imageRect.contains(srcRect) && srcRect.width() >= 0 && srcRect.height() >= 0 |
| && dstRect.width() >= 0 && dstRect.height() >= 0)) { |
| ec = INDEX_SIZE_ERR; |
| return; |
| } |
| |
| if (srcRect.isEmpty() || dstRect.isEmpty()) |
| return; |
| |
| GraphicsContext* c = drawingContext(); |
| if (!c) |
| return; |
| |
| CachedImage* cachedImage = image->cachedImage(); |
| if (!cachedImage) |
| return; |
| |
| if (m_canvas->originClean()) |
| checkOrigin(KURL(cachedImage->url())); |
| |
| FloatRect sourceRect = c->roundToDevicePixels(srcRect); |
| FloatRect destRect = c->roundToDevicePixels(dstRect); |
| willDraw(destRect); |
| c->drawImage(cachedImage->image(), destRect, sourceRect, state().m_globalComposite); |
| } |
| |
| void CanvasRenderingContext2D::drawImage(HTMLCanvasElement* canvas, float x, float y) |
| { |
| ASSERT(canvas); |
| ExceptionCode ec; |
| drawImage(canvas, x, y, canvas->width(), canvas->height(), ec); |
| } |
| |
| void CanvasRenderingContext2D::drawImage(HTMLCanvasElement* canvas, |
| float x, float y, float width, float height, ExceptionCode& ec) |
| { |
| ASSERT(canvas); |
| drawImage(canvas, FloatRect(0, 0, canvas->width(), canvas->height()), FloatRect(x, y, width, height), ec); |
| } |
| |
| void CanvasRenderingContext2D::drawImage(HTMLCanvasElement* canvas, const FloatRect& srcRect, |
| const FloatRect& dstRect, ExceptionCode& ec) |
| { |
| ASSERT(canvas); |
| |
| ec = 0; |
| |
| FloatRect srcCanvasRect = FloatRect(FloatPoint(), canvas->size()); |
| if (!(srcCanvasRect.contains(srcRect) && srcRect.width() >= 0 && srcRect.height() >= 0 |
| && dstRect.width() >= 0 && dstRect.height() >= 0)) { |
| ec = INDEX_SIZE_ERR; |
| return; |
| } |
| |
| if (srcRect.isEmpty() || dstRect.isEmpty()) |
| return; |
| |
| GraphicsContext* c = drawingContext(); |
| if (!c) |
| return; |
| |
| FloatRect sourceRect = c->roundToDevicePixels(srcRect); |
| FloatRect destRect = c->roundToDevicePixels(dstRect); |
| |
| // FIXME: Do this through platform-independent GraphicsContext API. |
| ImageBuffer* buffer = canvas->buffer(); |
| if (!buffer) |
| return; |
| |
| if (!canvas->originClean()) |
| m_canvas->setOriginTainted(); |
| |
| c->drawImage(buffer->image(), destRect, sourceRect); |
| willDraw(destRect); // This call comes after drawImage, since the buffer we draw into may be our own, and we need to make sure it is dirty. |
| // FIXME: Arguably willDraw should become didDraw and occur after drawing calls and not before them to avoid problems like this. |
| } |
| |
| // FIXME: Why isn't this just another overload of drawImage? Why have a different name? |
| void CanvasRenderingContext2D::drawImageFromRect(HTMLImageElement* image, |
| float sx, float sy, float sw, float sh, |
| float dx, float dy, float dw, float dh, |
| const String& compositeOperation) |
| { |
| if (!image) |
| return; |
| |
| CachedImage* cachedImage = image->cachedImage(); |
| if (!cachedImage) |
| return; |
| |
| if (m_canvas->originClean()) |
| checkOrigin(KURL(cachedImage->url())); |
| |
| GraphicsContext* c = drawingContext(); |
| if (!c) |
| return; |
| |
| CompositeOperator op; |
| if (!parseCompositeOperator(compositeOperation, op)) |
| op = CompositeSourceOver; |
| |
| FloatRect destRect = FloatRect(dx, dy, dw, dh); |
| willDraw(destRect); |
| c->drawImage(cachedImage->image(), destRect, FloatRect(sx, sy, sw, sh), op); |
| } |
| |
| void CanvasRenderingContext2D::setAlpha(float alpha) |
| { |
| setGlobalAlpha(alpha); |
| } |
| |
| void CanvasRenderingContext2D::setCompositeOperation(const String& operation) |
| { |
| setGlobalCompositeOperation(operation); |
| } |
| |
| PassRefPtr<CanvasGradient> CanvasRenderingContext2D::createLinearGradient(float x0, float y0, float x1, float y1) |
| { |
| return CanvasGradient::create(FloatPoint(x0, y0), FloatPoint(x1, y1)); |
| } |
| |
| PassRefPtr<CanvasGradient> CanvasRenderingContext2D::createRadialGradient(float x0, float y0, float r0, float x1, float y1, float r1) |
| { |
| return CanvasGradient::create(FloatPoint(x0, y0), r0, FloatPoint(x1, y1), r1); |
| } |
| |
| PassRefPtr<CanvasPattern> CanvasRenderingContext2D::createPattern(HTMLImageElement* image, |
| const String& repetitionType, ExceptionCode& ec) |
| { |
| bool repeatX, repeatY; |
| ec = 0; |
| CanvasPattern::parseRepetitionType(repetitionType, repeatX, repeatY, ec); |
| if (ec) |
| return 0; |
| |
| bool originClean = true; |
| if (CachedImage* cachedImage = image->cachedImage()) { |
| KURL url(cachedImage->url()); |
| RefPtr<SecurityOrigin> origin = SecurityOrigin::create(url); |
| originClean = m_canvas->document()->securityOrigin()->canAccess(origin.get()); |
| } |
| return CanvasPattern::create(image->cachedImage(), repeatX, repeatY, originClean); |
| } |
| |
| PassRefPtr<CanvasPattern> CanvasRenderingContext2D::createPattern(HTMLCanvasElement* canvas, |
| const String& repetitionType, ExceptionCode& ec) |
| { |
| bool repeatX, repeatY; |
| ec = 0; |
| CanvasPattern::parseRepetitionType(repetitionType, repeatX, repeatY, ec); |
| if (ec) |
| return 0; |
| // FIXME: Do this through platform-independent GraphicsContext API. |
| #if PLATFORM(CG) |
| RetainPtr<CGImageRef> image(AdoptCF, canvas->createPlatformImage()); |
| if (!image) |
| return 0; |
| return CanvasPattern::create(image.get(), repeatX, repeatY, canvas->originClean()); |
| #elif PLATFORM(CAIRO) |
| cairo_surface_t* surface = canvas->createPlatformImage(); |
| if (!surface) |
| return 0; |
| RefPtr<CanvasPattern> pattern = CanvasPattern::create(surface, repeatX, repeatY, canvas->originClean()); |
| cairo_surface_destroy(surface); |
| return pattern.release(); |
| #else |
| notImplemented(); |
| return 0; |
| #endif |
| } |
| |
| void CanvasRenderingContext2D::willDraw(const FloatRect& r) |
| { |
| GraphicsContext* c = drawingContext(); |
| if (!c) |
| return; |
| |
| m_canvas->willDraw(c->getCTM().mapRect(r)); |
| } |
| |
| GraphicsContext* CanvasRenderingContext2D::drawingContext() const |
| { |
| return m_canvas->drawingContext(); |
| } |
| |
| void CanvasRenderingContext2D::applyStrokePattern() |
| { |
| GraphicsContext* c = drawingContext(); |
| if (!c) |
| return; |
| |
| #if PLATFORM(CG) |
| // Check for case where the pattern is already set. |
| CGAffineTransform m = CGContextGetCTM(c->platformContext()); |
| if (state().m_appliedStrokePattern |
| && CGAffineTransformEqualToTransform(m, state().m_strokeStylePatternTransform)) |
| return; |
| |
| CanvasPattern* pattern = state().m_strokeStyle->pattern(); |
| if (!pattern) |
| return; |
| |
| CGPatternRef platformPattern = pattern->createPattern(m); |
| if (!platformPattern) |
| return; |
| |
| CGColorSpaceRef patternSpace = CGColorSpaceCreatePattern(0); |
| CGContextSetStrokeColorSpace(c->platformContext(), patternSpace); |
| CGColorSpaceRelease(patternSpace); |
| |
| const CGFloat patternAlpha = 1; |
| CGContextSetStrokePattern(c->platformContext(), platformPattern, &patternAlpha); |
| CGPatternRelease(platformPattern); |
| |
| state().m_strokeStylePatternTransform = m; |
| #elif PLATFORM(QT) |
| notImplemented(); |
| #elif PLATFORM(CAIRO) |
| CanvasPattern* pattern = state().m_strokeStyle->pattern(); |
| if (!pattern) |
| return; |
| |
| cairo_t* cr = c->platformContext(); |
| cairo_matrix_t m; |
| cairo_get_matrix(cr, &m); |
| |
| cairo_pattern_t* platformPattern = pattern->createPattern(m); |
| if (!platformPattern) |
| return; |
| |
| cairo_set_source(cr, platformPattern); |
| cairo_pattern_destroy(platformPattern); |
| #endif |
| state().m_appliedStrokePattern = true; |
| } |
| |
| void CanvasRenderingContext2D::applyFillPattern() |
| { |
| GraphicsContext* c = drawingContext(); |
| if (!c) |
| return; |
| |
| #if PLATFORM(CG) |
| // Check for case where the pattern is already set. |
| CGAffineTransform m = CGContextGetCTM(c->platformContext()); |
| if (state().m_appliedFillPattern |
| && CGAffineTransformEqualToTransform(m, state().m_fillStylePatternTransform)) |
| return; |
| |
| CanvasPattern* pattern = state().m_fillStyle->pattern(); |
| if (!pattern) |
| return; |
| |
| CGPatternRef platformPattern = pattern->createPattern(m); |
| if (!platformPattern) |
| return; |
| |
| CGColorSpaceRef patternSpace = CGColorSpaceCreatePattern(0); |
| CGContextSetFillColorSpace(c->platformContext(), patternSpace); |
| CGColorSpaceRelease(patternSpace); |
| |
| const CGFloat patternAlpha = 1; |
| CGContextSetFillPattern(c->platformContext(), platformPattern, &patternAlpha); |
| CGPatternRelease(platformPattern); |
| |
| state().m_fillStylePatternTransform = m; |
| #elif PLATFORM(QT) |
| notImplemented(); |
| #elif PLATFORM(CAIRO) |
| CanvasPattern* pattern = state().m_fillStyle->pattern(); |
| if (!pattern) |
| return; |
| |
| cairo_t* cr = c->platformContext(); |
| cairo_matrix_t m; |
| cairo_get_matrix(cr, &m); |
| |
| cairo_pattern_t* platformPattern = pattern->createPattern(m); |
| if (!platformPattern) |
| return; |
| |
| cairo_set_source(cr, platformPattern); |
| cairo_pattern_destroy(platformPattern); |
| #endif |
| state().m_appliedFillPattern = true; |
| } |
| |
| static PassRefPtr<ImageData> createEmptyImageData(const IntSize& size) |
| { |
| PassRefPtr<ImageData> data = ImageData::create(size.width(), size.height()); |
| memset(data->data()->data().data(), 0, data->data()->length()); |
| return data; |
| } |
| |
| PassRefPtr<ImageData> CanvasRenderingContext2D::createImageData(float sw, float sh) const |
| { |
| FloatSize unscaledSize(sw, sh); |
| IntSize scaledSize = m_canvas->convertLogicalToDevice(unscaledSize); |
| if (scaledSize.width() < 1) |
| scaledSize.setWidth(1); |
| if (scaledSize.height() < 1) |
| scaledSize.setHeight(1); |
| |
| return createEmptyImageData(scaledSize); |
| } |
| |
| PassRefPtr<ImageData> CanvasRenderingContext2D::getImageData(float sx, float sy, float sw, float sh, ExceptionCode& ec) const |
| { |
| if (!m_canvas->originClean()) { |
| ec = SECURITY_ERR; |
| return 0; |
| } |
| |
| FloatRect unscaledRect(sx, sy, sw, sh); |
| IntRect scaledRect = m_canvas->convertLogicalToDevice(unscaledRect); |
| if (scaledRect.width() < 1) |
| scaledRect.setWidth(1); |
| if (scaledRect.height() < 1) |
| scaledRect.setHeight(1); |
| ImageBuffer* buffer = m_canvas ? m_canvas->buffer() : 0; |
| if (!buffer) |
| return createEmptyImageData(scaledRect.size()); |
| return buffer->getImageData(scaledRect); |
| } |
| |
| void CanvasRenderingContext2D::putImageData(ImageData* data, float dx, float dy, ExceptionCode& ec) |
| { |
| if (!data) { |
| ec = TYPE_MISMATCH_ERR; |
| return; |
| } |
| putImageData(data, dx, dy, 0, 0, data->width(), data->height(), ec); |
| } |
| |
| void CanvasRenderingContext2D::putImageData(ImageData* data, float dx, float dy, float dirtyX, float dirtyY, |
| float dirtyWidth, float dirtyHeight, ExceptionCode& ec) |
| { |
| if (!data) { |
| ec = TYPE_MISMATCH_ERR; |
| return; |
| } |
| if (!isfinite(dx) || !isfinite(dy) || !isfinite(dirtyX) || |
| !isfinite(dirtyY) || !isfinite(dirtyWidth) || !isfinite(dirtyHeight)) { |
| ec = INDEX_SIZE_ERR; |
| return; |
| } |
| |
| ImageBuffer* buffer = m_canvas->buffer(); |
| if (!buffer) |
| return; |
| |
| if (dirtyWidth < 0) { |
| dirtyX += dirtyWidth; |
| dirtyWidth = -dirtyWidth; |
| } |
| |
| if (dirtyHeight < 0) { |
| dirtyY += dirtyHeight; |
| dirtyHeight = -dirtyHeight; |
| } |
| |
| FloatRect clipRect(dirtyX, dirtyY, dirtyWidth, dirtyHeight); |
| clipRect.intersect(IntRect(0, 0, data->width(), data->height())); |
| IntSize destOffset(static_cast<int>(dx), static_cast<int>(dy)); |
| IntRect sourceRect = enclosingIntRect(clipRect); |
| sourceRect.move(destOffset); |
| sourceRect.intersect(IntRect(IntPoint(), buffer->size())); |
| if (sourceRect.isEmpty()) |
| return; |
| willDraw(sourceRect); |
| sourceRect.move(-destOffset); |
| IntPoint destPoint(destOffset.width(), destOffset.height()); |
| |
| buffer->putImageData(data, sourceRect, destPoint); |
| } |
| |
| } // namespace WebCore |