I was recently writing some OpenGL 3.3 code with Vertex Array Objects (VAO) and tested it later on Intel graphics adapter where I found, to my disappointment, that element array buffer binding is evidently not part of VAO state, as calling:

glBindVertexArray(my_vao);
glDrawElements(GL_TRIANGLE_STRIP, count, GL_UNSIGNED_INTEGER, 0);

had no effect, while:

glBindVertexArray(my_vao);
glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, my_index_buffer); // ?
glDrawElements(GL_TRIANGLE_STRIP, count, GL_UNSIGNED_INTEGER, 0);

rendered the geometry. I thought it was a mere bug in Intel implementation of OpenGL (because it is clearly stated in GL_ARB_vertex_array_object (and even in GL_OES_vertex_array_object) that element array is part of the saved state), but then it occured on mobile NVIDIA Quadro 4200. That's no fun.

Is it a driver bug, a specs bug, or a bug somewhere in my code? The code works flawlessly on GeForce 260 and 480.

Anyone had similar experience?

What is also strange is that GL_EXT_direct_state_access does not have a function to bind an element array buffer to VAO (but it does have functions to specify vertex attrib arrays, and hence array buffers). Are the GPU manufacturers screwing the specs and cheating on us, or what?

EDIT:

I originally didn't intend to show any source code because I believed it was not necessary here. But as requested, here is the minimal test case that reproduces the problem:

static GLuint n_vertex_buffer_object, p_index_buffer_object_list[3];
static GLuint p_vao[2];

bool InitGLObjects()
{
    const float p_quad_verts_colors[] = {
        1, 0, 0, -1, 1, 0,
        1, 0, 0, 1, 1, 0,
        1, 0, 0, 1, -1, 0,
        1, 0, 0, -1, -1, 0, // red quad
        0, 0, 1, -1, 1, 0,
        0, 0, 1, 1, 1, 0,
        0, 0, 1, 1, -1, 0,
        0, 0, 1, -1, -1, 0, // blue quad
        0, 0, 0, -1, 1, 0,
        0, 0, 0, 1, 1, 0,
        0, 0, 0, 1, -1, 0,
        0, 0, 0, -1, -1, 0 // black quad
    };
    const unsigned int p_quad_indices[][6] = {
        {0, 1, 2, 0, 2, 3},
        {4, 5, 6, 4, 6, 7},
        {8, 9, 10, 8, 10, 11}
    };
    glGenBuffers(1, &n_vertex_buffer_object);
    glBindBuffer(GL_ARRAY_BUFFER, n_vertex_buffer_object);
    glBufferData(GL_ARRAY_BUFFER, sizeof(p_quad_verts_colors), p_quad_verts_colors, GL_STATIC_DRAW);
    glGenBuffers(3, p_index_buffer_object_list);
    for(int n = 0; n < 3; ++ n) {
        glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, p_index_buffer_object_list[n]);
        glBufferData(GL_ELEMENT_ARRAY_BUFFER, sizeof(p_quad_indices[n]), p_quad_indices[n], GL_STATIC_DRAW);
    }

    glGenVertexArrays(2, p_vao);
    glBindVertexArray(p_vao[0]);
    {
        glBindBuffer(GL_ARRAY_BUFFER, n_vertex_buffer_object);
        glEnableVertexAttribArray(0);
        glVertexAttribPointer(0, 3, GL_FLOAT, GL_FALSE, 6 * sizeof(float), p_OffsetInVBO(0));
        glEnableVertexAttribArray(1);
        glVertexAttribPointer(1, 3, GL_FLOAT, GL_FALSE, 6 * sizeof(float), p_OffsetInVBO(3 * sizeof(float)));
        glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, p_index_buffer_object_list[0]); // red
    }
    glBindVertexArray(0);

    glBindVertexArray(p_vao[1]);
    {
        glBindBuffer(GL_ARRAY_BUFFER, n_vertex_buffer_object);
        glEnableVertexAttribArray(0);
        glVertexAttribPointer(0, 3, GL_FLOAT, GL_FALSE, 6 * sizeof(float), p_OffsetInVBO(0));
        glEnableVertexAttribArray(1);
        glVertexAttribPointer(1, 3, GL_FLOAT, GL_FALSE, 6 * sizeof(float), p_OffsetInVBO(3 * sizeof(float)));
        glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, p_index_buffer_object_list[1]); // blue
    }
    glBindVertexArray(0);

#ifdef BIND_BLACK_QUAD_ELEMENT_ARRAY_BUFFER
    glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, p_index_buffer_object_list[2]);
    // bind the buffer with the black quad (not inside VAO, should NOT be seen)
#endif // BIND_BLACK_QUAD_ELEMENT_ARRAY_BUFFER

    // [compile shaders here]

    return true; // success
}

The above code creates a vertex buffer containing three quads, red one, blue one and black one. Then it creates three index buffers that point to the individual quads. Then two VAOs are created and set up, one should contain red quad indices and the other should contain blue quad indices. The black quad should not be rendered at all (assume BIND_BLACK_QUAD_ELEMENT_ARRAY_BUFFER is defined).

void onDraw()
{
    glClearColor(.5f, .5f, .5f, 0);
    glClear(GL_COLOR_BUFFER_BIT);
    glDisable(GL_DEPTH_TEST);

    glUseProgram(n_program_object);

    static int n_last_color = -1;
    int n_color = (clock() / 2000) % 2;
    if(n_last_color != n_color) {
        printf("now drawing %s quad\n", (n_color)? "blue" : "red");
        n_last_color = n_color;
    }

    glBindVertexArray(p_vao[n_color]);
#ifdef VAO_DOESNT_STORE_ELEMENT_ARRAY_BUFFER
    glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, p_index_buffer_object_list[n_color]); // fixes the problem
#endif // VAO_DOESNT_STORE_ELEMENT_ARRAY_BUFFER
    glDrawElements(GL_TRIANGLES, 6, GL_UNSIGNED_INT, 0);
    glBindVertexArray(0);
}

This clears the viewport to gray and renders either blue or red quad in repeating manner (it also prints which one). While this works on desktop GPU, it doesn't work on notebook GPU (black quad is rendered unless the VAO_DOESNT_STORE_ELEMENT_ARRAY_BUFFER macro is defined. Undefining the BIND_BLACK_QUAD_ELEMENT_ARRAY_BUFFER macro makes the quad blue, as the blue index buffer is bound last. But it doesn't render the red quad no matter what.

So the way I see it, it's either a fatal misconception in my understanding of how should VAO work, a bug in my code, or a driver bug.

Full source
Binaries (windows, 32 bit)

link|improve this question
2  
It's more likely that your code isn't putting the element buffer in the VAO initially. Why don't you show us your VAO initialization code. – Nicol Bolas Jan 23 at 16:06
Oh come on, not that stupid. Plus I said it worked on GeForce 260 / 480. Read the posts before writing comments. I'm fully capable of debugging my OpenGL code. This question is about differences between OpenGL implementations and compatibility. – the swine Jan 23 at 17:23
What's wrong with you people!? Nicol Bolas clearly haven't read the question thoroughly. The code actually works on most hardware so there's nothing wrong with it. Why do you keep upvoting his comment? – the swine Feb 6 at 7:47
Just because code works doesn't mean it is correct. Whether through fortuitous circumstance or whatever, code can manage to work. The fact that it both fails and succeeds on NVIDIA drivers suggests user error. If it worked on NVIDIA and failed on ATI, or vice-versa, it would be more likely to be a driver bug. But NVIDIA especially is pretty self-similar. So if it sometimes works on some NVIDIA hardware and sometimes doesn't, that sounds like user error. – Nicol Bolas Feb 6 at 8:29
Ok, I mean - calling a single function in the correct place - that shouldn't be so hard. Do you think I'm a complete idiot, or what? Instead of writing such comments, why don't you write an answer? I can still unmark the below answer as incorrect, so it would make perfect sense to offer a better solution if you have one. – the swine Feb 6 at 9:05
feedback

2 Answers

I actually believe that ARB VAO is missing the element array buffer binding (or any other buffer binding) state.

Belief is not required; the spec tells the facts.

From the ARB_vertex_array_object specification:

The command

void GenVertexArrays(sizei n, uint *arrays);

returns previous unused vertex array object names in . These names are marked as used, for the purposes of GenVertexArrays only, and are initialized with the state listed in tables 6.6 (except for the CLIENT_ACTIVE_TEXTURE selector state), 6.7 and 6.8 (except for the ARRAY_BUFFER_BINDING state).

So there we have it: the entire state encompassed by VAOs are the contents of those three tables, with the noted exceptions.

The extension is written against The OpenGL Graphics Specification version 2.1 (PDF). Therefore, any page numbers, section labels, or table numbers are referenced relative to that spec.

I'm not about to copy those three tables here. But if you look on page 273 (by the spec's page count)/page 287 (by the number of physical pages), you will find table 6.8. And on that table is the following:

  • ELEMENT_ARRAY_BUFFER_BINDING

There is no ambiguity here. The information may not be plainly stated. But it is there, unquestionably. The ELEMENT_ARRAY_BUFFER_BINDING is part of VAO state.

Therefore, your problem can come from one of two sources:

  1. Driver bug. As I stated in a comment, a driver bug seems unlikely. Not impossible, just unlikely. NVIDIA's drivers are pretty self-similar for different hardware, and VAOs are hardly mirrored in hardware. Unless you are using different versions of the drivers, there's little reason to expect an error to be due to a driver bug.

  2. User error. I know you claim that your code works, and therefore it's fine. Everyone makes that claim about some code. And there have been plenty of times when I would swear up and down that some code was working just fine. Yet it was broken; it just so happened to get by. It happens. If you post your code, then at least we would be able to discount this possibility. Otherwise, we have nothing more than your word. And considering how often human beings are wrong about that, that isn't worth much.

link|improve this answer
Fair enough. I can't post complete code but I'll try to come up with minimal code sufficient to reproduce the error. Also the ARB thing is solid, the state really seems to be there. – the swine Feb 6 at 9:09
and here comes the source code (edit in the original question). So is it a driver bug or my fault? – the swine Feb 6 at 10:28
feedback

I encountered the same inconsistency. There are implementations, which store this binding, but the ARB VAO itself contains vertex array states (vertex data) only. For me, it makes sense to manage element indices and actual vertices separately anyway.

Default/fixed function array pointers in ARB VAO

VERTEX_ARRAY_POINTER
NORMAL_ARRAY_POINTER
COLOR_ARRAY_POINTER
SECONDARY_COLOR_ARRAY_POINTER
INDEX_ARRAY_POINTER
TEXTURE_COORD_ARRAY_POINTER
FOG_COORD_ARRAY_POINTER
EDGE_FLAG_ARRAY_POINTER

INDEX_ARRAY_POINTER is often confused with an "ELEMENT_ARRAY_POINTER", which exists just as GL_ELEMENT_ARRAY and has NO array pointer.

ARB VAO

ATI VAO, stores element arrays if ATI_element_array is available

Apple VAO, stores element arrays and pointers if APPLE_element_array is available

OES VAO stores the element array binding

link|improve this answer
-1: This answer is incorrect. The OpenGL 3.0 specification : the GL_ELEMENT_ARRAY_BUFFER is part of the VAO's state. – Nicol Bolas Feb 6 at 8:09
This is the mess. The ARB extension adopted into core is a whole other thing. – user1175253 Feb 6 at 8:11
ATI's VAO is a completely different concept; it has no relationship to anything recent (it predates buffer objects). And the standard VAOs don't store GL_ARRAY_BUFFER either (they only store the association made by glVertexAttribArray). Also, VAO is a core extension (the functions have no ARB suffix). There is no behavioral difference between a core extension and a core feature. You cannot tell the difference between ARB_VAO as an extension and as a core feature. – Nicol Bolas Feb 6 at 8:18
1  
The ARB_VAO extension states that the state stored by VAOs is the state listed in tables 6.6 (minus GL_CLIENT_ACTIVE_TEXTURE, 6.7, and 6.8 (minus GL_ARRAY_BUFFER_BINDING) of the GL 2.1 specification. In table 6.8 of the GL 2.1 specification is GL_ELEMENT_ARRAY_BUFFER_BINDING. Therefore, the ARB version does require that the element array be part of the VAO's state. Your answer is wrong. – Nicol Bolas Feb 6 at 8:26
OK, misleading additional info about the ARRAY_BUFFER_BINDING removed. And yes, anyone able to read can tell about influences of the APPLE VAO in the ARB extension written against GL2.1. Please, don't take offense and submit your own, correct answer for upvotes. – user1175253 Feb 6 at 8:30
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.