Title: [143003] trunk/Source/WebCore
Revision
143003
Author
[email protected]
Date
2013-02-15 08:26:41 -0800 (Fri, 15 Feb 2013)

Log Message

Fix inconsistency in WebGLRenderingContext.idl for getAttribLocation
https://bugs.webkit.org/show_bug.cgi?id=109892

Reviewed by Kentaro Hara.

* html/canvas/WebGLRenderingContext.idl:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (143002 => 143003)


--- trunk/Source/WebCore/ChangeLog	2013-02-15 16:21:35 UTC (rev 143002)
+++ trunk/Source/WebCore/ChangeLog	2013-02-15 16:26:41 UTC (rev 143003)
@@ -1,5 +1,14 @@
 2013-02-15  Andrey Adaikin  <[email protected]>
 
+        Fix inconsistency in WebGLRenderingContext.idl for getAttribLocation
+        https://bugs.webkit.org/show_bug.cgi?id=109892
+
+        Reviewed by Kentaro Hara.
+
+        * html/canvas/WebGLRenderingContext.idl:
+
+2013-02-15  Andrey Adaikin  <[email protected]>
+
         Web Inspector: [Canvas] show replay log grouped by draw calls
         https://bugs.webkit.org/show_bug.cgi?id=109592
 

Modified: trunk/Source/WebCore/html/canvas/WebGLRenderingContext.idl (143002 => 143003)


--- trunk/Source/WebCore/html/canvas/WebGLRenderingContext.idl	2013-02-15 16:21:35 UTC (rev 143002)
+++ trunk/Source/WebCore/html/canvas/WebGLRenderingContext.idl	2013-02-15 16:26:41 UTC (rev 143003)
@@ -536,8 +536,7 @@
 
     [StrictTypeChecking, Custom] void getAttachedShaders(in WebGLProgram program) raises (DOMException);
 
-    // FIXME: this differs from the current WebGL spec (should return GLint/long)
-    [StrictTypeChecking] int          getAttribLocation(in WebGLProgram program, in DOMString name);
+    [StrictTypeChecking] GLint        getAttribLocation(in WebGLProgram program, in DOMString name);
 
     // any getBufferParameter(in GLenum target, in GLenum pname) raises(DOMException);
     [StrictTypeChecking, Custom] void getBufferParameter();
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to