Changeset 70325 in webkit


Ignore:
Timestamp:
Oct 22, 2010 12:31:17 PM (14 years ago)
Author:
Patrick Gansterer
Message:

2010-10-22 Patrick Gansterer <Patrick Gansterer>

Reviewed by Adam Roben.

[WINCE] Implement GraphicsContext::(get|release)WindowsContext
https://bugs.webkit.org/show_bug.cgi?id=48136

  • platform/graphics/wince/GraphicsContextWinCE.cpp: (WebCore::GraphicsContext::getWindowsContext): (WebCore::GraphicsContext::releaseWindowsContext):
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r70324 r70325  
     12010-10-22  Patrick Gansterer  <paroga@webkit.org>
     2
     3        Reviewed by Adam Roben.
     4
     5        [WINCE] Implement GraphicsContext::(get|release)WindowsContext
     6        https://bugs.webkit.org/show_bug.cgi?id=48136
     7
     8        * platform/graphics/wince/GraphicsContextWinCE.cpp:
     9        (WebCore::GraphicsContext::getWindowsContext):
     10        (WebCore::GraphicsContext::releaseWindowsContext):
     11
    1122010-10-22  Adam Roben  <aroben@apple.com>
    213
  • trunk/WebCore/platform/graphics/wince/GraphicsContextWinCE.cpp

    r70143 r70325  
    609609HDC GraphicsContext::getWindowsContext(const IntRect& dstRect, bool supportAlphaBlend, bool mayCreateBitmap)
    610610{
    611     notImplemented();
    612     ASSERT_NOT_REACHED();
    613     return 0;
     611    // FIXME: Add support for AlphaBlend.
     612    ASSERT(!supportAlphaBlend);
     613    return m_data->m_dc;
    614614}
    615615
    616616void GraphicsContext::releaseWindowsContext(HDC hdc, const IntRect& dstRect, bool supportAlphaBlend, bool mayCreateBitmap)
    617617{
    618     notImplemented();
    619     ASSERT_NOT_REACHED();
    620618}
    621619
Note: See TracChangeset for help on using the changeset viewer.