⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 136135 in webkit


Ignore:
Timestamp:
Nov 29, 2012, 9:07:34 AM (14 years ago)
Author:
zeno.albisser@digia.com
Message:

GraphicsSurfaceGLX: remove redundant parameter from resolveGLMethods.
​https://bugs.webkit.org/show_bug.cgi?id=103636

Reviewed by Kenneth Rohde Christiansen.

  • platform/graphics/surfaces/qt/GraphicsSurfaceGLX.cpp:

(WebCore::resolveGLMethods):
(WebCore::GraphicsSurface::platformCreate):
(WebCore::GraphicsSurface::platformImport):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r136132 r136135  
     12012-11-29  Zeno Albisser  <zeno@webkit.org>
     2
     3        GraphicsSurfaceGLX: remove redundant parameter from resolveGLMethods.
     4        https://bugs.webkit.org/show_bug.cgi?id=103636
     5
     6        Reviewed by Kenneth Rohde Christiansen.
     7
     8        * platform/graphics/surfaces/qt/GraphicsSurfaceGLX.cpp:
     9        (WebCore::resolveGLMethods):
     10        (WebCore::GraphicsSurface::platformCreate):
     11        (WebCore::GraphicsSurface::platformImport):
     12
    1132012-11-29  Mike West  <mkwst@chromium.org>
    214
  • trunk/Source/WebCore/platform/graphics/surfaces/qt/GraphicsSurfaceGLX.cpp

    r135995 r136135  
    385385};
    386386
    387 static bool resolveGLMethods(GraphicsSurfacePrivate*)
     387static bool resolveGLMethods()
    388388{
    389389    static bool resolved = false;
    … …  
    471471
    472472    surface->m_private = new GraphicsSurfacePrivate(shareContext);
    473     if (!resolveGLMethods(surface->m_private))
     473    if (!resolveGLMethods())
    474474        return PassRefPtr<GraphicsSurface>();
    475475
    … …  
    491491
    492492    surface->m_private = new GraphicsSurfacePrivate(surface->m_platformSurface);
    493     if (!resolveGLMethods(surface->m_private))
     493    if (!resolveGLMethods())
    494494        return PassRefPtr<GraphicsSurface>();
    495495
Note: See TracChangeset for help on using the changeset viewer.