Changeset 166931 in webkit


Ignore:
Timestamp:
Apr 8, 2014 9:40:04 AM (10 years ago)
Author:
commit-queue@webkit.org
Message:

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

Patch by peavo@outlook.com <peavo@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):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r166929 r166931  
     12014-04-08  peavo@outlook.com  <peavo@outlook.com>
     2
     3        [WinCairo] Compile error in TextureMapper.h
     4        https://bugs.webkit.org/show_bug.cgi?id=131360
     5
     6        Reviewed by Brent Fulgham.
     7
     8        The TextureMapper class has pure virtual methods, and cannot be instantiated.
     9
     10        * platform/graphics/texmap/TextureMapper.h:
     11        (WebCore::TextureMapper::platformCreateAccelerated):
     12
    1132014-04-08  Zalan Bujtas  <zalan@apple.com>
    214
  • trunk/Source/WebCore/platform/graphics/texmap/TextureMapper.h

    r166889 r166931  
    178178    static std::unique_ptr<TextureMapper> platformCreateAccelerated()
    179179    {
    180         return std::make_unique<TextureMapper>();
     180        return nullptr;
    181181    }
    182182#endif
Note: See TracChangeset for help on using the changeset viewer.