Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / platform / graphics / filters / SourceGraphic.cpp
1 /*
2  * Copyright (C) 2009 Dirk Schulze <krit@webkit.org>
3  * Copyright (C) 2013 Google Inc. All rights reserved.
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Library General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Library General Public License for more details.
14  *
15  * You should have received a copy of the GNU Library General Public License
16  * along with this library; see the file COPYING.LIB.  If not, write to
17  * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18  * Boston, MA 02110-1301, USA.
19  */
20
21 #include "config.h"
22
23 #include "platform/graphics/filters/SourceGraphic.h"
24
25 #include "platform/graphics/filters/Filter.h"
26 #include "platform/text/TextStream.h"
27 #include "third_party/skia/include/effects/SkPictureImageFilter.h"
28
29 namespace blink {
30
31 PassRefPtr<SourceGraphic> SourceGraphic::create(Filter* filter)
32 {
33     return adoptRef(new SourceGraphic(filter));
34 }
35
36 const AtomicString& SourceGraphic::effectName()
37 {
38     DEFINE_STATIC_LOCAL(const AtomicString, s_effectName, ("SourceGraphic", AtomicString::ConstructFromLiteral));
39     return s_effectName;
40 }
41
42 FloatRect SourceGraphic::determineAbsolutePaintRect(const FloatRect& requestedRect)
43 {
44     FloatRect srcRect = filter()->sourceImageRect();
45     srcRect.intersect(requestedRect);
46     addAbsolutePaintRect(srcRect);
47     return srcRect;
48 }
49
50 void SourceGraphic::setDisplayList(PassRefPtr<DisplayList> displayList)
51 {
52     m_displayList = displayList;
53 }
54
55 PassRefPtr<SkImageFilter> SourceGraphic::createImageFilter(SkiaImageFilterBuilder*)
56 {
57     if (!m_displayList)
58         return nullptr;
59
60     return adoptRef(SkPictureImageFilter::Create(m_displayList->picture().get(), m_displayList->bounds()));
61 }
62
63 TextStream& SourceGraphic::externalRepresentation(TextStream& ts, int indent) const
64 {
65     writeIndent(ts, indent);
66     ts << "[SourceGraphic]\n";
67     return ts;
68 }
69
70 } // namespace blink