- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Fri, 13 Jun 2008 02:16:31 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec In directory hutz:/tmp/cvs-serv4840 Modified Files: Overview.html Log Message: Make it clear there are two putImageData() methods with different amounts of arguments. (whatwg r1763) Index: Overview.html =================================================================== RCS file: /sources/public/html5/spec/Overview.html,v retrieving revision 1.952 retrieving revision 1.953 diff -u -d -r1.952 -r1.953 --- Overview.html 13 Jun 2008 02:11:45 -0000 1.952 +++ Overview.html 13 Jun 2008 02:16:28 -0000 1.953 @@ -18512,7 +18512,7 @@ <a href="#imagedata">ImageData</a> <a href="#createimagedata" title=dom-context-2d-createImageData>createImageData</a>(in float sw, in float sh); <a href="#imagedata">ImageData</a> <a href="#getimagedata" title=dom-context-2d-getImageData>getImageData</a>(in float sx, in float sy, in float sw, in float sh); void <a href="#putimagedata" title=dom-context-2d-putImageData>putImageData</a>(in <a href="#imagedata">ImageData</a> imagedata, in float dx, in float dy); - void <a href="#putimagedata" title=dom-context-2d-putImageData>putImageData</a>(in <a href="#imagedata">ImageData</a> imagedata, in float dx, in float dy, in float dirtyX, in float dirtyY, in float dirtyWidth, in float dirtyHeight); + void <a href="#putimagedata0" title=dom-context-2d-putImageData-dirty>putImageData</a>(in <a href="#imagedata">ImageData</a> imagedata, in float dx, in float dy, in float dirtyX, in float dirtyY, in float dirtyWidth, in float dirtyHeight); }; interface <dfn id=canvasgradient>CanvasGradient</dfn> { @@ -20379,10 +20379,13 @@ <p>The <dfn id=putimagedata title=dom-context-2d-putImageData><code>putImageData(<var + title="">imagedata</var>, <var title="">dx</var>, <var + title="">dy</var>)</code></dfn> and <dfn id=putimagedata0 + title=dom-context-2d-putImageData-dirty><code>putImageData(<var title="">imagedata</var>, <var title="">dx</var>, <var title="">dy</var>, <var title="">dirtyX</var>, <var title="">dirtyY</var>, <var title="">dirtyWidth</var>, <var title="">dirtyHeight</var>)</code></dfn> - method writes data from <code><a href="#imagedata">ImageData</a></code> + methods write data from <code><a href="#imagedata">ImageData</a></code> structures back to the canvas. <p>If any of the arguments to the method are infinite or NaN, the method
Received on Friday, 13 June 2008 02:17:04 UTC