SDL_GL_GetProcAddress

This commit is contained in:
Ethan Lee 2013-04-16 15:13:48 -04:00
parent 52a649f5aa
commit f6eff6c217

View file

@ -710,6 +710,12 @@ namespace SDL2
[DllImport(nativeLibName)]
public static extern void SDL_GL_DeleteContext(IntPtr context);
[DllImport(nativeLibName)]
public static extern IntPtr SDL_GL_GetProcAddress(
[InAttribute()] [MarshalAsAttribute(UnmanagedType.LPStr)]
string proc
);
[DllImport(nativeLibName)]
public static extern SDL_bool SDL_GL_ExtensionSupported(
[InAttribute()] [MarshalAsAttribute(UnmanagedType.LPStr)]