What is glVertexAttrib (versus glVertexAttribPoint

2019-04-03 06:40发布

I understand that glVertexAttribPointer will set the values for a vertex attribute based on the pointed-to array. What is glVertexAttrib for, though? It looks like it just sets a single (possibly vector) value for the vertex attribute, so what happens when you have multiple vertices? Do all of the vertices end up seeing the same value for the attribute?

1条回答
干净又极端
2楼-- · 2019-04-03 06:41

This was mainly used with the old immediate mode (glBegin/glEnd), where you don't use vertex arrays, which is deprecated (and removed in OpenGL ES 2.0 and desktop OpenGL 3+ core).

But this function still has its use with arrays (that's why it's still there in the modern versions). You are right in your assumption that all vertices following this call have the same value for this attribute (only if you don't enable this attribute's array, of course). Or more exactly every used shader attribute that doesn't have its corresponding array enabled sources its value from a single state value and this value can be changed with glVertexAttrib.

This is usefull if you have a general shader with e.g. a color attribute and a position attribute and you have an object with a constant color. So by using glVertexAttrib you neither have to submit a color for each vertex, nor do you have to use a special shader with the color changed to a uniform.

查看更多
登录 后发表回答