Changeset 243538 in webkit
- Timestamp:
- Mar 27, 2019, 5:14:07 AM (7 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
platform/graphics/gstreamer/MediaPlayerPrivateGStreamerBase.cpp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r243537 r243538 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-27 Philippe Normand <pnormand@igalia.com> 2 18 -
trunk/Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamerBase.cpp
r243497 r243538 30 30 #include "GStreamerCommon.h" 31 31 #include "GraphicsContext.h" 32 #include "GraphicsContext3D.h"33 32 #include "ImageGStreamer.h" 34 33 #include "ImageOrientation.h" … … 119 118 #include "BitmapTextureGL.h" 120 119 #include "BitmapTexturePool.h" 120 #include "GraphicsContext3D.h" 121 121 #include "TextureMapperContextAttributes.h" 122 122 #include "TextureMapperGL.h" … … 193 193 m_textureID = *reinterpret_cast<GLuint*>(m_videoFrame.data[0]); 194 194 } else 195 #else 196 UNUSED_PARAM(flags); 197 UNUSED_PARAM(gstGLEnabled); 195 198 #endif // USE(GSTREAMER_GL) 196 199
Note:
See TracChangeset
for help on using the changeset viewer.