Testing DrawTextEx...
This commit is contained in:
parent
8acb71cadc
commit
e544033ed8
15
raylib.ads
15
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;
|
||||
|
Loading…
Reference in New Issue
Block a user