BindFramebuffer added
This commit is contained in:
parent
41a6f1b02e
commit
d5f5abd210
1 changed files with 4 additions and 0 deletions
|
|
@ -336,6 +336,10 @@ public static unsafe partial class Rlgl
|
|||
[DllImport(NativeLibName, EntryPoint = "rlBlitFramebuffer", CallingConvention = CallingConvention.Cdecl)]
|
||||
public static extern void BlitFramebuffer();
|
||||
|
||||
/// <summary>Bind framebuffer (FBO)</summary>
|
||||
[DllImport(NativeLibName, EntryPoint = "rlBindFramebuffer", CallingConvention = CallingConvention.Cdecl)]
|
||||
public static extern void BindFramebuffer(uint target, uint framebuffer);
|
||||
|
||||
/// <summary>Activate multiple draw color buffers</summary>
|
||||
[DllImport(NativeLibName, EntryPoint = "rlActiveDrawBuffers", CallingConvention = CallingConvention.Cdecl)]
|
||||
public static extern void ActiveDrawBuffers(int count);
|
||||
|
|
|
|||
Loading…
Reference in a new issue