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

Unified Diff: Source/core/html/canvas/WebGLRenderingContextBase.idl

Issue 389583002: Use code generator's argument processing in custom WebGL methods (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 5 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/WebGLRenderingContextBase.idl
diff --git a/Source/core/html/canvas/WebGLRenderingContextBase.idl b/Source/core/html/canvas/WebGLRenderingContextBase.idl
index 9a1c8640b14b4168462f3bc2622820e729fb3d85..edec35c7638b388290943b7c530ff08e1fc5cdd5 100644
--- a/Source/core/html/canvas/WebGLRenderingContextBase.idl
+++ b/Source/core/html/canvas/WebGLRenderingContextBase.idl
@@ -575,7 +575,7 @@ typedef unrestricted float GLclampf;
[Custom] any getTexParameter(GLenum target, GLenum pname);
- [Custom] any getUniform(WebGLProgram? program, WebGLUniformLocation location);
+ [Custom] any getUniform(WebGLProgram? program, WebGLUniformLocation? location);
Jens Widell 2014/07/11 12:24:30 The location argument is nullable in the specifica
WebGLUniformLocation getUniformLocation(WebGLProgram? program, DOMString name);

Powered by Google App Engine
This is Rietveld 408576698