[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.22-985-g3c00f00
sfalken at apple.com
sfalken at apple.com
Wed Mar 17 18:30:23 UTC 2010
The following commit has been merged in the webkit-1.1 branch:
commit 738666ac3663e17c7e5fe52e5389b0032d91eb50
Author: sfalken at apple.com <sfalken at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date: Tue Mar 9 22:24:44 2010 +0000
Rubber stamped by Adam Roben.
Load debug version of graphics library in Windows Debug_All builds.
* platform/graphics/win/WKCACFLayerRenderer.cpp:
(WebCore::WKCACFLayerRenderer::acceleratedCompositingAvailable):
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@55747 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 3055b23..98e4193 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,12 @@
+2010-03-09 Steve Falkenburg <sfalken at apple.com>
+
+ Rubber stamped by Adam Roben.
+
+ Load debug version of graphics library in Windows Debug_All builds.
+
+ * platform/graphics/win/WKCACFLayerRenderer.cpp:
+ (WebCore::WKCACFLayerRenderer::acceleratedCompositingAvailable):
+
2010-03-09 Brady Eidson <beidson at apple.com>
Reviewed by Darin Adler.
diff --git a/WebCore/platform/graphics/win/WKCACFLayerRenderer.cpp b/WebCore/platform/graphics/win/WKCACFLayerRenderer.cpp
index 9e43eab..6b54e24 100644
--- a/WebCore/platform/graphics/win/WKCACFLayerRenderer.cpp
+++ b/WebCore/platform/graphics/win/WKCACFLayerRenderer.cpp
@@ -169,7 +169,11 @@ bool WKCACFLayerRenderer::acceleratedCompositingAvailable()
}
FreeLibrary(library);
+#ifdef DEBUG_ALL
+ library = LoadLibrary(TEXT("QuartzCore_debug.dll"));
+#else
library = LoadLibrary(TEXT("QuartzCore.dll"));
+#endif
if (!library) {
available = false;
return available;
--
WebKit Debian packaging
More information about the Pkg-webkit-commits
mailing list