Lines Matching refs:maxVertexAttribs

71 			int maxVertexAttribs = m_context.getContextInfo().getInt(GL_MAX_VERTEX_ATTRIBS);
72 glVertexAttrib1f(maxVertexAttribs, 0.0f);
74 glVertexAttrib2f(maxVertexAttribs, 0.0f, 0.0f);
76 glVertexAttrib3f(maxVertexAttribs, 0.0f, 0.0f, 0.0f);
78 glVertexAttrib4f(maxVertexAttribs, 0.0f, 0.0f, 0.0f, 0.0f);
85 int maxVertexAttribs = m_context.getContextInfo().getInt(GL_MAX_VERTEX_ATTRIBS);
87 glVertexAttrib1fv(maxVertexAttribs, &v[0]);
89 glVertexAttrib2fv(maxVertexAttribs, &v[0]);
91 glVertexAttrib3fv(maxVertexAttribs, &v[0]);
93 glVertexAttrib4fv(maxVertexAttribs, &v[0]);
99 int maxVertexAttribs = m_context.getContextInfo().getInt(GL_MAX_VERTEX_ATTRIBS);
104 glVertexAttribI4i(maxVertexAttribs, valInt, valInt, valInt, valInt);
106 glVertexAttribI4ui(maxVertexAttribs, valUint, valUint, valUint, valUint);
112 int maxVertexAttribs = m_context.getContextInfo().getInt(GL_MAX_VERTEX_ATTRIBS);
117 glVertexAttribI4iv(maxVertexAttribs, &valInt[0]);
119 glVertexAttribI4uiv(maxVertexAttribs, &valUint[0]);
131 int maxVertexAttribs = m_context.getContextInfo().getInt(GL_MAX_VERTEX_ATTRIBS);
132 glVertexAttribPointer(maxVertexAttribs, 1, GL_BYTE, GL_TRUE, 0, 0);
185 int maxVertexAttribs = m_context.getContextInfo().getInt(GL_MAX_VERTEX_ATTRIBS);
186 glVertexAttribIPointer(maxVertexAttribs, 1, GL_BYTE, 0, 0);
219 int maxVertexAttribs = m_context.getContextInfo().getInt(GL_MAX_VERTEX_ATTRIBS);
220 glEnableVertexAttribArray(maxVertexAttribs);
227 int maxVertexAttribs = m_context.getContextInfo().getInt(GL_MAX_VERTEX_ATTRIBS);
228 glDisableVertexAttribArray(maxVertexAttribs);
257 int maxVertexAttribs = m_context.getContextInfo().getInt(GL_MAX_VERTEX_ATTRIBS);
258 glVertexAttribDivisor(maxVertexAttribs, 0);