I tried to use the transform feedback function, and I made 2 vertex shaders which only affects vertex position.
The 1st one is a pass through shader, where position out= position in; The 2nd one is the modleview-projection result of vertex position, where position out= position in*mvp;
The problem is: when I lock the transform feedback buffer and read it, I found weird order of the data. My input data is an array of vec3(self-defined struct with 3 float), so the data is like x1,y1,z1; x2,y2,z2; x3,y3,z3; x4,y4,z4; x5,y5,z5; x6,y6,z6; ...
But the result I read from transform feedback buffer is: x3,y3,z3,1; x2,y2,z2,1; x1,y1,z1,1; x6,y6,z6,1; x5,y5,z5,1; x4,y4,z4,1; The order is reversed every 3 vertices, how come this happen?! I totally got no idea why the orders of vertices were changed during the pass-through shader...
for(physx::PxU32 j=0; j<3; j++) { dst[i*3+j] = src[i*3+(2-j)]; }so the order is reversed! And why they are doing this is becoz of culling I guess? But I dont know why the input index order has to be changed? Why dont they just use the input they want but rather than change the order after loading data? – Marson Mao Oct 18 '11 at 1:13