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

Side by Side Diff: Source/WebCore/platform/graphics/filters/FETile.h

Issue 6949013: Merge 85926 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/742/
Patch Set: Created 9 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) 2004, 2005, 2006, 2007 Nikolas Zimmermann <zimmermann@kde.org> 2 * Copyright (C) 2004, 2005, 2006, 2007 Nikolas Zimmermann <zimmermann@kde.org>
3 * Copyright (C) 2004, 2005 Rob Buis <buis@kde.org> 3 * Copyright (C) 2004, 2005 Rob Buis <buis@kde.org>
4 * Copyright (C) 2005 Eric Seidel <eric@webkit.org> 4 * Copyright (C) 2005 Eric Seidel <eric@webkit.org>
5 * 5 *
6 * This library is free software; you can redistribute it and/or 6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public 7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either 8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version. 9 * version 2 of the License, or (at your option) any later version.
10 * 10 *
(...skipping 17 matching lines...) Expand all
28 28
29 namespace WebCore { 29 namespace WebCore {
30 30
31 class FETile : public FilterEffect { 31 class FETile : public FilterEffect {
32 public: 32 public:
33 static PassRefPtr<FETile> create(Filter* filter); 33 static PassRefPtr<FETile> create(Filter* filter);
34 34
35 virtual void apply(); 35 virtual void apply();
36 virtual void dump(); 36 virtual void dump();
37 37
38 virtual void determineAbsolutePaintRect() { setAbsolutePaintRect(maxEffectRe ct()); } 38 virtual void determineAbsolutePaintRect() { setAbsolutePaintRect(enclosingIn tRect(maxEffectRect())); }
39 39
40 virtual FilterEffectType filterEffectType() const { return FilterEffectTypeT ile; } 40 virtual FilterEffectType filterEffectType() const { return FilterEffectTypeT ile; }
41 41
42 virtual TextStream& externalRepresentation(TextStream&, int indention) const ; 42 virtual TextStream& externalRepresentation(TextStream&, int indention) const ;
43 43
44 private: 44 private:
45 FETile(Filter*); 45 FETile(Filter*);
46 }; 46 };
47 47
48 } // namespace WebCore 48 } // namespace WebCore
49 49
50 #endif // ENABLE(FILTERS) 50 #endif // ENABLE(FILTERS)
51 51
52 #endif // FETile_h 52 #endif // FETile_h
OLDNEW
« no previous file with comments | « Source/WebCore/platform/graphics/filters/FELighting.h ('k') | Source/WebCore/platform/graphics/filters/FETurbulence.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698