Changeset 206213 in webkit


Ignore:
Timestamp:
Sep 21, 2016 9:28:48 AM (8 years ago)
Author:
commit-queue@webkit.org
Message:

[GTK] Build fails with GSTREAMER_GL enabled
https://bugs.webkit.org/show_bug.cgi?id=162337

Patch by Miguel Gomez <magomez@igalia.com> on 2016-09-21
Reviewed by Michael Catanzaro.

  • platform/graphics/gstreamer/MediaPlayerPrivateGStreamerBase.cpp:

(WebCore::MediaPlayerPrivateGStreamerBase::ensureGstGLContext): Remove uneeded const.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r206211 r206213  
     12016-09-21  Miguel Gomez  <magomez@igalia.com>
     2
     3        [GTK] Build fails with GSTREAMER_GL enabled
     4        https://bugs.webkit.org/show_bug.cgi?id=162337
     5
     6        Reviewed by Michael Catanzaro.
     7
     8        * platform/graphics/gstreamer/MediaPlayerPrivateGStreamerBase.cpp:
     9        (WebCore::MediaPlayerPrivateGStreamerBase::ensureGstGLContext): Remove uneeded const.
     10
    1112016-09-21  Jer Noble  <jer.noble@apple.com>
    212
  • trunk/Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamerBase.cpp

    r206202 r206213  
    253253        return true;
    254254
    255     const auto& sharedDisplay = PlatformDisplay::sharedDisplayForCompositing();
     255    auto& sharedDisplay = PlatformDisplay::sharedDisplayForCompositing();
    256256    if (!m_glDisplay) {
    257257#if PLATFORM(X11)
Note: See TracChangeset for help on using the changeset viewer.