Home | History | Annotate | Download | only in functional

Lines Matching refs:posLocation

272 			const int					posLocation				= gl.getAttribLocation(program.getProgram(), "a_position");
280 if (posLocation == -1)
287 gl.vertexAttribPointer(posLocation, 4, GL_FLOAT, GL_FALSE, 0, DE_NULL);
288 gl.enableVertexAttribArray(posLocation);
573 const int posLocation = gl.getAttribLocation(program.getProgram(), "a_position");
579 if (posLocation == -1)
584 gl.vertexAttribPointer(posLocation, 4, GL_FLOAT, GL_FALSE, 0, DE_NULL);
585 gl.enableVertexAttribArray(posLocation);
1031 const int posLocation = gl.getAttribLocation(m_feedbackProgram->getProgram(), "a_position");
1034 if (posLocation == -1)
1046 gl.vertexAttribPointer(posLocation, 4, GL_FLOAT, GL_FALSE, 0, DE_NULL);
1047 gl.enableVertexAttribArray(posLocation);
1127 const int posLocation = gl.getAttribLocation(m_nonFeedbackProgram->getProgram(), "a_position");
1129 if (posLocation == -1)
1141 gl.vertexAttribPointer(posLocation, 4, GL_FLOAT, GL_FALSE, 0, DE_NULL);
1142 gl.enableVertexAttribArray(posLocation);