summaryrefslogtreecommitdiffstats
path: root/WebCore/platform/graphics/texmap/TextureMapper.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/platform/graphics/texmap/TextureMapper.h')
-rw-r--r--WebCore/platform/graphics/texmap/TextureMapper.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/WebCore/platform/graphics/texmap/TextureMapper.h b/WebCore/platform/graphics/texmap/TextureMapper.h
index 250125b..589fda1 100644
--- a/WebCore/platform/graphics/texmap/TextureMapper.h
+++ b/WebCore/platform/graphics/texmap/TextureMapper.h
@@ -110,22 +110,22 @@ public:
virtual PassRefPtr<BitmapTexture> createTexture() = 0;
void setImageInterpolationQuality(InterpolationQuality quality) { m_interpolationQuality = quality; }
- void setTextDrawingMode(int mode) { m_textDrawingMode = mode; }
+ void setTextDrawingMode(TextDrawingModeFlags mode) { m_textDrawingMode = mode; }
InterpolationQuality imageInterpolationQuality() const { return m_interpolationQuality; }
- int textDrawingMode() const { return m_textDrawingMode; }
+ TextDrawingModeFlags textDrawingMode() const { return m_textDrawingMode; }
void setViewportSize(const IntSize&);
protected:
TextureMapper()
: m_interpolationQuality(InterpolationDefault)
- , m_textDrawingMode(cTextFill)
+ , m_textDrawingMode(TextModeFill)
{}
private:
InterpolationQuality m_interpolationQuality;
- int m_textDrawingMode;
+ TextDrawingModeFlags m_textDrawingMode;
};
};