Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1166)

Unified Diff: Source/core/html/canvas/WebGLSharedObject.h

Issue 894143002: Adding Blink bindings for WebGL 2 (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Removed accidentally added scratch file Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/html/canvas/WebGLSampler.idl ('k') | Source/core/html/canvas/WebGLSync.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
{
« no previous file with comments | « Source/core/html/canvas/WebGLSampler.idl ('k') | Source/core/html/canvas/WebGLSync.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698