Lines Matching defs:maxVertexAttribs

102 	int maxVertexAttribs = ctx.getInteger(GL_MAX_VERTEX_ATTRIBS);
103 ctx.glVertexAttrib1f(maxVertexAttribs, 0.0f);
105 ctx.glVertexAttrib2f(maxVertexAttribs, 0.0f, 0.0f);
107 ctx.glVertexAttrib3f(maxVertexAttribs, 0.0f, 0.0f, 0.0f);
109 ctx.glVertexAttrib4f(maxVertexAttribs, 0.0f, 0.0f, 0.0f, 0.0f);
117 int maxVertexAttribs = ctx.getInteger(GL_MAX_VERTEX_ATTRIBS);
119 ctx.glVertexAttrib1fv(maxVertexAttribs, &v[0]);
121 ctx.glVertexAttrib2fv(maxVertexAttribs, &v[0]);
123 ctx.glVertexAttrib3fv(maxVertexAttribs, &v[0]);
125 ctx.glVertexAttrib4fv(maxVertexAttribs, &v[0]);
132 int maxVertexAttribs = ctx.getInteger(GL_MAX_VERTEX_ATTRIBS);
137 ctx.glVertexAttribI4i(maxVertexAttribs, valInt, valInt, valInt, valInt);
139 ctx.glVertexAttribI4ui(maxVertexAttribs, valUint, valUint, valUint, valUint);
146 int maxVertexAttribs = ctx.getInteger(GL_MAX_VERTEX_ATTRIBS);
151 ctx.glVertexAttribI4iv(maxVertexAttribs, &valInt[0]);
153 ctx.glVertexAttribI4uiv(maxVertexAttribs, &valUint[0]);
173 int maxVertexAttribs = ctx.getInteger(GL_MAX_VERTEX_ATTRIBS);
174 ctx.glVertexAttribPointer(maxVertexAttribs, 1, GL_BYTE, GL_TRUE, 0, 0);
233 int maxVertexAttribs = ctx.getInteger(GL_MAX_VERTEX_ATTRIBS);
234 ctx.glVertexAttribIPointer(maxVertexAttribs, 1, GL_BYTE, 0, 0);
265 int maxVertexAttribs = ctx.getInteger(GL_MAX_VERTEX_ATTRIBS);
273 ctx.glVertexAttribFormat(maxVertexAttribs, 4, GL_FLOAT, GL_FALSE, maxVertexAttribRelativeOffset);
328 int maxVertexAttribs = ctx.getInteger(GL_MAX_VERTEX_ATTRIBS);
336 ctx.glVertexAttribIFormat(maxVertexAttribs, 4, GL_INT, 0);
375 int maxVertexAttribs = ctx.getInteger(GL_MAX_VERTEX_ATTRIBS);
378 ctx.glEnableVertexAttribArray(maxVertexAttribs);
385 int maxVertexAttribs = ctx.getInteger(GL_MAX_VERTEX_ATTRIBS);
388 ctx.glDisableVertexAttribArray(maxVertexAttribs);
421 int maxVertexAttribs = ctx.getInteger(GL_MAX_VERTEX_ATTRIBS);
424 ctx.glVertexAttribDivisor(maxVertexAttribs, 0);