Skip to content

Commit

Permalink
[e] (0) Make it clear there are two putImageData() methods with diffe…
Browse files Browse the repository at this point in the history
…rent amounts of arguments.

git-svn-id: http://svn.whatwg.org/webapps@1763 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Jun 13, 2008
1 parent 2242ec8 commit 7a73124
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
7 changes: 5 additions & 2 deletions index
Expand Up @@ -18408,7 +18408,7 @@ the time Marco had stuck his tongue out...&lt;/p></pre>
<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> {
Expand Down Expand Up @@ -20275,10 +20275,13 @@ XXXDVT (also check for '- -' bits in the part above) -->

<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
Expand Down
7 changes: 5 additions & 2 deletions source
Expand Up @@ -16010,7 +16010,7 @@ the time Marco had stuck his tongue out...&lt;/p></pre>
<span>ImageData</span> <span title="dom-context-2d-createImageData">createImageData</span>(in float sw, in float sh);
<span>ImageData</span> <span title="dom-context-2d-getImageData">getImageData</span>(in float sx, in float sy, in float sw, in float sh);
void <span title="dom-context-2d-putImageData">putImageData</span>(in <span>ImageData</span> imagedata, in float dx, in float dy);
void <span title="dom-context-2d-putImageData">putImageData</span>(in <span>ImageData</span> imagedata, in float dx, in float dy, in float dirtyX, in float dirtyY, in float dirtyWidth, in float dirtyHeight);
void <span title="dom-context-2d-putImageData-dirty">putImageData</span>(in <span>ImageData</span> imagedata, in float dx, in float dy, in float dirtyX, in float dirtyY, in float dirtyWidth, in float dirtyHeight);
};

interface <dfn>CanvasGradient</dfn> {
Expand Down Expand Up @@ -17922,9 +17922,12 @@ XXXDVT (also check for '- -' bits in the part above) -->
<p>The <dfn
title="dom-context-2d-putImageData"><code>putImageData(<var
title="">imagedata</var>, <var title="">dx</var>, <var
title="">dy</var>)</code></dfn> and <dfn
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
title="">dirtyHeight</var>)</code></dfn> methods write data from
<code>ImageData</code> structures back to the canvas.</p>

<p>If any of the arguments to the method are infinite or NaN, the
Expand Down

0 comments on commit 7a73124

Please sign in to comment.