| Index: Source/core/html/canvas/WebGLSharedObject.h
|
| diff --git a/Source/core/html/canvas/WebGLSharedObject.h b/Source/core/html/canvas/WebGLSharedObject.h
|
| index eec08d974b9d000031c9e166e4b3cc4b60475754..ab27abff8dfe0a4b1ea04d25da23c7ff7e1d3c60 100644
|
| --- a/Source/core/html/canvas/WebGLSharedObject.h
|
| +++ b/Source/core/html/canvas/WebGLSharedObject.h
|
| @@ -43,9 +43,13 @@ public:
|
|
|
| virtual bool isBuffer() const { return false; }
|
| virtual bool isProgram() const { return false; }
|
| + virtual bool isQuery() const { return false; }
|
| virtual bool isRenderbuffer() const { return false; }
|
| + virtual bool isSampler() const { return false; }
|
| virtual bool isShader() const { return false; }
|
| + virtual bool isSync() const { return false; }
|
| virtual bool isTexture() const { return false; }
|
| + virtual bool isTransformFeedback() const { return false; }
|
|
|
| virtual bool validate(const WebGLContextGroup* contextGroup, const WebGLRenderingContextBase*) const override final
|
| {
|
|
|