ColorMask added
This commit is contained in:
parent
d5f5abd210
commit
2b95f4e569
1 changed files with 4 additions and 0 deletions
|
|
@ -379,6 +379,10 @@ public static unsafe partial class Rlgl
|
|||
[DllImport(NativeLibName, EntryPoint = "rlDisableBackfaceCulling", CallingConvention = CallingConvention.Cdecl)]
|
||||
public static extern void DisableBackfaceCulling();
|
||||
|
||||
/// <summary>Color mask control</summary>
|
||||
[DllImport(NativeLibName, EntryPoint = "rlColorMask", CallingConvention = CallingConvention.Cdecl)]
|
||||
public static extern void ColorMask(CBool r, CBool g, CBool b, CBool a);
|
||||
|
||||
/// <summary>Set face culling mode</summary>
|
||||
[DllImport(NativeLibName, EntryPoint = "rlSetCullFace", CallingConvention = CallingConvention.Cdecl)]
|
||||
public static extern void SetCullFace(int mode);
|
||||
|
|
|
|||
Loading…
Reference in a new issue