aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorxgoff <antipotroast@gmail.com>2012-08-02 11:35:37 -0500
committerxgoff <antipotroast@gmail.com>2012-08-02 11:35:37 -0500
commit0167b360e4c2b1515e24086d62357062cd398b8c (patch)
treef99630be921dd8ca0817a75b8759b039c42a3347 /README.md
parent06a2accace917edad968b970adfb23afa064e6ae (diff)
downloadlove2d-fakecanvas-0167b360e4c2b1515e24086d62357062cd398b8c.tar.gz
love2d-fakecanvas-0167b360e4c2b1515e24086d62357062cd398b8c.tar.bz2
love2d-fakecanvas-0167b360e4c2b1515e24086d62357062cd398b8c.tar.xz
love2d-fakecanvas-0167b360e4c2b1515e24086d62357062cd398b8c.zip
handle stencils... by discarding them.
i was expecting to have to jump through hoops to not have to call stencil functions multiple times but fortunately that is not the case
Diffstat (limited to 'README.md')
-rw-r--r--README.md1
1 files changed, 0 insertions, 1 deletions
diff --git a/README.md b/README.md
index 8aeea02..1344511 100644
--- a/README.md
+++ b/README.md
@@ -31,7 +31,6 @@ love.graphics.setCanvas(canvas3)
```
the background gets saved when `setCanvas()` is called with an argument, but it doesn't get restored until it's called without an argument. currently only one state is saved so it's possible the above code would trash the background. this isn't a problem if you only ever use `renderTo()` because that automatically handles the `setCanvas()` calls
* `love.graphics.translate()`, `love.graphics.rotate()`, `love.graphics.scale()`, and `love.graphics.shear()` are not handled
-* stencils are not handled
* will changing modes during canvas drawing destroy the contents?
beware: i have done only minimal testing of this library so it's possible there are cases where it doesn't work correctly or at all, or that the entire idea is ultimately unworkable!