Forgot to remove opengl.lib

release
Slava Pestov 2007-10-08 22:28:08 -04:00
parent 94a8ce2237
commit 202f7cdfff
1 changed files with 0 additions and 19 deletions

View File

@ -1,19 +0,0 @@
USING: kernel alien.c-types sequences opengl.gl opengl.glu ;
IN: opengl.lib
! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
: gl-color-4f ( 4seq -- ) first4 glColor4f ;
: gl-clear-color ( 4seq -- ) first4 glClearColor ;
: gl-vertex-3f ( array -- ) first3 glVertex3f ;
: gl-normal-3f ( array -- ) first3 glNormal3f ;
: gl-material-fv ( face pname params -- ) >c-float-array glMaterialfv ;
! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
: glu-look-at ( eye focus up -- ) >r >r first3 r> first3 r> first3 gluLookAt ;