From aa940e3d486029e88cbaba4519f07cad18995543 Mon Sep 17 00:00:00 2001 From: Ben Beshara Date: Tue, 9 Feb 2021 09:53:07 +1100 Subject: [PATCH] Fixed capitalisation on Framebuffer externs --- Raylib-cs/Rlgl.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Raylib-cs/Rlgl.cs b/Raylib-cs/Rlgl.cs index ef6ee46..18a36b0 100644 --- a/Raylib-cs/Rlgl.cs +++ b/Raylib-cs/Rlgl.cs @@ -360,21 +360,21 @@ namespace Raylib_cs // Load an empty framebuffer [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern uint rlLoadFrameBuffer(int width, int height); + public static extern uint rlLoadFramebuffer(int width, int height); // Attach texture/renderbuffer to a framebuffer [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void rlFrameBufferAttach(uint fboId, uint texId, FramebufferAttachType attachType, FramebufferTexType texType); + public static extern void rlFramebufferAttach(uint fboId, uint texId, FramebufferAttachType attachType, FramebufferTexType texType); // Verify framebuffer is complete [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] - public static extern bool rlFrameBufferComplete(uint id); + public static extern bool rlFramebufferComplete(uint id); // Delete framebuffer from GPU [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] - public static extern bool rlUnloadFrameBuffer(uint id); + public static extern bool rlUnloadFramebuffer(uint id); // Vertex data management // Upload vertex data into GPU and provided VAO/VBO ids