| Index: third_party/WebKit/Source/modules/webgl/WebGL2RenderingContext.cpp
|
| diff --git a/third_party/WebKit/Source/modules/webgl/WebGL2RenderingContext.cpp b/third_party/WebKit/Source/modules/webgl/WebGL2RenderingContext.cpp
|
| index 05bc1bd7b3e9c6b6f53e222a6a0be0fd09586636..888b74dba578feb43bc1e042e62f27cc14596040 100644
|
| --- a/third_party/WebKit/Source/modules/webgl/WebGL2RenderingContext.cpp
|
| +++ b/third_party/WebKit/Source/modules/webgl/WebGL2RenderingContext.cpp
|
| @@ -40,7 +40,7 @@ PassOwnPtrWillBeRawPtr<CanvasRenderingContext> WebGL2RenderingContext::Factory::
|
| OwnPtr<WebGraphicsContext3D> context(createWebGraphicsContext3D(canvas, attributes, 2));
|
| if (!context)
|
| return nullptr;
|
| - OwnPtr<Extensions3DUtil> extensionsUtil = Extensions3DUtil::create(context.get());
|
| + OwnPtr<Extensions3DUtil> extensionsUtil = Extensions3DUtil::create(context.get(), context->getGLES2Interface());
|
| if (!extensionsUtil)
|
| return nullptr;
|
| if (extensionsUtil->supportsExtension("GL_EXT_debug_marker")) {
|
|
|