summaryrefslogtreecommitdiffstats
path: root/WebCore/platform/graphics/filters/SourceGraphic.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/platform/graphics/filters/SourceGraphic.h')
-rw-r--r--WebCore/platform/graphics/filters/SourceGraphic.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/WebCore/platform/graphics/filters/SourceGraphic.h b/WebCore/platform/graphics/filters/SourceGraphic.h
index 05238a2..911648c 100644
--- a/WebCore/platform/graphics/filters/SourceGraphic.h
+++ b/WebCore/platform/graphics/filters/SourceGraphic.h
@@ -35,12 +35,13 @@ namespace WebCore {
static const AtomicString& effectName();
- virtual bool isSourceInput() { return true; }
- virtual FloatRect calculateEffectRect(Filter*);
void apply(Filter*);
void dump();
TextStream& externalRepresentation(TextStream&, int indent) const;
-
+
+ virtual bool isSourceInput() const { return true; }
+ virtual FloatRect determineFilterPrimitiveSubregion(Filter*);
+
private:
SourceGraphic() { }
};