1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 19:48:20 +02:00

Lots of fixes

This commit is contained in:
Martin Cietwierkowski 2023-04-01 13:31:30 -04:00
parent 15ca2a4dfd
commit e87a579a1d
2 changed files with 292 additions and 271 deletions

File diff suppressed because it is too large Load diff

View file

@ -75,7 +75,7 @@ namespace SDL2
public static extern void GetHarfBuzzVersion(int32* major, int32* minor, int32* patch); public static extern void GetHarfBuzzVersion(int32* major, int32* minor, int32* patch);
[LinkName("TTF_ByteSwappedUNICODE")] [LinkName("TTF_ByteSwappedUNICODE")]
public static extern void ByteSwappedUNICODE(bool swapped); public static extern void ByteSwappedUNICODE(SDL.Bool swapped);
[LinkName("TTF_Init")] [LinkName("TTF_Init")]
public static extern int32 Init(); public static extern int32 Init();
@ -570,11 +570,11 @@ namespace SDL2
[LinkName("TTF_SetFontSDF")] [LinkName("TTF_SetFontSDF")]
public static extern int32 SetFontSDF( public static extern int32 SetFontSDF(
Font* font, Font* font,
bool on_off SDL.Bool on_off
); );
[LinkName("TTF_GetFontSDF")] [LinkName("TTF_GetFontSDF")]
public static extern bool GetFontSDF( public static extern SDL.Bool GetFontSDF(
Font* font Font* font
); );