Watch
2
0
Fork
You've already forked raylib-cs
0

fix: Wrong signature of FrameBufferComplete

This commit is contained in:
tiger tiger tiger 2026-07-07 22:03:13 +02:00
commit 4cfb534b74
2 changed files with 2 additions and 2 deletions

View file

@ -20,6 +20,6 @@
</ItemGroup>
<ItemGroup>
<PackageReference Include="Raylib-cs" Version="8.0.0"/>
<PackageReference Include="Raylib-cs" Version="$(RaylibCsVersion)"/>
</ItemGroup>
</Project>

View file

@ -821,7 +821,7 @@ public static unsafe partial class Rlgl
/// <summary>Verify framebuffer is complete</summary>
[LibraryImport(NativeLibName, EntryPoint = "rlFramebufferComplete")]
[UnmanagedCallConv(CallConvs = [typeof(CallConvCdecl)])]
public static partial int FramebufferComplete(uint id);
public static partial CBool FramebufferComplete(uint id);
/// <summary>Delete framebuffer from GPU</summary>
[LibraryImport(NativeLibName, EntryPoint = "rlUnloadFramebuffer")]