factor/basis/opengl/gl/windows/windows.factor

12 lines
387 B
Factor
Raw Normal View History

USING: alien.c-types alien.syntax kernel windows.types ;
2008-01-13 01:58:56 -05:00
IN: opengl.gl.windows
LIBRARY: gl
FUNCTION: HGLRC wglGetCurrentContext ( ) ;
FUNCTION: void* wglGetProcAddress ( char* name ) ;
: gl-function-context ( -- context ) wglGetCurrentContext ; inline
: gl-function-address ( name -- address ) wglGetProcAddress ; inline
: gl-function-calling-convention ( -- str ) "stdcall" ; inline