Changeset 136135 in webkit
- Timestamp:
- Nov 29, 2012, 9:07:34 AM (14 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
platform/graphics/surfaces/qt/GraphicsSurfaceGLX.cpp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r136132 r136135 1 2012-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 1 13 2012-11-29 Mike West <mkwst@chromium.org> 2 14 -
trunk/Source/WebCore/platform/graphics/surfaces/qt/GraphicsSurfaceGLX.cpp
r135995 r136135 385 385 }; 386 386 387 static bool resolveGLMethods( GraphicsSurfacePrivate*)387 static bool resolveGLMethods() 388 388 { 389 389 static bool resolved = false; … … 471 471 472 472 surface->m_private = new GraphicsSurfacePrivate(shareContext); 473 if (!resolveGLMethods( surface->m_private))473 if (!resolveGLMethods()) 474 474 return PassRefPtr<GraphicsSurface>(); 475 475 … … 491 491 492 492 surface->m_private = new GraphicsSurfacePrivate(surface->m_platformSurface); 493 if (!resolveGLMethods( surface->m_private))493 if (!resolveGLMethods()) 494 494 return PassRefPtr<GraphicsSurface>(); 495 495
Note:
See TracChangeset
for help on using the changeset viewer.