Lines Matching defs:loc
918 void bindAttribute (deUint32 loc);
1030 void AttributeArray::bindAttribute (deUint32 loc)
1042 case 1: m_ctx.vertexAttrib1f(loc, attr.x()); break;
1043 case 2: m_ctx.vertexAttrib2f(loc, attr.x(), attr.y()); break;
1044 case 3: m_ctx.vertexAttrib3f(loc, attr.x(), attr.y(), attr.z()); break;
1045 case 4: m_ctx.vertexAttrib4f(loc, attr.x(), attr.y(), attr.z(), attr.w()); break;
1053 m_ctx.vertexAttribI4i(loc, attr.x(), attr.y(), attr.z(), attr.w());
1059 m_ctx.vertexAttribI4ui(loc, attr.x(), attr.y(), attr.z(), attr.w());
1099 m_ctx.vertexAttribPointer(loc, size, inputTypeToGL(m_inputType), m_normalize, m_stride, basePtr + m_offset);
1105 m_ctx.vertexAttribIPointer(loc, m_componentCount, inputTypeToGL(m_inputType), m_stride, basePtr + m_offset);
1116 m_ctx.vertexAttribPointer(loc, m_componentCount, inputTypeToGL(m_inputType), m_normalize, m_stride, basePtr + m_offset);
1121 m_ctx.vertexAttribDivisor(loc, m_instanceDivisor);
1887 deUint32 loc = m_ctx.getAttribLocation(m_programID, attribName.str().c_str());
1891 m_ctx.enableVertexAttribArray(loc);
1895 m_arrays[arrayNdx]->bindAttribute(loc);
2045 deUint32 loc = m_ctx.getAttribLocation(m_programID, attribName.str().c_str());
2047 m_ctx.disableVertexAttribArray(loc);