Changeset 64686 in webkit


Ignore:
Timestamp:
Aug 4, 2010 4:13:46 PM (14 years ago)
Author:
zmo@google.com
Message:

2010-08-04 Zhenyao Mo <zmo@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().
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r64685 r64686  
     12010-08-04  Zhenyao Mo  <zmo@google.com>
     2
     3        Reviewed by Adam Barth.
     4
     5        getAttachedShaders takes wrong parameter type in WebGLRenderingContext.idl
     6        https://bugs.webkit.org/show_bug.cgi?id=43517
     7
     8        * html/canvas/WebGLRenderingContext.idl: Fix the wrong parameter type in getAttachedShaders().
     9
    1102010-08-04  Kenneth Russell  <kbr@google.com>
    211
  • trunk/WebCore/html/canvas/WebGLRenderingContext.idl

    r63331 r64686  
    539539            raises (DOMException);
    540540
    541         // Array getAttachedShaders(GLuint program) raises (DOMException);
    542         [Custom] void getAttachedShaders(GLuint program)
     541        [Custom] void getAttachedShaders(in WebGLProgram program)
    543542            raises (DOMException);
    544543
Note: See TracChangeset for help on using the changeset viewer.