Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Remove Direct2D code (part 2)
https://bugs.webkit.org/show_bug.cgi?id=235097 Reviewed by Yusuke Suzuki. .: * Source/cmake/OptionsAppleWin.cmake: Source/WebCore: * platform/graphics/Color.h: * platform/graphics/win/FontCacheWin.cpp: (WebCore::createGDIFont): (WebCore::FontCache::createFontPlatformData): * platform/graphics/win/FontPlatformDataWin.cpp: * platform/image-decoders/ScalableImageDecoder.cpp: (WebCore::ScalableImageDecoder::setTargetContext): Deleted. * platform/image-decoders/ScalableImageDecoder.h: Source/WebCore/PAL: * pal/PlatformAppleWin.cmake: Source/WebKit: * UIProcess/BackingStore.h: (): Deleted. * UIProcess/CoordinatedGraphics/DrawingAreaProxyCoordinatedGraphics.cpp: (WebKit::DrawingAreaProxyCoordinatedGraphics::sizeDidChange): (WebKit::DrawingAreaProxyCoordinatedGraphics::deviceScaleFactorDidChange): * UIProcess/win/PageClientImpl.cpp: * UIProcess/win/WebView.cpp: (WebKit::WebView::paint): Canonical link: https://commits.webkit.org/245946@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@287913 268f45cc-cd09-0410-ab3c-d52691b4dbfc
- Loading branch information
Showing
with
102 additions
and 138 deletions.
- +9 −0 ChangeLog
- +16 −0 Source/WebCore/ChangeLog
- +9 −0 Source/WebCore/PAL/ChangeLog
- +8 −11 Source/WebCore/PAL/pal/PlatformAppleWin.cmake
- +0 −15 Source/WebCore/platform/graphics/Color.h
- +1 −7 Source/WebCore/platform/graphics/win/FontCacheWin.cpp
- +0 −4 Source/WebCore/platform/graphics/win/FontPlatformDataWin.cpp
- +0 −7 Source/WebCore/platform/image-decoders/ScalableImageDecoder.cpp
- +0 −4 Source/WebCore/platform/image-decoders/ScalableImageDecoder.h
- +16 −0 Source/WebKit/ChangeLog
- +0 −19 Source/WebKit/UIProcess/BackingStore.h
- +0 −11 Source/WebKit/UIProcess/CoordinatedGraphics/DrawingAreaProxyCoordinatedGraphics.cpp
- +0 −1 Source/WebKit/UIProcess/win/PageClientImpl.cpp
- +0 −9 Source/WebKit/UIProcess/win/WebView.cpp
- +43 −50 Source/cmake/OptionsAppleWin.cmake
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
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
@@ -33,10 +33,6 @@ | ||
#include <wtf/text/StringHash.h> | ||
#include <wtf/text/WTFString.h> | ||
|
||
using std::min; | ||
|
||
namespace WebCore { | ||
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
@@ -251,11 +251,4 @@ PlatformImagePtr ScalableImageDecoder::createFrameImageAtIndex(size_t index, Sub | ||
return buffer->backingStore()->image(); | ||
} | ||
|
||
} |
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
@@ -35,7 +35,6 @@ | ||
#include "WebView.h" | ||
#include <WebCore/DOMPasteAccess.h> | ||
#include <WebCore/NotImplemented.h> | ||
|
||
namespace WebKit { | ||
using namespace WebCore; | ||
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
@@ -491,15 +491,6 @@ void WebView::paint(HDC hdc, const IntRect& dirtyRect) | ||
|
||
cairo_destroy(context); | ||
cairo_surface_destroy(surface); | ||
#endif | ||
|
||
auto unpaintedRects = unpaintedRegion.rects(); | ||
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