Home | History | Annotate | Download | only in functional

Lines Matching refs:posLocation

253 			const int					posLocation				= gl.getAttribLocation(program.getProgram(), "a_position");
261 if (posLocation == -1)
268 gl.vertexAttribPointer(posLocation, 4, GL_FLOAT, GL_FALSE, 0, DE_NULL);
269 gl.enableVertexAttribArray(posLocation);
552 const int posLocation = gl.getAttribLocation(program.getProgram(), "a_position");
558 if (posLocation == -1)
563 gl.vertexAttribPointer(posLocation, 4, GL_FLOAT, GL_FALSE, 0, DE_NULL);
564 gl.enableVertexAttribArray(posLocation);
1008 const int posLocation = gl.getAttribLocation(m_feedbackProgram->getProgram(), "a_position");
1011 if (posLocation == -1)
1023 gl.vertexAttribPointer(posLocation, 4, GL_FLOAT, GL_FALSE, 0, DE_NULL);
1024 gl.enableVertexAttribArray(posLocation);
1104 const int posLocation = gl.getAttribLocation(m_nonFeedbackProgram->getProgram(), "a_position");
1106 if (posLocation == -1)
1118 gl.vertexAttribPointer(posLocation, 4, GL_FLOAT, GL_FALSE, 0, DE_NULL);
1119 gl.enableVertexAttribArray(posLocation);