diff options
author | David Thompson <dthompson2@worcester.edu> | 2014-11-07 22:22:17 -0500 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2014-11-07 22:22:17 -0500 |
commit | e3f07cfd92adfcd62d6605af16e122f85a4249dd (patch) | |
tree | de68e575c9f99cb180128ab95083970df1eedc43 /examples | |
parent | 694b82193877fdf2abbf790b61dbe0c8db8945a8 (diff) |
render: Move texture module to sly/render directory.
* sly/texture.scm: Delete.
* sly/render/texture.scm: New file.
* Makefile.am (SOURCES): Add it.
* sly/animation.scm: Use (sly render texture).
* sly/font.scm: Likewise.
* sly/mesh.scm: Likewise.
* sly/render/context.scm: Likewise.
* sly/render/framebuffer.scm: Likewise.
* sly/render/renderer.scm: Likewise.
* sly/shape.scm: Likewise.
* sly/sprite.scm: Likewise.
* sly/tileset.scm: Likewise.
* examples/coroutine.scm: Likewise.
* examples/joystick.scm: Likewise.
* examples/particles.scm: Likewise.
* examples/tilemap.scm: Likewise.
* examples/transition.scm: Likewise.
Diffstat (limited to 'examples')
-rw-r--r-- | examples/coroutine.scm | 2 | ||||
-rw-r--r-- | examples/joystick.scm | 2 | ||||
-rw-r--r-- | examples/particles.scm | 2 | ||||
-rw-r--r-- | examples/tilemap.scm | 2 | ||||
-rw-r--r-- | examples/transition.scm | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/examples/coroutine.scm b/examples/coroutine.scm index ea7f881..708f174 100644 --- a/examples/coroutine.scm +++ b/examples/coroutine.scm @@ -20,7 +20,7 @@ (sly coroutine) (sly game) (sly sprite) - (sly texture) + (sly render texture) (sly vector) (sly window)) diff --git a/examples/joystick.scm b/examples/joystick.scm index 3df938d..268c1ee 100644 --- a/examples/joystick.scm +++ b/examples/joystick.scm @@ -25,7 +25,7 @@ (sly game) (sly repl) (sly sprite) - (sly texture) + (sly render texture) (sly joystick) (sly signal) (sly window) diff --git a/examples/particles.scm b/examples/particles.scm index a6c19a7..1d2f335 100644 --- a/examples/particles.scm +++ b/examples/particles.scm @@ -20,7 +20,7 @@ (sly agenda) (sly game) (sly sprite) - (sly texture) + (sly render texture) (sly vector) (sly window)) diff --git a/examples/tilemap.scm b/examples/tilemap.scm index bfe41b0..8ce7f81 100644 --- a/examples/tilemap.scm +++ b/examples/tilemap.scm @@ -21,7 +21,7 @@ (srfi srfi-42) (sly game) (sly sprite) - (sly texture) + (sly render texture) (sly tileset) (sly vector) (sly window) diff --git a/examples/transition.scm b/examples/transition.scm index 39f7a93..606942f 100644 --- a/examples/transition.scm +++ b/examples/transition.scm @@ -21,7 +21,7 @@ (sly window) (sly color) (sly signal) - (sly texture) + (sly render texture) (sly transition)) (load "common.scm") |