mirror of
https://github.com/raylib-cs/raylib-cs
synced 2025-07-02 19:13:43 -04:00
Fix usage of uint in bindings (#246)
This commit is contained in:
@ -613,9 +613,9 @@ public static unsafe partial class Rlgl
|
||||
[DllImport(NativeLibName, EntryPoint = "rlGetGlTextureFormats", CallingConvention = CallingConvention.Cdecl)]
|
||||
public static extern void GetGlTextureFormats(
|
||||
PixelFormat format,
|
||||
int* glInternalFormat,
|
||||
int* glFormat,
|
||||
int* glType
|
||||
uint* glInternalFormat,
|
||||
uint* glFormat,
|
||||
uint* glType
|
||||
);
|
||||
|
||||
/// <summary>Get OpenGL internal formats</summary>
|
||||
|
Reference in New Issue
Block a user