Changeset 210074 in webkit
- Timestamp:
- Dec 21, 2016, 1:24:17 PM (9 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r210061 r210074 1 2016-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 1 14 2016-12-21 Eric Carlson <eric.carlson@apple.com> 2 15 -
trunk/Source/WebCore/platform/graphics/opengl/Extensions3DOpenGL.h
r209871 r210074 38 38 public: 39 39 // This class only needs to be instantiated by GraphicsContext3D implementations. 40 explicitExtensions3DOpenGL(GraphicsContext3D*, bool useIndexedGetString);40 Extensions3DOpenGL(GraphicsContext3D*, bool useIndexedGetString); 41 41 virtual ~Extensions3DOpenGL(); 42 42 -
trunk/Source/WebCore/platform/graphics/opengl/Extensions3DOpenGLES.h
r208040 r210074 64 64 public: 65 65 // This class only needs to be instantiated by GraphicsContext3D implementations. 66 explicitExtensions3DOpenGLES(GraphicsContext3D*, bool useIndexedGetString);66 Extensions3DOpenGLES(GraphicsContext3D*, bool useIndexedGetString); 67 67 virtual ~Extensions3DOpenGLES(); 68 68
Note:
See TracChangeset
for help on using the changeset viewer.