From 40f21faf0413748213066632c3f2ad7e11668d71 Mon Sep 17 00:00:00 2001 From: David Thompson Date: Fri, 7 Nov 2014 22:31:16 -0500 Subject: render: Move sprite module to sly/render directory. * sly/sprite.scm: Delete. * sly/render/sprite.scm: New file. * Makefile.am (SOURCES): Add new file and delete old one. * sly/font.scm: Use (sly render sprite). * examples/animation.scm: Likewise. * examples/common.scm: Likewise. * examples/coroutine.scm: Likewise. * examples/joystick.scm: Likewise. * examples/particles.scm: Likewise. * examples/simple.scm: Likewise. * examples/tilemap.scm: Likewise. * examples/transition.scm: Likewise. --- examples/animation.scm | 2 +- examples/common.scm | 2 +- examples/coroutine.scm | 2 +- examples/joystick.scm | 2 +- examples/particles.scm | 2 +- examples/simple.scm | 2 +- examples/tilemap.scm | 2 +- examples/transition.scm | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) (limited to 'examples') diff --git a/examples/animation.scm b/examples/animation.scm index 04fc46e..64a49c1 100644 --- a/examples/animation.scm +++ b/examples/animation.scm @@ -17,7 +17,7 @@ (use-modules (sly animation) (sly game) - (sly sprite) + (sly render sprite) (sly tileset) (sly vector) (sly window)) diff --git a/examples/common.scm b/examples/common.scm index 07e7aae..f3c91b2 100644 --- a/examples/common.scm +++ b/examples/common.scm @@ -21,7 +21,7 @@ (sly keyboard) (sly repl) (sly signal) - (sly sprite) + (sly render sprite) (sly window)) (open-window) diff --git a/examples/coroutine.scm b/examples/coroutine.scm index 708f174..ae8229d 100644 --- a/examples/coroutine.scm +++ b/examples/coroutine.scm @@ -19,7 +19,7 @@ (sly agenda) (sly coroutine) (sly game) - (sly sprite) + (sly render sprite) (sly render texture) (sly vector) (sly window)) diff --git a/examples/joystick.scm b/examples/joystick.scm index 268c1ee..6714ff3 100644 --- a/examples/joystick.scm +++ b/examples/joystick.scm @@ -24,7 +24,7 @@ (use-modules (sly game) (sly repl) - (sly sprite) + (sly render sprite) (sly render texture) (sly joystick) (sly signal) diff --git a/examples/particles.scm b/examples/particles.scm index 1d2f335..17a043d 100644 --- a/examples/particles.scm +++ b/examples/particles.scm @@ -19,7 +19,7 @@ (srfi srfi-9) (sly agenda) (sly game) - (sly sprite) + (sly render sprite) (sly render texture) (sly vector) (sly window)) diff --git a/examples/simple.scm b/examples/simple.scm index 09554d3..92a2010 100644 --- a/examples/simple.scm +++ b/examples/simple.scm @@ -19,7 +19,7 @@ (sly game) (sly rect) (sly scene) - (sly sprite) + (sly render sprite) (sly transform) (sly vector) (sly window) diff --git a/examples/tilemap.scm b/examples/tilemap.scm index 8ce7f81..05dbd1f 100644 --- a/examples/tilemap.scm +++ b/examples/tilemap.scm @@ -20,7 +20,7 @@ (srfi srfi-9) (srfi srfi-42) (sly game) - (sly sprite) + (sly render sprite) (sly render texture) (sly tileset) (sly vector) diff --git a/examples/transition.scm b/examples/transition.scm index 606942f..1e18e0e 100644 --- a/examples/transition.scm +++ b/examples/transition.scm @@ -16,7 +16,7 @@ ;;; . (use-modules (sly game) - (sly sprite) + (sly render sprite) (sly vector) (sly window) (sly color) -- cgit v1.2.3