summaryrefslogtreecommitdiff
path: root/2d/sprite.scm
diff options
context:
space:
mode:
authorDavid Thompson <dthompson@member.fsf.org>2013-08-29 22:52:26 -0400
committerDavid Thompson <dthompson@member.fsf.org>2013-08-29 22:52:26 -0400
commitd2af56e4b6489e7f157c2d4a0e65a471f0984915 (patch)
tree541c4053b1c5c2cadcb61f0b185cf7b3ac22838d /2d/sprite.scm
parent2f93a46fe73ab8127d2cff85fb1bba60a25ded19 (diff)
Clean up lines longer than 80 characters.
Diffstat (limited to '2d/sprite.scm')
-rw-r--r--2d/sprite.scm9
1 files changed, 6 insertions, 3 deletions
diff --git a/2d/sprite.scm b/2d/sprite.scm
index 7c036f3..16d40b6 100644
--- a/2d/sprite.scm
+++ b/2d/sprite.scm
@@ -142,7 +142,8 @@
;; texture-region, animation, etc.) with a given position, scale,
;; rotation, and color.
(define-record-type <sprite>
- (%make-sprite drawable position scale rotation color anchor vertices dirty animation-state)
+ (%make-sprite drawable position scale rotation color anchor vertices
+ dirty animation-state)
sprite?
(drawable sprite-drawable set-sprite-drawable!)
(position sprite-position %set-sprite-position!)
@@ -162,7 +163,8 @@
(animation-state (if (animation? drawable)
(make-animation-state drawable)
#f)))
- (%make-sprite drawable position scale rotation color anchor vertices #t animation-state)))
+ (%make-sprite drawable position scale rotation color anchor vertices
+ #t animation-state)))
(define-syntax-rule (dirty-sprite-setter setter private-setter)
"Defines a setter that calls the private version of the given
@@ -311,7 +313,8 @@ bound."
(define* (make-sprite-batch #:optional (max-size 1000))
"Creates a new sprite batch. The default max-size is 1000."
- (%make-sprite-batch max-size 0 #f (make-packed-array sprite-vertex (* 4 max-size))))
+ (let ((vertex-array (make-packed-array sprite-vertex (* 4 max-size))))
+ (%make-sprite-batch max-size 0 #f vertex-array)))
(define (sprite-batch-draw . args)
"Adds a textured quad to the current sprite batch."