Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
2011-05-24 Ryuan Choi <ryuan.choi@samsung.com>
Reviewed by Andreas Kling. [GTK] Implement GraphicsContextCairo::imageInterpolationQuality(). https://bugs.webkit.org/show_bug.cgi?id=60827 Implement getter/setter of imageInterpolationQuality and logic to change interpolation algorithm when drawing image. Mac and Qt already implemented it. * platform/graphics/cairo/GraphicsContextCairo.cpp: (WebCore::GraphicsContext::setImageInterpolationQuality): (WebCore::GraphicsContext::imageInterpolationQuality): * platform/graphics/cairo/GraphicsContextPlatformPrivateCairo.h: * platform/graphics/cairo/PlatformContextCairo.cpp: (WebCore::PlatformContextCairo::drawSurfaceToContext): * platform/graphics/cairo/PlatformContextCairo.h: (WebCore::PlatformContextCairo::setImageInterpolationQuality): Added. (WebCore::PlatformContextCairo::imageInterpolationQuality): Added. Canonical link: https://commits.webkit.org/76731@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@87151 268f45cc-cd09-0410-ab3c-d52691b4dbfc
- Loading branch information
Showing
with
44 additions
and 2 deletions.
- +21 −0 Source/WebCore/ChangeLog
- +3 −2 Source/WebCore/platform/graphics/cairo/GraphicsContextCairo.cpp
- +1 −0 Source/WebCore/platform/graphics/cairo/GraphicsContextPlatformPrivateCairo.h
- +14 −0 Source/WebCore/platform/graphics/cairo/PlatformContextCairo.cpp
- +5 −0 Source/WebCore/platform/graphics/cairo/PlatformContextCairo.h
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters