Lines Matching defs:location
590 GLint location = gl.getAttribLocation(m_program->getProgram(), ("a_static" + de::toString(attribNdx)).c_str());
592 gl.enableVertexAttribArray(location);
597 gl.vertexAttribPointer(location, 4, GL_BYTE, GL_TRUE, 0, NULL);
601 gl.vertexAttribPointer(location, 4, GL_BYTE, GL_TRUE, 0, &(m_staticAttributeDatas[attribNdx][0]));
607 GLint location = gl.getAttribLocation(m_program->getProgram(), ("a_dyn" + de::toString(attribNdx)).c_str());
609 gl.enableVertexAttribArray(location);
610 dynamicAttributeLocations.push_back(location);
671 GLint location = gl.getAttribLocation(m_program->getProgram(), ("a_static" + de::toString(attribNdx)).c_str());
672 gl.disableVertexAttribArray(location);
696 GLint location = gl.getAttribLocation(m_program->getProgram(), ("a_static" + de::toString(attribNdx)).c_str());
698 gl.enableVertexAttribArray(location);
703 gl.vertexAttribPointer(location, 4, GL_BYTE, GL_TRUE, 0, NULL);
707 gl.vertexAttribPointer(location, 4, GL_BYTE, GL_TRUE, 0, &(m_staticAttributeDatas[attribNdx][0]));
713 GLint location = gl.getAttribLocation(m_program->getProgram(), ("a_dyn" + de::toString(attribNdx)).c_str());
715 gl.enableVertexAttribArray(location);
716 dynamicAttributeLocations.push_back(location);
774 GLint location = gl.getAttribLocation(m_program->getProgram(), ("a_static" + de::toString(attribNdx)).c_str());
775 gl.disableVertexAttribArray(location);