From bac68f1435760605b2db5de37894db5b7bdd81c2 Mon Sep 17 00:00:00 2001 From: JupiterRider <60042618+JupiterRider@users.noreply.github.com> Date: Fri, 6 Dec 2024 21:47:32 +0100 Subject: [PATCH] LoadFramebuffer updated --- Raylib-cs/interop/Rlgl.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Raylib-cs/interop/Rlgl.cs b/Raylib-cs/interop/Rlgl.cs index 2c60142..ba0f7b8 100644 --- a/Raylib-cs/interop/Rlgl.cs +++ b/Raylib-cs/interop/Rlgl.cs @@ -668,7 +668,7 @@ public static unsafe partial class Rlgl /// Load an empty framebuffer [DllImport(NativeLibName, EntryPoint = "rlLoadFramebuffer", CallingConvention = CallingConvention.Cdecl)] - public static extern uint LoadFramebuffer(int width, int height); + public static extern uint LoadFramebuffer(); /// Attach texture/renderbuffer to a framebuffer [DllImport(NativeLibName, EntryPoint = "rlFramebufferAttach", CallingConvention = CallingConvention.Cdecl)]