diff --git a/Raylib-cs/interop/Rlgl.cs b/Raylib-cs/interop/Rlgl.cs
index 3c2a405..b71ad16 100644
--- a/Raylib-cs/interop/Rlgl.cs
+++ b/Raylib-cs/interop/Rlgl.cs
@@ -445,11 +445,11 @@ namespace Raylib_cs
/// Initialize rlgl (buffers, shaders, textures, states)
[DllImport(NativeLibName, EntryPoint = "rlglInit", CallingConvention = CallingConvention.Cdecl)]
- public static extern void glInit(int width, int height);
+ public static extern void GlInit(int width, int height);
/// De-inititialize rlgl (buffers, shaders, textures)
[DllImport(NativeLibName, EntryPoint = "rlglClose", CallingConvention = CallingConvention.Cdecl)]
- public static extern void glClose();
+ public static extern void GlClose();
/// Load OpenGL extensions
[DllImport(NativeLibName, EntryPoint = "rlLoadExtensions", CallingConvention = CallingConvention.Cdecl)]