| Index: third_party/WebKit/Source/modules/webgl/WebGL2RenderingContextBase.cpp
|
| diff --git a/third_party/WebKit/Source/modules/webgl/WebGL2RenderingContextBase.cpp b/third_party/WebKit/Source/modules/webgl/WebGL2RenderingContextBase.cpp
|
| index 34756932ef61a40c21d25199bc685a8a30244ace..d56b52a8fa20306c69c24e7c087fd147139a02df 100644
|
| --- a/third_party/WebKit/Source/modules/webgl/WebGL2RenderingContextBase.cpp
|
| +++ b/third_party/WebKit/Source/modules/webgl/WebGL2RenderingContextBase.cpp
|
| @@ -25,6 +25,7 @@
|
| #include "modules/webgl/WebGLUniformLocation.h"
|
| #include "modules/webgl/WebGLVertexArrayObject.h"
|
| #include "platform/CheckedInt.h"
|
| +#include "platform/NotImplemented.h"
|
| #include "public/platform/WebGraphicsContext3D.h"
|
| #include "public/platform/WebGraphicsContext3DProvider.h"
|
| #include "wtf/OwnPtr.h"
|
| @@ -978,7 +979,7 @@
|
| Vector<uint8_t> tempData;
|
| if (data && (m_unpackFlipY || m_unpackPremultiplyAlpha)) {
|
| // FIXME: WebGLImageConversion needs to be updated to accept image depth.
|
| - NOTIMPLEMENTED();
|
| + notImplemented();
|
| return;
|
| }
|
|
|
| @@ -1051,7 +1052,7 @@
|
| bool changeUnpackParameters = false;
|
| if (data && (m_unpackFlipY || m_unpackPremultiplyAlpha)) {
|
| // FIXME: WebGLImageConversion needs to be updated to accept image depth.
|
| - NOTIMPLEMENTED();
|
| + notImplemented();
|
| changeUnpackParameters = true;
|
| }
|
| if (changeUnpackParameters)
|
|
|