Handbook
Glossary
make-dlist ( type quot -- id )
Factor handbook
»
UI framework
»
Implementing new gadgets
»
Customizing gadget appearance
»
Implementing custom drawing logic
»
OpenGL utility words
Prev:
with-translation ( loc quot -- )
Next:
gl-line ( a b -- )
Vocabulary
opengl
Inputs
type
one of
GL_COMPILE
or
GL_COMPILE_AND_EXECUTE
quot
a
quotation
Outputs
id
an OpenGL texture ID
Word description
Compiles the results of calling the quotation into a new OpenGL display list.
Definition
USING:
kernel
opengl.gl
;
IN:
opengl
:
make-dlist
( type quot -- id )
[
gen-dlist
]
2dip
[
[
glNewList
]
curry
]
dip
[
glEndList
]
compose
compose
keep
;
inline