Changeset 284867 in webkit
- Timestamp:
- Oct 26, 2021, 8:23:12 AM (5 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
-
LayoutTests/ChangeLog (modified) (1 diff)
-
LayoutTests/platform/glib/TestExpectations (modified) (1 diff)
-
Source/WebCore/ChangeLog (modified) (1 diff)
-
Source/WebCore/platform/graphics/opengl/GraphicsContextGLOpenGL.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r284865 r284867 1 2021-10-26 Philippe Normand <pnormand@igalia.com> 2 3 REGRESSION(242280@main) fast/mediastream/captureStream/canvas3d.html is timing out 4 https://bugs.webkit.org/show_bug.cgi?id=231061 5 <rdar://problem/84012523> 6 7 Reviewed by Xabier Rodriguez-Calvar. 8 9 * platform/glib/TestExpectations: Test is passing now. Unflag. 10 1 11 2021-10-26 Antti Koivisto <antti@apple.com> 2 12 -
trunk/LayoutTests/platform/glib/TestExpectations
r284839 r284867 681 681 webkit.org/b/187603 fast/mediastream/media-stream-track-source-failure.html [ Timeout Failure Pass ] 682 682 webkit.org/b/231057 fast/mediastream/media-stream-video-track-interrupted.html [ Failure ] 683 webkit.org/b/231061 fast/mediastream/captureStream/canvas3d.html [ Timeout ]684 683 685 684 webkit.org/b/223508 imported/w3c/web-platform-tests/mediacapture-streams/MediaStream-MediaElement-srcObject.https.html [ Failure Pass ] -
trunk/Source/WebCore/ChangeLog
r284865 r284867 1 2021-10-26 Philippe Normand <pnormand@igalia.com> 2 3 REGRESSION(242280@main) fast/mediastream/captureStream/canvas3d.html is timing out 4 https://bugs.webkit.org/show_bug.cgi?id=231061 5 <rdar://problem/84012523> 6 7 Reviewed by Xabier Rodriguez-Calvar. 8 9 Implement WebGL canvas sampling for GStreamer ports. 10 11 * platform/graphics/opengl/GraphicsContextGLOpenGL.cpp: 12 (WebCore::GraphicsContextGLOpenGL::paintCompositedResultsToMediaSample): 13 1 14 2021-10-26 Antti Koivisto <antti@apple.com> 2 15 -
trunk/Source/WebCore/platform/graphics/opengl/GraphicsContextGLOpenGL.cpp
r284371 r284867 46 46 #endif 47 47 48 #if USE(GSTREAMER) && ENABLE(MEDIA_STREAM) 49 #include "MediaSampleGStreamer.h" 50 #endif 51 48 52 namespace WebCore { 49 53 … … 187 191 RefPtr<MediaSample> GraphicsContextGLOpenGL::paintCompositedResultsToMediaSample() 188 192 { 193 #if USE(GSTREAMER) 194 if (auto pixelBuffer = readCompositedResults()) 195 return MediaSampleGStreamer::createImageSample(WTFMove(*pixelBuffer)); 196 #endif 189 197 return nullptr; 190 198 }
Note:
See TracChangeset
for help on using the changeset viewer.