Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Here is my function:

void Object::draw2()
{

if(!mIsInitialised) { return; }

//Tell OpenGL about our vertex and normal data
glEnableClientState(GL_VERTEX_ARRAY);
glVertexPointer(3, GL_FLOAT, 0, &Vertices.front());

glEnableClientState(GL_NORMAL_ARRAY);
glNormalPointer(GL_FLOAT, 0, &Temp2.front());

//draw the .txt-file
glDrawElements(GL_TRIANGLES, Indices.size(), GL_UNSIGNED_INT, &Indices.front());

//restore the state GL back
glDisableClientState(GL_VERTEX_ARRAY);
glDisableClientState(GL_NORMAL_ARRAY);
}

My indices-vector contains: 1 2 3 1 3 4

My vertices-vector contains: -1 -1 0 1 -1 0 1 1 0 -1 1 0

When I run the program, it only draws half a quad - I.e a triangle.

The result -> http://i.stack.imgur.com/jZALG.png

share|improve this question

1 Answer

up vote 5 down vote accepted

Your indices vector should contain:

0 1 2 0 2 3

Otherwise, you never touch the vertex number 0 and end up with the half of the quad.

share|improve this answer
2  
That makes a lot of sense. Thanks! – Nilzone- Nov 8 '12 at 21:37
Accepted answer? :) – Sergey K. Nov 8 '12 at 21:37
It tells me to wait another minute before I can accept :) – Nilzone- Nov 8 '12 at 21:43

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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