From e3f07cfd92adfcd62d6605af16e122f85a4249dd Mon Sep 17 00:00:00 2001 From: David Thompson Date: Fri, 7 Nov 2014 22:22:17 -0500 Subject: 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. --- examples/coroutine.scm | 2 +- examples/joystick.scm | 2 +- examples/particles.scm | 2 +- examples/tilemap.scm | 2 +- examples/transition.scm | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) (limited to 'examples') 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") -- cgit v1.2.3