diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/mutool/examples/draw-device.js | 2 | ||||
-rw-r--r-- | docs/mutool/run.html | 5 |
2 files changed, 6 insertions, 1 deletions
diff --git a/docs/mutool/examples/draw-device.js b/docs/mutool/examples/draw-device.js index 4912e956..140fb54b 100644 --- a/docs/mutool/examples/draw-device.js +++ b/docs/mutool/examples/draw-device.js @@ -40,6 +40,6 @@ var transform = [2,0,0,2,0,0] } device.popClip(); } -//device.flush(); +device.close(); pixmap.saveAsPNG("out.png"); diff --git a/docs/mutool/run.html b/docs/mutool/run.html index 07f852de..8460f2f8 100644 --- a/docs/mutool/run.html +++ b/docs/mutool/run.html @@ -368,6 +368,11 @@ otherwise the color is ignored completely and the mask is derived from the alpha Apply a clip mask to restrict the pattern to the desired shape. </dl> +<dl> +<dt>Device#close() +<dd>Tell the device that we are done, and flush any pending output. +</dl> + <h2> Path </h2> |