[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

zmo at google.com zmo at google.com
Wed Dec 22 11:43:09 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 171833bbdae1abcd4e12d001c4eca7609de5fe88
Author: zmo at google.com <zmo at google.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Aug 4 23:13:46 2010 +0000

    2010-08-04  Zhenyao Mo  <zmo at google.com>
    
            Reviewed by Adam Barth.
    
            getAttachedShaders takes wrong parameter type in WebGLRenderingContext.idl
            https://bugs.webkit.org/show_bug.cgi?id=43517
    
            * html/canvas/WebGLRenderingContext.idl: Fix the wrong parameter type in getAttachedShaders().
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@64686 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 3a4b02d..28b005e 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,12 @@
+2010-08-04  Zhenyao Mo  <zmo at google.com>
+
+        Reviewed by Adam Barth.
+
+        getAttachedShaders takes wrong parameter type in WebGLRenderingContext.idl
+        https://bugs.webkit.org/show_bug.cgi?id=43517
+
+        * html/canvas/WebGLRenderingContext.idl: Fix the wrong parameter type in getAttachedShaders().
+
 2010-08-04  Kenneth Russell  <kbr at google.com>
 
         Reviewed by Dimitri Glazkov.
diff --git a/WebCore/html/canvas/WebGLRenderingContext.idl b/WebCore/html/canvas/WebGLRenderingContext.idl
index 654c7aa..c53953b 100644
--- a/WebCore/html/canvas/WebGLRenderingContext.idl
+++ b/WebCore/html/canvas/WebGLRenderingContext.idl
@@ -538,8 +538,7 @@ module html {
         WebGLActiveInfo getActiveUniform(in WebGLProgram program, in unsigned long index)
             raises (DOMException);
 
-        // Array getAttachedShaders(GLuint program) raises (DOMException);
-        [Custom] void getAttachedShaders(GLuint program)
+        [Custom] void getAttachedShaders(in WebGLProgram program)
             raises (DOMException);
 
         int          getAttribLocation(in WebGLProgram program, in DOMString name);

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list