| Index: Source/core/html/canvas/WebGL2RenderingContextBase.h
|
| diff --git a/Source/core/html/canvas/WebGL2RenderingContextBase.h b/Source/core/html/canvas/WebGL2RenderingContextBase.h
|
| index e7f0295bcf281d80e4728bf0ce99af8f9e985063..3c7987bbc47def594e6a09bb56ac269734ef3a99 100644
|
| --- a/Source/core/html/canvas/WebGL2RenderingContextBase.h
|
| +++ b/Source/core/html/canvas/WebGL2RenderingContextBase.h
|
| @@ -163,6 +163,7 @@ public:
|
| void initializeNewContext() override;
|
| void bindFramebuffer(GLenum target, WebGLFramebuffer*) override;
|
| ScriptValue getParameter(ScriptState*, GLenum pname) override;
|
| + ScriptValue getTexParameter(ScriptState*, GLenum target, GLenum pname) override;
|
|
|
| DECLARE_VIRTUAL_TRACE();
|
|
|
| @@ -177,6 +178,7 @@ protected:
|
| bool validateCapability(const char* functionName, GLenum) override;
|
| bool validateBufferTarget(const char* functionName, GLenum target) override;
|
| bool validateAndUpdateBufferBindTarget(const char* functionName, GLenum, WebGLBuffer*) override;
|
| + WebGLTexture* validateTextureBinding(const char* functionName, GLenum target, bool useSixEnumsForCubeMap) override;
|
|
|
| RefPtrWillBeMember<WebGLFramebuffer> m_readFramebufferBinding;
|
| };
|
|
|