Changeset 152268 in webkit


Ignore:
Timestamp:
Jul 1, 2013 3:44:47 PM (11 years ago)
Author:
achristensen@apple.com
Message:

Fixed unreachable return when GLX or EGL are used with WebGL.
https://bugs.webkit.org/show_bug.cgi?id=118263

Reviewed by Noam Rosenthal.

  • platform/graphics/opengl/GLPlatformContext.cpp:

(WebCore::createOffScreenContext): Fixed unreachable return.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r152265 r152268  
     12013-07-01  Alex Christensen  <achristensen@apple.com>
     2
     3        Fixed unreachable return when GLX or EGL are used with WebGL.
     4        https://bugs.webkit.org/show_bug.cgi?id=118263
     5
     6        Reviewed by Noam Rosenthal.
     7
     8        * platform/graphics/opengl/GLPlatformContext.cpp:
     9        (WebCore::createOffScreenContext): Fixed unreachable return.
     10
    1112013-07-01  Tim Horton  <timothy_horton@apple.com>
    212
  • trunk/Source/WebCore/platform/graphics/opengl/GLPlatformContext.cpp

    r146730 r152268  
    7070#elif USE(EGL)
    7171    return adoptPtr(new EGLOffScreenContext());
    72 #endif
    73 
     72#else
    7473    return nullptr;
     74#endif
    7575}
    7676
Note: See TracChangeset for help on using the changeset viewer.