factor/basis/opengl/gl/macosx/macosx.factor

7 lines
226 B
Factor
Raw Normal View History

2009-03-26 00:00:19 -04:00
USING: kernel alien alien.libraries ;
IN: opengl.gl.macosx
: gl-function-context ( -- context ) 0 ; inline
: gl-function-address ( name -- address ) f dlsym ; inline
2010-03-31 22:20:35 -04:00
: gl-function-calling-convention ( -- str ) cdecl ; inline