From de47dbc28c31e217897b9cb68028b36755ba9928 Mon Sep 17 00:00:00 2001 From: gonzo Date: Mon, 18 Nov 2024 22:02:00 +0100 Subject: added DrawTextureEx --- texture.scm | 2 ++ 1 file changed, 2 insertions(+) (limited to 'texture.scm') 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) -- cgit v1.2.3