]> gitweb.factorcode.org Git - factor.git/blob - demos/nehe/nehe-utils.factor
more sql changes
[factor.git] / demos / nehe / nehe-utils.factor
1 IN: nehe
2 USING: kernel opengl ;
3
4 : with-gl ( type quot -- )
5   >r glBegin r> call glEnd ; inline