Changeset 269758 in webkit
- Timestamp:
- Nov 12, 2020, 3:45:06 PM (6 years ago)
- Location:
- trunk/Source/WebKit
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
WebProcess/GPU/graphics/ImageBufferShareableBitmapBackend.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit/ChangeLog
r269753 r269758 1 2020-11-12 Tim Horton <timothy_horton@apple.com> 2 3 canvas-createPattern-video-modify-crash-log.txt asserts on debug GPUProcess bots 4 https://bugs.webkit.org/show_bug.cgi?id=218872 5 6 Reviewed by Simon Fraser. 7 8 * WebProcess/GPU/graphics/ImageBufferShareableBitmapBackend.cpp: 9 (WebKit::ImageBufferShareableBitmapBackend::create): 10 This assertion is wrong; make it the same as the one in ImageBufferCGBitmapBackend. 11 1 12 2020-11-12 Said Abou-Hallawa <said@apple.com> 2 13 -
trunk/Source/WebKit/WebProcess/GPU/graphics/ImageBufferShareableBitmapBackend.cpp
r269710 r269758 46 46 std::unique_ptr<ImageBufferShareableBitmapBackend> ImageBufferShareableBitmapBackend::create(const FloatSize& size, float resolutionScale, ColorSpace colorSpace, PixelFormat pixelFormat, const HostWindow*) 47 47 { 48 ASSERT(pixelFormat == PixelFormat:: RGBA8);48 ASSERT(pixelFormat == PixelFormat::BGRA8); 49 49 50 50 IntSize backendSize = calculateBackendSize(size, resolutionScale);
Note:
See TracChangeset
for help on using the changeset viewer.