Merge branch 'alpha-support': SDL_GL_GetProcAddress

This commit is contained in:
Ethan Lee 2013-04-16 15:14:06 -04:00
commit 3eb90d9c52

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)]