You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in vendor/x11/xlib/xlib_procs.odin ChangeWindowAttributes :: proc(display: ^Display, window: Window, attr_mask: WindowAttributeMask, attr: XWindowAttributes)
should be ChangeWindowAttributes :: proc(display: ^Display, window: Window, attr_mask: WindowAttributeMask, attr: ^XSetWindowAttributes)
to match the C function signature of int XChangeWindowAttributes(Display *display, Window w, unsigned long valuemask, XSetWindowAttributes *attributes)
The text was updated successfully, but these errors were encountered:
in vendor/x11/xlib/xlib_procs.odin
ChangeWindowAttributes :: proc(display: ^Display, window: Window, attr_mask: WindowAttributeMask, attr: XWindowAttributes)
should be
ChangeWindowAttributes :: proc(display: ^Display, window: Window, attr_mask: WindowAttributeMask, attr: ^XSetWindowAttributes)
to match the C function signature of
int XChangeWindowAttributes(Display *display, Window w, unsigned long valuemask, XSetWindowAttributes *attributes)
The text was updated successfully, but these errors were encountered: