Changeset 245845 in webkit
- Timestamp:
- May 28, 2019, 9:33:26 PM (7 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
platform/graphics/win/MediaPlayerPrivateMediaFoundation.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r245844 r245845 1 2019-05-28 Fujii Hironori <Hironori.Fujii@sony.com> 2 3 [WinCairo][MediaFoundation] Assertion failure in MediaPlayerPrivateMediaFoundation::Direct3DPresenter::presentSample 4 https://bugs.webkit.org/show_bug.cgi?id=198290 5 6 Reviewed by Per Arne Vollan. 7 8 Covered by existing tests. 9 10 * platform/graphics/win/MediaPlayerPrivateMediaFoundation.cpp: 11 (WebCore::MediaPlayerPrivateMediaFoundation::Direct3DPresenter::presentSample): 12 Call clear() of m_memSurface before assigning new value. 13 1 14 2019-05-28 Saam Barati <sbarati@apple.com> 2 15 -
trunk/Source/WebCore/platform/graphics/win/MediaPlayerPrivateMediaFoundation.cpp
r242592 r245845 2895 2895 if (SUCCEEDED(surface->GetDesc(&desc))) 2896 2896 format = desc.Format; 2897 m_memSurface.clear(); 2897 2898 hr = m_device->CreateOffscreenPlainSurface(width, height, format, D3DPOOL_SYSTEMMEM, &m_memSurface, nullptr); 2898 2899 m_width = width;
Note:
See TracChangeset
for help on using the changeset viewer.