Title: [166931] trunk/Source/WebCore
Revision
166931
Author
commit-qu...@webkit.org
Date
2014-04-08 09:40:04 -0700 (Tue, 08 Apr 2014)

Log Message

[WinCairo] Compile error in TextureMapper.h
https://bugs.webkit.org/show_bug.cgi?id=131360

Patch by pe...@outlook.com <pe...@outlook.com> on 2014-04-08
Reviewed by Brent Fulgham.

The TextureMapper class has pure virtual methods, and cannot be instantiated.

* platform/graphics/texmap/TextureMapper.h:
(WebCore::TextureMapper::platformCreateAccelerated):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (166930 => 166931)


--- trunk/Source/WebCore/ChangeLog	2014-04-08 16:26:24 UTC (rev 166930)
+++ trunk/Source/WebCore/ChangeLog	2014-04-08 16:40:04 UTC (rev 166931)
@@ -1,3 +1,15 @@
+2014-04-08  pe...@outlook.com  <pe...@outlook.com>
+
+        [WinCairo] Compile error in TextureMapper.h
+        https://bugs.webkit.org/show_bug.cgi?id=131360
+
+        Reviewed by Brent Fulgham.
+
+        The TextureMapper class has pure virtual methods, and cannot be instantiated.
+
+        * platform/graphics/texmap/TextureMapper.h:
+        (WebCore::TextureMapper::platformCreateAccelerated):
+
 2014-04-08  Zalan Bujtas  <za...@apple.com>
 
         Subpixel rendering: Slow paint path for inlines should snap to device pixels.

Modified: trunk/Source/WebCore/platform/graphics/texmap/TextureMapper.h (166930 => 166931)


--- trunk/Source/WebCore/platform/graphics/texmap/TextureMapper.h	2014-04-08 16:26:24 UTC (rev 166930)
+++ trunk/Source/WebCore/platform/graphics/texmap/TextureMapper.h	2014-04-08 16:40:04 UTC (rev 166931)
@@ -177,7 +177,7 @@
 #else
     static std::unique_ptr<TextureMapper> platformCreateAccelerated()
     {
-        return std::make_unique<TextureMapper>();
+        return nullptr;
     }
 #endif
     InterpolationQuality m_interpolationQuality;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to