factor/basis/opengl/gl/unix/unix.factor

7 lines
248 B
Factor
Raw Normal View History

2010-04-10 20:24:44 -04:00
USING: alien kernel x11.glx ;
2008-01-13 01:58:56 -05:00
IN: opengl.gl.unix
: gl-function-context ( -- context ) glXGetCurrentContext ; inline
: gl-function-address ( name -- address ) glXGetProcAddressARB ; inline
2010-03-31 22:20:35 -04:00
: gl-function-calling-convention ( -- str ) cdecl ; inline