mirror of
https://github.com/raylib-cs/raylib-cs
synced 2025-07-02 19:13:43 -04:00
Port to Raylib-5.0.0 (#210)
Co-authored-by: ChrisDill <chris.rj.dill@gmail.com>
This commit is contained in:
@ -316,6 +316,10 @@ public static unsafe partial class Rlgl
|
||||
[DllImport(NativeLibName, EntryPoint = "rlDisableFramebuffer", CallingConvention = CallingConvention.Cdecl)]
|
||||
public static extern void DisableFramebuffer();
|
||||
|
||||
/// <summary>Blit active framebuffer to main framebuffer</summary>
|
||||
[DllImport(NativeLibName, EntryPoint = "rlBlitFramebuffer", CallingConvention = CallingConvention.Cdecl)]
|
||||
public static extern void BlitFramebuffer();
|
||||
|
||||
/// <summary>Activate multiple draw color buffers</summary>
|
||||
[DllImport(NativeLibName, EntryPoint = "rlActiveDrawBuffers", CallingConvention = CallingConvention.Cdecl)]
|
||||
public static extern void ActiveDrawBuffers(int count);
|
||||
@ -375,6 +379,10 @@ public static unsafe partial class Rlgl
|
||||
[DllImport(NativeLibName, EntryPoint = "rlEnableWireMode", CallingConvention = CallingConvention.Cdecl)]
|
||||
public static extern void EnableWireMode();
|
||||
|
||||
/// <summary>Enable point mode</summary>
|
||||
[DllImport(NativeLibName, EntryPoint = "rlEnablePointMode", CallingConvention = CallingConvention.Cdecl)]
|
||||
public static extern void EnablePointMode();
|
||||
|
||||
/// <summary>Disable wire mode</summary>
|
||||
[DllImport(NativeLibName, EntryPoint = "rlDisableWireMode", CallingConvention = CallingConvention.Cdecl)]
|
||||
public static extern void DisableWireMode();
|
||||
|
Reference in New Issue
Block a user