SetVertexAttribute updated
This commit is contained in:
parent
2b95f4e569
commit
22146e9d5f
1 changed files with 2 additions and 1 deletions
|
|
@ -572,6 +572,7 @@ public static unsafe partial class Rlgl
|
|||
[DllImport(NativeLibName, EntryPoint = "rlUnloadVertexBuffer", CallingConvention = CallingConvention.Cdecl)]
|
||||
public static extern void UnloadVertexBuffer(uint vboId);
|
||||
|
||||
/// <summary>Set vertex attribute data configuration</summary>
|
||||
[DllImport(NativeLibName, EntryPoint = "rlSetVertexAttribute", CallingConvention = CallingConvention.Cdecl)]
|
||||
public static extern void SetVertexAttribute(
|
||||
uint index,
|
||||
|
|
@ -579,7 +580,7 @@ public static unsafe partial class Rlgl
|
|||
int type,
|
||||
CBool normalized,
|
||||
int stride,
|
||||
void* pointer
|
||||
int offset
|
||||
);
|
||||
|
||||
[DllImport(NativeLibName, EntryPoint = "rlSetVertexAttributeDivisor", CallingConvention = CallingConvention.Cdecl)]
|
||||
|
|
|
|||
Loading…
Reference in a new issue