Set GLXAttribute access to public.

This commit is contained in:
Jarl Gullberg 2017-06-25 13:44:01 +02:00
parent 5605b1fac2
commit 2f1e49c667
No known key found for this signature in database
GPG key ID: 750FF6F6BDA72D23

View file

@ -17,7 +17,7 @@ namespace OpenTK.Platform.X11
{
#region Enums
enum GLXAttribute : int
public enum GLXAttribute : int
{
TRANSPARENT_BLUE_VALUE_EXT = 0x27,
GRAY_SCALE = 0x8006,
@ -364,7 +364,7 @@ namespace OpenTK.Platform.X11
[DllImport(Library, EntryPoint = "glXCreateContext")]
public static extern IntPtr CreateContext(IntPtr dpy, ref XVisualInfo vis, IntPtr shareList, bool direct);
[DllImport(Library, EntryPoint = "glXDestroyContext")]
public static extern void DestroyContext(IntPtr dpy, IntPtr context);