Fix x11 window creation. (#3)

This commit is contained in:
riperiperi 2020-05-25 18:22:29 +01:00 committed by GitHub
parent 24585a1066
commit 35102ddad9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View file

@ -1323,12 +1323,12 @@ XF86VidModeGetGammaRampSize(
{ {
XSetWindowAttributes attr = attributes.Value; XSetWindowAttributes attr = attributes.Value;
return XCreateWindow(display, parent, x, y, width, height, border_width, depth, return XCreateWindow(display, parent, x, y, width, height, border_width, depth,
(int)@class, visual, (IntPtr)valuemask, &attr); (int)@class, visual, (IntPtr)valuemask, (IntPtr)(&attr));
} }
else else
{ {
return XCreateWindow(display, parent, x, y, width, height, border_width, depth, return XCreateWindow(display, parent, x, y, width, height, border_width, depth,
(int)@class, visual, (IntPtr)valuemask, null); (int)@class, visual, (IntPtr)valuemask, (IntPtr)null);
} }
} }
} }

View file

@ -65,7 +65,7 @@ namespace OpenTK.Platform.X11
public extern static IntPtr XSynchronize(IntPtr display, bool onoff); public extern static IntPtr XSynchronize(IntPtr display, bool onoff);
[DllImport("libX11", EntryPoint = "XCreateWindow")] [DllImport("libX11", EntryPoint = "XCreateWindow")]
public unsafe extern static IntPtr XCreateWindow(IntPtr display, IntPtr parent, int x, int y, int width, int height, int border_width, int depth, int xclass, IntPtr visual, IntPtr valuemask, XSetWindowAttributes* attributes); public extern static IntPtr XCreateWindow(Display display, Window parent, int x, int y, int width, int height, int borderWidth, int depth, int xclass, IntPtr visual, IntPtr valueMask, IntPtr attributes);
[DllImport("libX11", EntryPoint = "XCreateSimpleWindow")]//, CLSCompliant(false)] [DllImport("libX11", EntryPoint = "XCreateSimpleWindow")]//, CLSCompliant(false)]
public extern static IntPtr XCreateSimpleWindow(IntPtr display, IntPtr parent, int x, int y, int width, int height, int border_width, UIntPtr border, UIntPtr background); public extern static IntPtr XCreateSimpleWindow(IntPtr display, IntPtr parent, int x, int y, int width, int height, int border_width, UIntPtr border, UIntPtr background);