openGL之API学习(一六八)gl_SecondaryColor

Posted hankern

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了openGL之API学习(一六八)gl_SecondaryColor相关的知识,希望对你有一定的参考价值。

The GL stores both a primary four-valued RGBA color and a secondary four-valued RGBA color (where alpha is always set to 0.0) that is associated with every vertex.

The secondary color is interpolated and applied to each fragment during rasterization when GL_COLOR_SUM is enabled. When lighting is enabled, and GL_SEPARATE_SPECULAR_COLOR is specified, the value of the secondary color is assigned the value computed from the specular term of the lighting computation. Both the primary and secondary current colors are applied to each fragment, regardless of the state of GL_COLOR_SUM, under such conditions. When GL_SEPARATE_SPECULAR_COLOR is specified, the value returned from querying the current secondary color is undefined.

glSecondaryColor3b, glSecondaryColor3s, and glSecondaryColor3i take three signed byte, short, or long integers as arguments. When v is appended to the name, the color commands can take a pointer to an array of such values.

Color values are stored in floating-point format, with unspecified mantissa and exponent sizes. Unsigned integer color components, when specified, are linearly mapped to floating-point values such that the largest representable value maps to 1.0 (full intensity), and 0 maps to 0.0 (zero intensity). Signed integer color components, when specified, are linearly mapped to floating-point values such that the most positive representable value maps to 1.0, and the most negative representable value maps to -1.0 . (Note that this mapping does not convert 0 precisely to 0.0). Floating-point values are mapped directly.

Neither floating-point nor signed integer values are clamped to the range 0 1 before the current color is updated. However, color components are clamped to this range before they are interpolated or written into a color buffer.

glSecondaryColor is available only if the GL version is 1.4 or greater.

The initial value for the secondary color is (0, 0, 0, 0).

以上是关于openGL之API学习(一六八)gl_SecondaryColor的主要内容,如果未能解决你的问题,请参考以下文章

openGL之API学习(一六六)glVertexAttrib*函数

openGL之API学习(一六七)默认着色器 顶点属性索引 别名索引

openGL之API学习(一八八)glVertexAttribPointer和glVertexPointer

C++学习(三一二)glVertexAttribPointer和glVertexAttrib*的关系

openGL之API学习(一九五)OpenGL error ‘invalid enumerant‘

openGL之API学习(二零一)glTexGen