Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(475)

Side by Side Diff: third_party/WebKit/Source/platform/graphics/GradientGeneratedImage.cpp

Issue 1949253004: Rounded background image fast path (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2008, 2009, 2010, 2012 Apple Inc. All rights reserved. 2 * Copyright (C) 2008, 2009, 2010, 2012 Apple Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution. 11 * documentation and/or other materials provided with the distribution.
12 * 12 *
13 * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' 13 * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
14 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, 14 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
15 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 15 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS 16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
17 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 17 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
18 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 18 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
19 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 19 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
20 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 20 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
21 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 21 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
22 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF 22 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
23 * THE POSSIBILITY OF SUCH DAMAGE. 23 * THE POSSIBILITY OF SUCH DAMAGE.
24 */ 24 */
25 25
26 #include "platform/graphics/GradientGeneratedImage.h" 26 #include "platform/graphics/GradientGeneratedImage.h"
27 27
28 #include "platform/geometry/FloatRect.h" 28 #include "platform/geometry/FloatRect.h"
29 #include "platform/geometry/IntSize.h"
29 #include "platform/graphics/GraphicsContext.h" 30 #include "platform/graphics/GraphicsContext.h"
30 31
31 namespace blink { 32 namespace blink {
32 33
33 void GradientGeneratedImage::draw(SkCanvas* canvas, const SkPaint& paint, const FloatRect& destRect, const FloatRect& srcRect, RespectImageOrientationEnum, Imag eClampingMode) 34 void GradientGeneratedImage::draw(SkCanvas* canvas, const SkPaint& paint, const FloatRect& destRect, const FloatRect& srcRect, RespectImageOrientationEnum, Imag eClampingMode)
34 { 35 {
35 SkRect visibleRect = srcRect; 36 SkRect visibleRect = srcRect;
36 if (!visibleRect.intersect(SkRect::MakeIWH(m_size.width(), m_size.height())) ) 37 if (!visibleRect.intersect(SkRect::MakeIWH(m_size.width(), m_size.height())) )
37 return; 38 return;
38 39
39 SkMatrix transform = SkMatrix::MakeRectToRect(srcRect, destRect, SkMatrix::k Fill_ScaleToFit); 40 SkMatrix transform = SkMatrix::MakeRectToRect(srcRect, destRect, SkMatrix::k Fill_ScaleToFit);
40 SkAutoCanvasRestore autoRestore(canvas, !transform.isIdentity()); 41 SkAutoCanvasRestore autoRestore(canvas, !transform.isIdentity());
41 canvas->concat(transform); 42 canvas->concat(transform);
42 43
43 SkPaint gradientPaint(paint); 44 SkPaint gradientPaint(paint);
44 m_gradient->applyToPaint(gradientPaint); 45 m_gradient->applyToPaint(gradientPaint);
45 46
46 canvas->drawRect(visibleRect, gradientPaint); 47 canvas->drawRect(visibleRect, gradientPaint);
47 } 48 }
48 49
49 void GradientGeneratedImage::drawTile(GraphicsContext& context, const FloatRect& srcRect) 50 void GradientGeneratedImage::drawTile(GraphicsContext& context, const FloatRect& srcRect)
50 { 51 {
51 context.setFillGradient(m_gradient); 52 context.setFillGradient(m_gradient);
52 context.fillRect(srcRect); 53 context.fillRect(srcRect);
53 } 54 }
54 55
56 bool GradientGeneratedImage::applyShader(SkPaint& paint, const SkMatrix* localMa trix)
57 {
58 AffineTransform transform;
59 if (localMatrix) {
60 transform.setMatrix(
61 localMatrix->getScaleX(), localMatrix->getSkewY(),
62 localMatrix->getSkewX(), localMatrix->getScaleY(),
63 localMatrix->getTranslateX(), localMatrix->getTranslateY());
64 }
65
66 DCHECK(m_gradient);
67 m_gradient->setGradientSpaceTransform(transform);
fs 2016/05/20 12:47:35 Could this end up affecting the result of a draw()
f(malita) 2016/05/20 13:57:57 Hmm, good question. I thought we always update th
fs 2016/05/20 14:18:56 The transform is never touch explicitly (and this
68 m_gradient->applyToPaint(paint);
69
70 return true;
71 }
72
55 } // namespace blink 73 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698