Changeset 243591 in webkit
- Timestamp:
- Mar 27, 2019, 4:50:22 PM (7 years ago)
- Location:
- releases/WebKitGTK/webkit-2.24/Source/WebCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
platform/graphics/gstreamer/MediaPlayerPrivateGStreamerBase.cpp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
releases/WebKitGTK/webkit-2.24/Source/WebCore/ChangeLog
r243589 r243591 1 2019-03-27 Philippe Normand <pnormand@igalia.com> 2 3 Build failure with gstreamer 1.12.5 if USE_GSTREAMER_GL is enabled 4 https://bugs.webkit.org/show_bug.cgi?id=196178 5 6 Reviewed by Xabier Rodriguez-Calvar. 7 8 The gst/gl/gl.h header needs to be included before 9 GraphicsContext3D.h to avoid declaration conflicts with 10 OpenGLShims. 11 12 Based on a patch from Mike Gorse <mgorse@suse.com> 13 14 * platform/graphics/gstreamer/MediaPlayerPrivateGStreamerBase.cpp: 15 (WebCore::GstVideoFrameHolder::GstVideoFrameHolder): 16 1 17 2019-03-26 Philippe Normand <pnormand@igalia.com> 2 18 -
releases/WebKitGTK/webkit-2.24/Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamerBase.cpp
r242877 r243591 30 30 #include "GStreamerCommon.h" 31 31 #include "GraphicsContext.h" 32 #include "GraphicsContext3D.h"33 32 #include "ImageGStreamer.h" 34 33 #include "ImageOrientation.h" … … 118 117 #include "BitmapTextureGL.h" 119 118 #include "BitmapTexturePool.h" 119 #include "GraphicsContext3D.h" 120 120 #include "TextureMapperContextAttributes.h" 121 121 #include "TextureMapperGL.h" … … 192 192 m_textureID = *reinterpret_cast<GLuint*>(m_videoFrame.data[0]); 193 193 } else 194 #else 195 UNUSED_PARAM(flags); 196 UNUSED_PARAM(gstGLEnabled); 194 197 #endif // USE(GSTREAMER_GL) 195 198
Note:
See TracChangeset
for help on using the changeset viewer.