summaryrefslogtreecommitdiffstats
path: root/WebCore/platform/graphics/filters/FilterEffect.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/platform/graphics/filters/FilterEffect.h')
-rw-r--r--WebCore/platform/graphics/filters/FilterEffect.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/WebCore/platform/graphics/filters/FilterEffect.h b/WebCore/platform/graphics/filters/FilterEffect.h
index 91c52f3..ebe1880 100644
--- a/WebCore/platform/graphics/filters/FilterEffect.h
+++ b/WebCore/platform/graphics/filters/FilterEffect.h
@@ -49,14 +49,14 @@ public:
// Creates the ImageBuffer for the current filter primitive result in the size of the
// repaintRect. Gives back the GraphicsContext of the own ImageBuffer.
- GraphicsContext* getEffectContext();
+ GraphicsContext* effectContext();
FilterEffectVector& inputEffects() { return m_inputEffects; }
FilterEffect* inputEffect(unsigned) const;
unsigned numberOfEffectInputs() const { return m_inputEffects.size(); }
- FloatRect calculateDrawingRect(const FloatRect&) const;
- IntRect calculateDrawingIntRect(const FloatRect&) const;
+ FloatRect drawingRegionOfInputImage(const FloatRect&) const;
+ IntRect requestedRegionOfInputImageData(const FloatRect&) const;
// Solid black image with different alpha values.
bool isAlphaImage() const { return m_alphaImage; }