I a android application , I want to calcul the normal of a surface depanding on other vertex of this surface. I don't want to do it in "master" programm because it take to much time. Actually for each vertex i pass 4 float array for each vextex :
attribute vec3 a_bottom;
attribute vec3 a_left;
attribute vec3 a_right;
attribute vec3 a_top;
vec3 calculNormal( ) {
return normalize( cross( (a_left - a_right) , ( a_bottom - a_top ) ) );
}
it is very very very dirty code i know, so instead of passing 4 arrays , i want to do that :
vec3 calculNormal( ) {
vec3 a_left = CURRENT_FLOATBUFFER[ CURRENT_FLOAT_BUFFER_POSITION - 1 ];
vec3 a_bottom = CURRENT_FLOATBUFFER[ CURRENT_FLOAT_BUFFER_POSITION - X ];
...
return normalize( cross( (a_left - a_right) , ( a_bottom - a_top ) ) );
}
So is it possible in a vertex shader programm to acess to the current float buffer ? Is there a special keywords like currentFloat ? Or is there another possibility that i miss ?