Changeset 145079 in webkit


Ignore:
Timestamp:
Mar 7, 2013 7:54:34 AM (11 years ago)
Author:
commit-queue@webkit.org
Message:

OpenGLShims: fix check for ANGLE GLES2 extensions
https://bugs.webkit.org/show_bug.cgi?id=111656

Patch by Sergio Correia <Sergio Correia> on 2013-03-07
Reviewed by Simon Hausmann.

The check for ANGLE GLES2 extensions is currently being overriden
with checks for APPLE extensions in lookupOpenGLFunctionAddress().

No new tests. No user visible behavior changed.

  • platform/graphics/OpenGLShims.cpp:

(WebCore::lookupOpenGLFunctionAddress):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r145078 r145079  
     12013-03-07  Sergio Correia  <sergio.correia@openbossa.org>
     2
     3        OpenGLShims: fix check for ANGLE GLES2 extensions
     4        https://bugs.webkit.org/show_bug.cgi?id=111656
     5
     6        Reviewed by Simon Hausmann.
     7
     8        The check for ANGLE GLES2 extensions is currently being overriden
     9        with checks for APPLE extensions in lookupOpenGLFunctionAddress().
     10
     11        No new tests. No user visible behavior changed.
     12
     13        * platform/graphics/OpenGLShims.cpp:
     14        (WebCore::lookupOpenGLFunctionAddress):
     15
    1162013-03-07  David Kilzer  <ddkilzer@apple.com>
    217
  • trunk/Source/WebCore/platform/graphics/OpenGLShims.cpp

    r142937 r145079  
    8585    fullFunctionName.append("ANGLE");
    8686    target = getProcAddress(fullFunctionName.utf8().data());
     87    if (target)
     88        return target;
    8789
    8890    fullFunctionName = functionName;
Note: See TracChangeset for help on using the changeset viewer.