From e544033ed824c2c70c2ba91e5cb5dafd1a86613f Mon Sep 17 00:00:00 2001 From: xolatile Date: Wed, 20 Mar 2024 03:27:49 -0400 Subject: [PATCH] Testing DrawTextEx... --- raylib.ads | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/raylib.ads b/raylib.ads index ddbe096..7af44a3 100644 --- a/raylib.ads +++ b/raylib.ads @@ -3020,10 +3020,17 @@ package Raylib is Convention => C, External_Name => "DrawText"; - --~procedure DrawTextEx (Font font, const char *text, Vector2 position, float fontSize, float spacing, Color tint) with - --~Import => True, - --~Convention => C, - --~External_Name => ""; + procedure Draw_Text_Ex ( + Data : Font := Get_Font_Default; + Text : String := ""; + Position : Vector_2D := (0.0, 0.0); + Font_Size : Float := 0.0; + Spacing : Float := 0.0; + Tint : Color := White + ) with + Import => True, + Convention => C, + External_Name => "DrawTextEx"; procedure Draw_Text_Pro ( Data : Font := Get_Font_Default; -- 2.39.5