Question

As I understand it, normals are specified per vertex, and in OpenGL a "vertex" refers to not only a point in space but its associated normal (and some other data) as well. For a model such as a cube where the faces are at right angles, this would be problematic since each geometric vertex needs 3 normals, one for each face. The obvious solution seems to be to just specify 4 distinct vertices with appropriate normals for each face (i.e. don't share vertices between faces), but this approach seems very wasteful. Are there any better approaches that would let me in effect share vertex positions without sharing normals?

Was it helpful?

Solution

As you wrote, a vertex is the whole vector of position, normal, texture coordinates, etc.

If only one of those attributes differs, it's a completely different vertex.

but this approach seems very wasteful.

Different attribute, different vertex. That's not a hard to understand concept. Modern GPUs employ a vertex cache that uses the vertex attributes as a key into the cached output of the vertex transform stage. If attribute sharing was possible, this cache couldn't be implemented in an efficient way.

Are there any better approaches that would let me in effect share vertex positions without sharing normals?

Why would you want to do that? A vertex with a different normal is a different vertex. Trying to save a little bit of memory would open a huge can of worms. Not only for the cache, but also for other parts of the program.

Having separate vertices with separate normals is actually a good thing.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top