Lines Matching refs:posLocation
914 const glw::GLint posLocation = gl.getAttribLocation(m_program->getProgram(), "a_position");
918 TCU_CHECK(posLocation != -1);
958 gl.vertexAttribPointer(posLocation, 4, GL_FLOAT, GL_FALSE, (int)(VA_NUM_ATTRIB_VECS * sizeof(float[4])), glu::BufferOffsetAsPointer(4 * VA_POS_VEC_NDX * sizeof(float)));
960 gl.enableVertexAttribArray(posLocation);
3749 const int posLocation = gl.getAttribLocation(m_program->getProgram(), "a_position");
3758 gl.enableVertexAttribArray(posLocation);
3759 gl.vertexAttribPointer(posLocation, 4, GL_FLOAT, GL_FALSE, 4 * (int)sizeof(float), NULL);
3954 const glw::GLint posLocation = gl.getAttribLocation(m_program->getProgram(), "a_position");
3964 TCU_CHECK(posLocation != -1);
3982 gl.vertexAttribPointer(posLocation, 4, GL_FLOAT, GL_FALSE, (int)(8 * sizeof(float)), glu::BufferOffsetAsPointer(0 * sizeof(float)));
3984 gl.enableVertexAttribArray(posLocation);
4840 const glw::GLint posLocation = gl.getAttribLocation(m_program->getProgram(), "a_position");
4880 gl.vertexAttribPointer(posLocation, 4, GL_FLOAT, GL_FALSE, sizeof(float[4]), (const float*)DE_NULL);
4881 gl.enableVertexAttribArray(posLocation);