glClearColor

来源:互联网 发布:sql 查找 默认值 约束 编辑:程序博客网 时间:2024/06/04 19:59
glClearColor

NAME

函数名

glClearColor -- specify clear values for the color buffers

为颜色缓冲区指定确定的值


C SPECIFICATION

C风格

void glClearColor(GLclampf red,
                  GLclampf green,
                  GLclampf blue,
                  GLclampf alpha)

(GLclampf为在0和1之间的32位浮点型小数)


PARAMETERS

参数

red, green, blue, alpha

红,绿,蓝,alpha(这个是混和?还是通道?)

Specify the red, green, blue, and alpha values used when the color buffers are cleared.

指定红绿蓝和alpha的值,当颜色缓冲区清空时使用。

The default values are all zero.

默认值都为0。(缺省值跟默认值是不是一回事啊?)




DESCRIPTION

描述

glClearColor specifies the red, green, blue, and alpha values used by glClear to clear the color buffers.

glClearColor指定红绿蓝还有alpha的值,当glColor清除了颜色缓冲区后使用。


Values specified by glClearColor are clamped to the range [0, 1].

被glClearColor指定的值,其取值范围在[0,1]。


ERRORS

错误

GL_INVALID_OPERATION is generated if glClearColor is called between a call to glBegin and the corresponding call to glEnd.


当glClearColor在glBegin和与glBgin对应的glEnd之间调用时,会产生GL_INVALID_OPEARTION。


原创粉丝点击