I have following struct to store my vertex data.
struct Rz3DContourNode {
float x; //pos x
float y; //pos y
float z; //pos z
float nx; //normal x
float ny; //normal y
float nz; //normal z
};
I store list of vertices in STL vector as follows :
std::vector < Rz3DContourNode > nodes;
When I try to use this as as vertex-array in OPEGL ,in does not render incorrectly.
glVertexPointer(3, GL_FLOAT, 12, &nodes[0]);
glDrawArrays(GL_POINTS,0,nodes.size());
So, I tried to confirm the values using pointer arithmetic (assuming thats the way OPENGL handle data) as follows:
float *ptr=(float*) &nodes[0];
for(int i=0;i<nodes.size();i++)
{
Rz3DContourNode confirmNode=nodes[i];
float x=*ptr;
ptr++;
float y=*ptr;
ptr++;
float z=*ptr;
ptr++;
//Confirm values !!! Do not equal ??
qDebug("x=%4.2f y=%4.2f z=%4.2f | nx=%4.2f ny=%4.2f nz=%4.2f
",confirmNode.x,confirmNode.y,confirmNode.z,x,y,z);
//Skip normal positions
ptr++;
ptr++;
ptr++;
}
The values does not equal if I directly access values from the struct.
Does this means struct does not save the values contiguously ?
[EDIT] I Just noticed that using sizeof() instead of 12 fix the problem as follows:
glVertexPointer(3, GL_FLOAT, sizeof(Rz3DContourNode), &nodes[0]);
But still I am confused why my hack didnt traverse correctly in memory?(why qDebug doesnt print identical values ?)
std::vectorshould be contiguous in memory. I don't see what's really hacky about that. Alignment could be an issue though, as you say. – Mike Bantegui Sep 5 '11 at 6:37float[6]. In OpenGL vertices are represented by arrays of coordinates. For some reason people insist in representing them as structs in their user code and then reinterpreting these structs as arrays before passing to OpenGL functions, which is a hack. – AndreyT Sep 5 '11 at 6:4212originally? What did12stand for? – AndreyT Sep 5 '11 at 6:44