mirror of
https://github.com/raylib-cs/raylib-cs
synced 2025-04-03 11:09:40 -04:00
Fixed capitalisation on Framebuffer externs
This commit is contained in:
parent
b679edc778
commit
aa940e3d48
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user