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)]
|
[DllImport(NativeLibName, EntryPoint = "rlUnloadVertexBuffer", CallingConvention = CallingConvention.Cdecl)]
|
||||||
public static extern void UnloadVertexBuffer(uint vboId);
|
public static extern void UnloadVertexBuffer(uint vboId);
|
||||||
|
|
||||||
|
/// <summary>Set vertex attribute data configuration</summary>
|
||||||
[DllImport(NativeLibName, EntryPoint = "rlSetVertexAttribute", CallingConvention = CallingConvention.Cdecl)]
|
[DllImport(NativeLibName, EntryPoint = "rlSetVertexAttribute", CallingConvention = CallingConvention.Cdecl)]
|
||||||
public static extern void SetVertexAttribute(
|
public static extern void SetVertexAttribute(
|
||||||
uint index,
|
uint index,
|
||||||
|
|
@ -579,7 +580,7 @@ public static unsafe partial class Rlgl
|
||||||
int type,
|
int type,
|
||||||
CBool normalized,
|
CBool normalized,
|
||||||
int stride,
|
int stride,
|
||||||
void* pointer
|
int offset
|
||||||
);
|
);
|
||||||
|
|
||||||
[DllImport(NativeLibName, EntryPoint = "rlSetVertexAttributeDivisor", CallingConvention = CallingConvention.Cdecl)]
|
[DllImport(NativeLibName, EntryPoint = "rlSetVertexAttributeDivisor", CallingConvention = CallingConvention.Cdecl)]
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue