diff options
author | David Thompson <dthompson2@worcester.edu> | 2020-12-05 15:32:21 -0500 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2020-12-05 15:32:21 -0500 |
commit | 8eefa1f46503ef57b7714183b926dd453f4efe64 (patch) | |
tree | 1f4b682c7006a345808c40632d218d6bb5fd0161 /sdl2 | |
parent | 3821e81fd0b61e719b7d9582f2ffcc38078256af (diff) |
render: Rename get-texture-color-mod to texture-color-mod.
Diffstat (limited to 'sdl2')
-rw-r--r-- | sdl2/render.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sdl2/render.scm b/sdl2/render.scm index 40ad7da..132419c 100644 --- a/sdl2/render.scm +++ b/sdl2/render.scm @@ -355,7 +355,7 @@ created with 'texture')" (bytevector-u8-ref bv 0)))) -(define (get-texture-color-mod texture) +(define (texture-color-mod texture) "Get color mod of TEXTURE as a list of the integers." (let ((bv (make-bytevector 3))) (let ((result (ffi:sdl-get-texture-color-mod |