From eefa95ad25fa90e643dda6e42b156516a5039d97 Mon Sep 17 00:00:00 2001 From: Joe Groff Date: Fri, 8 Feb 2008 18:00:29 -0800 Subject: [PATCH] Remove useless alien-address call from opengl.gl.windows --- extra/opengl/gl/windows/windows.factor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extra/opengl/gl/windows/windows.factor b/extra/opengl/gl/windows/windows.factor index cc59167539..8f48f60d3c 100755 --- a/extra/opengl/gl/windows/windows.factor +++ b/extra/opengl/gl/windows/windows.factor @@ -1,6 +1,6 @@ USING: kernel windows.opengl32 ; IN: opengl.gl.windows -: gl-function-context ( -- context ) wglGetCurrentContext alien-address ; inline +: gl-function-context ( -- context ) wglGetCurrentContext ; inline : gl-function-address ( name -- address ) wglGetProcAddress ; inline : gl-function-calling-convention ( -- str ) "stdcall" ; inline