Changeset 210074 in webkit


Ignore:
Timestamp:
Dec 21, 2016, 1:24:17 PM (9 years ago)
Author:
Michael Catanzaro
Message:

Extensions3DOpenGL[ES] constructor should not be explicit
https://bugs.webkit.org/show_bug.cgi?id=166296

Reviewed by Darin Adler.

These constructors used to only have one parameter. Now they have two and they're both
mandatory.

  • platform/graphics/opengl/Extensions3DOpenGL.h:
  • platform/graphics/opengl/Extensions3DOpenGLES.h:
Location:
trunk/Source/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r210061 r210074  
     12016-12-21  Michael Catanzaro  <mcatanzaro@igalia.com>
     2
     3        Extensions3DOpenGL[ES] constructor should not be explicit
     4        https://bugs.webkit.org/show_bug.cgi?id=166296
     5
     6        Reviewed by Darin Adler.
     7
     8        These constructors used to only have one parameter. Now they have two and they're both
     9        mandatory.
     10
     11        * platform/graphics/opengl/Extensions3DOpenGL.h:
     12        * platform/graphics/opengl/Extensions3DOpenGLES.h:
     13
    1142016-12-21  Eric Carlson  <eric.carlson@apple.com>
    215
  • trunk/Source/WebCore/platform/graphics/opengl/Extensions3DOpenGL.h

    r209871 r210074  
    3838public:
    3939    // This class only needs to be instantiated by GraphicsContext3D implementations.
    40     explicit Extensions3DOpenGL(GraphicsContext3D*, bool useIndexedGetString);
     40    Extensions3DOpenGL(GraphicsContext3D*, bool useIndexedGetString);
    4141    virtual ~Extensions3DOpenGL();
    4242
  • trunk/Source/WebCore/platform/graphics/opengl/Extensions3DOpenGLES.h

    r208040 r210074  
    6464public:
    6565    // This class only needs to be instantiated by GraphicsContext3D implementations.
    66     explicit Extensions3DOpenGLES(GraphicsContext3D*, bool useIndexedGetString);
     66    Extensions3DOpenGLES(GraphicsContext3D*, bool useIndexedGetString);
    6767    virtual ~Extensions3DOpenGLES();
    6868
Note: See TracChangeset for help on using the changeset viewer.