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,
|
Convention => C,
|
||||||
External_Name => "DrawText";
|
External_Name => "DrawText";
|
||||||
|
|
||||||
--~procedure DrawTextEx (Font font, const char *text, Vector2 position, float fontSize, float spacing, Color tint) with
|
procedure Draw_Text_Ex (
|
||||||
--~Import => True,
|
Data : Font := Get_Font_Default;
|
||||||
--~Convention => C,
|
Text : String := "";
|
||||||
--~External_Name => "";
|
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 (
|
procedure Draw_Text_Pro (
|
||||||
Data : Font := Get_Font_Default;
|
Data : Font := Get_Font_Default;
|
||||||
|
Loading…
Reference in New Issue
Block a user