Lines Matching refs:maxVertexAttribs

100 			int maxVertexAttribs = m_context.getContextInfo().getInt(GL_MAX_VERTEX_ATTRIBS);
101 glVertexAttrib1f(maxVertexAttribs, 0.0f);
103 glVertexAttrib2f(maxVertexAttribs, 0.0f, 0.0f);
105 glVertexAttrib3f(maxVertexAttribs, 0.0f, 0.0f, 0.0f);
107 glVertexAttrib4f(maxVertexAttribs, 0.0f, 0.0f, 0.0f, 0.0f);
114 int maxVertexAttribs = m_context.getContextInfo().getInt(GL_MAX_VERTEX_ATTRIBS);
116 glVertexAttrib1fv(maxVertexAttribs, &v[0]);
118 glVertexAttrib2fv(maxVertexAttribs, &v[0]);
120 glVertexAttrib3fv(maxVertexAttribs, &v[0]);
122 glVertexAttrib4fv(maxVertexAttribs, &v[0]);
128 int maxVertexAttribs = m_context.getContextInfo().getInt(GL_MAX_VERTEX_ATTRIBS);
133 glVertexAttribI4i(maxVertexAttribs, valInt, valInt, valInt, valInt);
135 glVertexAttribI4ui(maxVertexAttribs, valUint, valUint, valUint, valUint);
141 int maxVertexAttribs = m_context.getContextInfo().getInt(GL_MAX_VERTEX_ATTRIBS);
146 glVertexAttribI4iv(maxVertexAttribs, &valInt[0]);
148 glVertexAttribI4uiv(maxVertexAttribs, &valUint[0]);
167 int maxVertexAttribs = m_context.getContextInfo().getInt(GL_MAX_VERTEX_ATTRIBS);
168 glVertexAttribPointer(maxVertexAttribs, 1, GL_BYTE, GL_TRUE, 0, 0);
226 int maxVertexAttribs = m_context.getContextInfo().getInt(GL_MAX_VERTEX_ATTRIBS);
227 glVertexAttribIPointer(maxVertexAttribs, 1, GL_BYTE, 0, 0);
258 int maxVertexAttribs = m_context.getContextInfo().getInt(GL_MAX_VERTEX_ATTRIBS);
259 glEnableVertexAttribArray(maxVertexAttribs);
266 int maxVertexAttribs = m_context.getContextInfo().getInt(GL_MAX_VERTEX_ATTRIBS);
267 glDisableVertexAttribArray(maxVertexAttribs);
296 int maxVertexAttribs = m_context.getContextInfo().getInt(GL_MAX_VERTEX_ATTRIBS);
297 glVertexAttribDivisor(maxVertexAttribs, 0);