From f4df3a7ac08bb6c50956bf27534d4f51423ec863 Mon Sep 17 00:00:00 2001 From: David Thompson Date: Sat, 5 Dec 2020 13:05:33 -0500 Subject: ttf: Return multiple values instead of a list in font-size. --- sdl2/ttf.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sdl2/ttf.scm') diff --git a/sdl2/ttf.scm b/sdl2/ttf.scm index f3161b2..b1345d6 100644 --- a/sdl2/ttf.scm +++ b/sdl2/ttf.scm @@ -94,14 +94,14 @@ size is POINT-SIZE." (ffi:ttf-font-line-skip (unwrap-font font))) (define (font-size font text) - "Return a 2-element list containing the resulting surface size of -the string TEXT using FONT in the following format: (width height)." + "Return 2 values for the resulting surface size of the string TEXT +using FONT." (let ((bv (make-s32vector 2))) (if (zero? (ffi:ttf-size-utf8 (unwrap-font font) (string->pointer text) (bytevector->pointer bv) (bytevector->pointer bv 4))) - (s32vector->list bv) + (values (s32vector-ref bv 0) (s32vector-ref bv 1)) (sdl-error "size-utf8" "failed to get size utf8")))) (define (font-glyph-index font char) -- cgit v1.2.3