Fix missing math.bitfields
parent
4af765629a
commit
303cb0edc2
|
@ -1,6 +1,6 @@
|
||||||
! Copyright (C) 2005, 2006 Eduardo Cavazos and Slava Pestov
|
! Copyright (C) 2005, 2006 Eduardo Cavazos and Slava Pestov
|
||||||
! See http://factorcode.org/license.txt for BSD license.
|
! See http://factorcode.org/license.txt for BSD license.
|
||||||
USING: alien alien.c-types hashtables kernel math math.vectors
|
USING: alien alien.c-types hashtables kernel math math.vectors math.bitfields
|
||||||
namespaces sequences x11.xlib x11.constants x11.glx ;
|
namespaces sequences x11.xlib x11.constants x11.glx ;
|
||||||
IN: x11.windows
|
IN: x11.windows
|
||||||
|
|
||||||
|
@ -12,7 +12,6 @@ IN: x11.windows
|
||||||
XCreateColormap ;
|
XCreateColormap ;
|
||||||
|
|
||||||
: event-mask ( -- n )
|
: event-mask ( -- n )
|
||||||
<<<<<<< HEAD:extra/x11/windows/windows.factor
|
|
||||||
{
|
{
|
||||||
ExposureMask
|
ExposureMask
|
||||||
StructureNotifyMask
|
StructureNotifyMask
|
||||||
|
@ -26,19 +25,6 @@ IN: x11.windows
|
||||||
LeaveWindowMask
|
LeaveWindowMask
|
||||||
PropertyChangeMask
|
PropertyChangeMask
|
||||||
} flags ;
|
} flags ;
|
||||||
=======
|
|
||||||
ExposureMask
|
|
||||||
StructureNotifyMask bitor
|
|
||||||
KeyPressMask bitor
|
|
||||||
KeyReleaseMask bitor
|
|
||||||
ButtonPressMask bitor
|
|
||||||
ButtonReleaseMask bitor
|
|
||||||
PointerMotionMask bitor
|
|
||||||
FocusChangeMask bitor
|
|
||||||
EnterWindowMask bitor
|
|
||||||
LeaveWindowMask bitor
|
|
||||||
PropertyChangeMask bitor ;
|
|
||||||
>>>>>>> a05c18152b59073c49aa313ba685516310ec74a8:extra/x11/windows/windows.factor
|
|
||||||
|
|
||||||
: window-attributes ( visinfo -- attributes )
|
: window-attributes ( visinfo -- attributes )
|
||||||
"XSetWindowAttributes" <c-object>
|
"XSetWindowAttributes" <c-object>
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
! and note the section.
|
! and note the section.
|
||||||
|
|
||||||
USING: kernel arrays alien alien.c-types alien.syntax
|
USING: kernel arrays alien alien.c-types alien.syntax
|
||||||
math words sequences namespaces continuations ;
|
math math.bitfields words sequences namespaces continuations ;
|
||||||
IN: x11.xlib
|
IN: x11.xlib
|
||||||
|
|
||||||
LIBRARY: xlib
|
LIBRARY: xlib
|
||||||
|
|
Loading…
Reference in New Issue