How can I draw many lines with GL_LINE_STRIP, but not to draw a extra line between these lines, because it jumps to next value? See image
Now the red lines are the actual values for the lines in the graph but the yellow ones are because it finished the values for line1 and goes on to next but still draw a line between these values.
The code I'm using is like this: vector1 is containing all the line values.
glGenVertexArrays(1,&Vector1_VAObject);
glGenBuffers(1,&Vector1_VBObject);
glBindVertexArray(Vector1_VAObject);
glBindBuffer(GL_ARRAY_BUFFER, Vector1_VBObject);
glBufferData(GL_ARRAY_BUFFER,vector1.size()*sizeof(GLfloat), &vector1[0] ,GL_STATIC_DRAW);
glVertexAttribPointer(0,3,GL_FLOAT,GL_FALSE, 3*sizeof(GLfloat),(GLvoid*)0);
//Clean
glEnableVertexAttribArray(0);
glBindBuffer(GL_ARRAY_BUFFER,0);
glBindVertexArray(0);
glUseProgram(lineShader->getProgram());
glBindVertexArray(Vector1_VAObject);
glDrawArrays(GL_LINE_STRIP,0,vector1.size());
glBindVertexArray(0);
So my question is how can I fix this problem? So it loops through the vector and only draws the values for the lines and not when its is jumps after finish drawing first line..
A draw with
GL_LINE_STRIP
(or triangle equivalentGL_TRIANGLE_STRIP
) is like to put a pen on a paper and draw something without ever take the pen off. You cannot to not draw an line between two consecutive points.If you really want to use
GL_LINE_STRIP
to draw your graph (which is a good idea) and then something else, you'll have to make different buffers and draw many timesglDrawArrays
, with different parameters.So let's assume
vector1
store red lines andvector2
the yellow one. The initialization part would looks like this :And then the draw part :