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

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

Issue 1157983002: Update WebGLVertexArrayObjectOES to WebGLVertexArrayObject for WebGL2 (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix crash in testing conformance/context/context-lost-restored.html Created 5 years, 7 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
Index: Source/core/html/canvas/WebGL2RenderingContextBase.h
diff --git a/Source/core/html/canvas/WebGL2RenderingContextBase.h b/Source/core/html/canvas/WebGL2RenderingContextBase.h
index 27495734972c5494462a4285b1b3570a15d19b46..98de6f71bcc0f11bb7290c929a2a5fc19c8ceca3 100644
--- a/Source/core/html/canvas/WebGL2RenderingContextBase.h
+++ b/Source/core/html/canvas/WebGL2RenderingContextBase.h
@@ -154,10 +154,10 @@ public:
void uniformBlockBinding(WebGLProgram*, GLuint, GLuint);
/* Vertex Array Objects */
- PassRefPtrWillBeRawPtr<WebGLVertexArrayObjectOES> createVertexArray();
- void deleteVertexArray(WebGLVertexArrayObjectOES*);
- GLboolean isVertexArray(WebGLVertexArrayObjectOES*);
- void bindVertexArray(WebGLVertexArrayObjectOES*);
+ PassRefPtrWillBeRawPtr<WebGLVertexArrayObject> createVertexArray();
+ void deleteVertexArray(WebGLVertexArrayObject*);
+ GLboolean isVertexArray(WebGLVertexArrayObject*);
+ void bindVertexArray(WebGLVertexArrayObject*);
/* WebGLRenderingContextBase overrides */
void initializeNewContext() override;

Powered by Google App Engine
This is Rietveld 408576698