|
|
发表于 2006-4-24 10:08:00
|
显示全部楼层
Re:关于opengl绘图的问题
显示链表功能
glNewList, glEndList
The glNewList and glEndList functions create or replace a display list.
void glNewList(
GLuint list,
GLenum mode
);
void glEndList(
void
);
Parameters
list
The display list name.
mode
The compilation mode. The following values are accepted:
GL_COMPILE
Commands are merely compiled.
GL_COMPILE_AND_EXECUTE
Commands are executed as they are compiled into the display list.
MSDN内容 |
|