Changeset 143003 in webkit


Ignore:
Timestamp:
Feb 15, 2013 8:26:41 AM (11 years ago)
Author:
aandrey@chromium.org
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:
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r143000 r143003  
     12013-02-15  Andrey Adaikin  <aandrey@chromium.org>
     2
     3        Fix inconsistency in WebGLRenderingContext.idl for getAttribLocation
     4        https://bugs.webkit.org/show_bug.cgi?id=109892
     5
     6        Reviewed by Kentaro Hara.
     7
     8        * html/canvas/WebGLRenderingContext.idl:
     9
    1102013-02-15  Andrey Adaikin  <aandrey@chromium.org>
    211
  • trunk/Source/WebCore/html/canvas/WebGLRenderingContext.idl

    r142967 r143003  
    537537    [StrictTypeChecking, Custom] void getAttachedShaders(in WebGLProgram program) raises (DOMException);
    538538
    539     // FIXME: this differs from the current WebGL spec (should return GLint/long)
    540     [StrictTypeChecking] int          getAttribLocation(in WebGLProgram program, in DOMString name);
     539    [StrictTypeChecking] GLint        getAttribLocation(in WebGLProgram program, in DOMString name);
    541540
    542541    // any getBufferParameter(in GLenum target, in GLenum pname) raises(DOMException);
Note: See TracChangeset for help on using the changeset viewer.