跳转到内容

OpenGL 编程/参考

来自维基教科书,开放世界中的开放书籍

OpenGL gl.h glu.h glut.h 的函数类型和命名空间参考
OpenGL 基本测试应用程序 用于本节示例

待分类

[编辑 | 编辑源代码]
  • void glAccum (GLenum op, GLfloat value);
  • void glAlphaFunc (GLenum func, GLclampf ref);
  • GLboolean glAreTexturesResident (GLsizei n, const GLuint *textures, GLboolean *residences);
  • void glArrayElement (GLint i);
  • void glBegin (GLenum mode);
  • void glBindTexture (GLenum target, GLuint texture);
  • void glBitmap (GLsizei width, GLsizei height, GLfloat xorig, GLfloat yorig, GLfloat xmove, GLfloat ymove, const GLubyte *bitmap);
  • void glBlendFunc (GLenum sfactor, GLenum dfactor);
  • void glCallList (GLuint list);
  • void glCallLists (GLsizei n, GLenum type, const GLvoid *lists);
  • void glClipPlane (GLenum plane, const GLdouble *equation);

颜色

[edit | edit source]
  • glColor 使用颜色指针或一组 R G B A 变量设置颜色,带或不带 alpha,多种变量类型作为输入。

清除

[edit | edit source]
华夏公益教科书