summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Thompson <dthompson2@worcester.edu>2014-11-08 09:09:52 -0500
committerDavid Thompson <dthompson2@worcester.edu>2014-11-08 09:09:52 -0500
commit6ea24d5d8faf10b177764f940cfa1b129f9ca536 (patch)
tree312b00a8524cb4027b182c5e955ec18ecd9f9054
parent6e27a3e4696ede3eab720f25d169e8f6ed00bd0b (diff)
render: Move font module to sly/render directory.
* sly/font.scm: Delete. * sly/render/font.scm: New file. * Makefile.am (SOURCES): Add new file. Delete old one. * examples/font.scm: Use (sly render font). * examples/joystick.scm: Likewise.
-rw-r--r--Makefile.am2
-rw-r--r--examples/font.scm2
-rw-r--r--examples/joystick.scm2
-rw-r--r--sly/render/font.scm (renamed from sly/font.scm)2
4 files changed, 4 insertions, 4 deletions
diff --git a/Makefile.am b/Makefile.am
index 7a03e2a..d961740 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -28,7 +28,6 @@ SOURCES = \
sly/config.scm \
sly/coroutine.scm \
sly/event.scm \
- sly/font.scm \
sly/fps.scm \
sly/game.scm \
sly/input/keyboard.scm \
@@ -47,6 +46,7 @@ SOURCES = \
sly/render/utils.scm \
sly/render/color.scm \
sly/render/camera.scm \
+ sly/render/font.scm \
sly/render/framebuffer.scm \
sly/render/mesh.scm \
sly/render/texture.scm \
diff --git a/examples/font.scm b/examples/font.scm
index 8ce7976..bd19807 100644
--- a/examples/font.scm
+++ b/examples/font.scm
@@ -18,7 +18,7 @@
(use-modules (sly agenda)
(sly fps)
(sly render color)
- (sly font)
+ (sly render font)
(sly game)
(sly input mouse)
(sly signal)
diff --git a/examples/joystick.scm b/examples/joystick.scm
index 1f429ce..49e61ae 100644
--- a/examples/joystick.scm
+++ b/examples/joystick.scm
@@ -30,7 +30,7 @@
(sly signal)
(sly window)
(sly vector)
- (sly font))
+ (sly render font))
(open-window)
(start-sly-repl)
diff --git a/sly/font.scm b/sly/render/font.scm
index 2a9fcf4..6be7353 100644
--- a/sly/font.scm
+++ b/sly/render/font.scm
@@ -21,7 +21,7 @@
;;
;;; Code:
-(define-module (sly font)
+(define-module (sly render font)
#:use-module (rnrs bytevectors)
#:use-module (srfi srfi-2)
#:use-module (srfi srfi-4)