Changeset 277349 in webkit
- Timestamp:
- May 11, 2021, 6:25:50 PM (5 years ago)
- Location:
- trunk/Source/WebKit
- Files:
-
- 3 edited
-
ChangeLog (modified) (1 diff)
-
Shared/RemoteLayerTree/CGDisplayListImageBufferBackend.cpp (modified) (1 diff)
-
Shared/RemoteLayerTree/CGDisplayListImageBufferBackend.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit/ChangeLog
r277344 r277349 1 2021-05-11 Tim Horton <timothy_horton@apple.com> 2 3 Fix the CGDisplayListImageBufferBackend build 4 https://bugs.webkit.org/show_bug.cgi?id=225681 5 6 Unreviewed. 7 8 * Shared/RemoteLayerTree/CGDisplayListImageBufferBackend.cpp: 9 (WebKit::CGDisplayListImageBufferBackend::getPixelBuffer const): 10 * Shared/RemoteLayerTree/CGDisplayListImageBufferBackend.h: 11 1 12 2021-05-11 Alex Christensen <achristensen@webkit.org> 2 13 -
trunk/Source/WebKit/Shared/RemoteLayerTree/CGDisplayListImageBufferBackend.cpp
r277313 r277349 109 109 { 110 110 ASSERT_NOT_REACHED(); 111 return nullptr;111 return { }; 112 112 } 113 113 -
trunk/Source/WebKit/Shared/RemoteLayerTree/CGDisplayListImageBufferBackend.h
r277313 r277349 51 51 RefPtr<WebCore::NativeImage> copyNativeImage(WebCore::BackingStoreCopy = WebCore::CopyBackingStore) const override; 52 52 Vector<uint8_t> toBGRAData() const override; 53 RefPtr<WebCore::PixelBuffer> getPixelBuffer(WebCore::AlphaPremultiplication outputFormat, const WebCore::IntRect&) const override;53 Optional<WebCore::PixelBuffer> getPixelBuffer(WebCore::AlphaPremultiplication outputFormat, const WebCore::IntRect&) const override; 54 54 void putPixelBuffer(WebCore::AlphaPremultiplication inputFormat, const WebCore::PixelBuffer&, const WebCore::IntRect& srcRect, const WebCore::IntPoint& destPoint, WebCore::AlphaPremultiplication destFormat) override; 55 55
Note:
See TracChangeset
for help on using the changeset viewer.