aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgonzo <gonzo@toniatuh.com>2024-11-18 22:02:00 +0100
committergonzo <gonzo@toniatuh.com>2024-11-18 22:10:29 +0100
commitde47dbc28c31e217897b9cb68028b36755ba9928 (patch)
treed3983b4d65a2b11b913aa257ded99cafec3d3579
parent4aefdc362813c5fd5dca4f677088d374058fa4b9 (diff)
downloadgambit-raylib-master.tar.gz
added DrawTextureExHEADmaster
-rw-r--r--texture.scm2
1 files changed, 2 insertions, 0 deletions
diff --git a/texture.scm b/texture.scm
index 0de9ac3..f586dd0 100644
--- a/texture.scm
+++ b/texture.scm
@@ -14,6 +14,8 @@
;; Draw a Texture2D with extended parameters
;; void DrawTextureEx(Texture2D texture, Vector2 position, float rotation, float scale, Color tint)
+(define draw-texture-ex
+ (c-lambda (texture vec2 float float color) void "DrawTextureEx"))
;; Draw a part of a texture defined by a rectangle
;; void DrawTextureRec(Texture2D texture, Rectangle source, Vector2 position, Color tint)