From 1e362c5e64048d10a6fcc57f9a1d43f1e138ce97 Mon Sep 17 00:00:00 2001 From: ChrisDill Date: Sun, 27 Dec 2020 15:47:01 +0000 Subject: [PATCH] Add GetShaderLocationAttrib function - Used by the example shaders_rlgl_mesh_instanced. --- Raylib-cs/Raylib.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Raylib-cs/Raylib.cs b/Raylib-cs/Raylib.cs index 8b1a068..872feb7 100644 --- a/Raylib-cs/Raylib.cs +++ b/Raylib-cs/Raylib.cs @@ -2564,6 +2564,10 @@ namespace Raylib_cs [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetShaderLocation(Shader shader, string uniformName); + // Get shader attribute location + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern int GetShaderLocationAttrib(Shader shader, string attribName); + // Set shader uniform value // value refers to a const void * [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]