Fix macosx gl-function-address to use symbols from GL library linked to VM

db4
Joe Groff 2008-03-12 22:21:37 -07:00
parent 07baa20969
commit 86e700cea0
1 changed files with 1 additions and 1 deletions
extra/opengl/gl/macosx

View File

@ -2,5 +2,5 @@ USING: kernel alien ;
IN: opengl.gl.macosx
: gl-function-context ( -- context ) 0 ; inline
: gl-function-address ( name -- address ) "gl" load-library dlsym ; inline
: gl-function-address ( name -- address ) f dlsym ; inline
: gl-function-calling-convention ( -- str ) "cdecl" ; inline