diff options
Diffstat (limited to 'WebCore/platform/graphics/GraphicsContext.cpp')
-rw-r--r-- | WebCore/platform/graphics/GraphicsContext.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/WebCore/platform/graphics/GraphicsContext.cpp b/WebCore/platform/graphics/GraphicsContext.cpp index 52312a4..d80b365 100644 --- a/WebCore/platform/graphics/GraphicsContext.cpp +++ b/WebCore/platform/graphics/GraphicsContext.cpp @@ -288,6 +288,11 @@ void GraphicsContext::setShadowsIgnoreTransforms(bool ignoreTransforms) m_common->state.shadowsIgnoreTransforms = ignoreTransforms; } +bool GraphicsContext::shadowsIgnoreTransforms() const +{ + return m_common->state.shadowsIgnoreTransforms; +} + bool GraphicsContext::updatingControlTints() const { return m_common->m_updatingControlTints; |