Explicit vs Automatic attribute location binding for OpenGL shaders

27,845

Solution 1

I know one good reason to prefer explicit location definition.

Consider that you hold your geometry data in Vertex Array Objects. For a given object, you create a VAO in such way that the indices correspond to, for example:

  • index 0: positions,
  • index 1: normals,
  • index 2: texcoords

Now consider that you want to draw one object with two different shaders. One shader requires position and normal data as input, the other - positions and texture coords.

If you compile those shaders, you will notice that the first shader will expect the positions at attribute index 0 and normals at 1. The other would expect positions at 0 but texture coords at 1.

Quoting https://www.opengl.org/wiki/Vertex_Shader:

Automatic assignment

If neither of the prior two methods assign an input to an attribute index, then the index is automatically assigned by OpenGL when the program is linked. The index assigned is completely arbitrary and may be different for different programs that are linked, even if they use the exact same vertex shader code.

This means that you wouldn't be able to use your VAO with both shaders. Instead of having one VAO per, say, object, you'd need - in the worst case - a separate VAO per object per shader.

Forcing the shaders to use your own attribute numbering convention via glBindAttribLocation can solve this problem easily - all you need to do is to keep a consistent relation between attributes and their estabilished IDs, and force the shaders to use that convention when linking.

(That's not really a big issue if you don't use separate VAOs, but still might make your code clearer.)


BTW:

When setting up attribute locations for an OpenGL shader program, you are faced with two options

There's a third option in OpenGL/GLSL 3.3: Specify the location directly in shader code. It looks like this:

layout(location=0) in vec4 position;

But this is not present in GLSL ES shader language.

Solution 2

Another answer here is that glGetAttribLocation returns data to the caller, which means that it implicitly requires a pipeline flush. If you call it right after you compile your program, you're essentially forcing asynchronous compilation to occur synchronously.

Solution 3

The third option, ie layout(location=0) in vec4 position; in the shader code, is now available in OpenGL ES 3.0/GLSL 300 es. Only for vertex shader input variables though.

Share:
27,845

Related videos on Youtube

Jing
Author by

Jing

Just a scrub.

Updated on May 31, 2020

Comments

  • Jing
    Jing almost 4 years

    When setting up attribute locations for an OpenGL shader program, you are faced with two options:

    glBindAttribLocation() before linking to explicitly define an attribute location.

    or

    glGetAttribLocation() after linking to obtain an automatically assigned attribute location.

    What is the utility for using one over the other?

    And which one, if any, is preferred in practice?

    • Jarrett
      Jarrett over 10 years
      I didn't bother using glBindAttribLocation in my graphics engine, which worked nicely on linux. When I ported to windows, it was using my normals as vertices - I had to explicitly tell it the order of the variables in my shader via glBindAttribLocation to get it to work...
  • PierreBdR
    PierreBdR almost 12 years
    I don't see the point. VAO are really light-weight and you will usually recreate them for each frame. In your case, you would just create different VAOs before calling each shader, won't you?
  • Kos
    Kos almost 12 years
    Yes, you can do that of course. It will work just as well, we're only discussing conventions here. :)
  • Gavin Maclean
    Gavin Maclean over 11 years
    The third option is actually available in GLES2.0 but the format is slightly different: layout(location = 0) attribute vec4 position; Note that you'll also need this at the top of your GLSL file: #extension GL_EXT_separate_shader_objects : enable
  • Litherum
    Litherum over 11 years
  • Christian Rau
    Christian Rau about 11 years
    "VAO are really light-weight and you will usually recreate them for each frame. In your case, you would just create different VAOs before calling each shader, won't you?" - No, you won't usually do this, since this in the end completely invalidates the whole purpose of VAOs. Why then use a VAO at all?
  • Jing
    Jing over 10 years
    Thanks, this is a very important consideration.
  • mlvljr
    mlvljr almost 10 years
    As they hint, Intel cards may not support this (while being perfectly 3.0+ comformant otherwise, as I get it), which is disgusting :)
  • user1914692
    user1914692 over 9 years
    If I do not explicitly bind attribute, as you said, "If you compile those shaders, you will notice that the first shader will expect the positions at attribute index 0 and normals at 1. The other would expect positions at 0 but texture coords at 1.". Where can I find in the official link about it?
  • Kos
    Kos over 9 years
    @user1914692 Edited and added a reference to OpenGL wiki.
  • average joe
    average joe over 8 years
    Just a note. You wouldn't keep your geometry data in a VAO. That would be in a VBO. VAOs don't have data storage.
  • Kos
    Kos over 8 years
    @averagejoe hello, does the post suggest otherwise?
  • average joe
    average joe over 8 years
    @Kos Yes. Consider that you hold your geometry data in Vertex Array Objects... :)
  • Mike Weir
    Mike Weir over 8 years
    It's my understanding that under most situations you would have to call glGetUniformLocation anyway; is this particular consideration still relevant?
  • jcmonteiro
    jcmonteiro about 8 years
    As of GLSL ES version 3.00 the location qualifier is available.
  • Ruslan
    Ruslan almost 8 years
    @MikeWeir since GL 4.3 you can set explicit uniform location.
  • Mike Weir
    Mike Weir over 7 years
    @Ruslan They're using OpenGL ES.
  • Ruslan
    Ruslan over 7 years
    @MikeWeir OK, since OpenGL ES 3.0.
  • mskr
    mskr over 7 years
    @Kos wrote "you wouldn't be able to use your VAO with both shaders" - A possibility is to collect the glGetAttribLocation of each attribute of both shaders and glEnableVertexAttribArray them before drawing with the respective shader, or am I wrong?
  • Sahil Singh
    Sahil Singh over 4 years
    src.chromium.org/viewvc/chrome/trunk/src/gpu/GLES2/extension‌​s/… Updated link for @Litherum's comment. That link seems to be broken.