mirror of
https://github.com/raylib-cs/raylib-cs
synced 2025-04-03 11:09:40 -04:00
Merge pull request #72 from benbeshara/master
Fixed capitalisation on Framebuffer externs
This commit is contained in:
commit
3aa1491fe1
@ -360,21 +360,21 @@ namespace Raylib_cs
|
|||||||
|
|
||||||
// Load an empty framebuffer
|
// Load an empty framebuffer
|
||||||
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
[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
|
// Attach texture/renderbuffer to a framebuffer
|
||||||
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
[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
|
// Verify framebuffer is complete
|
||||||
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||||
[return: MarshalAs(UnmanagedType.I1)]
|
[return: MarshalAs(UnmanagedType.I1)]
|
||||||
public static extern bool rlFrameBufferComplete(uint id);
|
public static extern bool rlFramebufferComplete(uint id);
|
||||||
|
|
||||||
// Delete framebuffer from GPU
|
// Delete framebuffer from GPU
|
||||||
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||||
[return: MarshalAs(UnmanagedType.I1)]
|
[return: MarshalAs(UnmanagedType.I1)]
|
||||||
public static extern bool rlUnloadFrameBuffer(uint id);
|
public static extern bool rlUnloadFramebuffer(uint id);
|
||||||
|
|
||||||
// Vertex data management
|
// Vertex data management
|
||||||
// Upload vertex data into GPU and provided VAO/VBO ids
|
// Upload vertex data into GPU and provided VAO/VBO ids
|
||||||
|
Loading…
x
Reference in New Issue
Block a user