Lines Matching refs:maxVertexAttribs

72 	int maxVertexAttribs = ctx.getInteger(GL_MAX_VERTEX_ATTRIBS);
73 ctx.glVertexAttrib1f(maxVertexAttribs, 0.0f);
75 ctx.glVertexAttrib2f(maxVertexAttribs, 0.0f, 0.0f);
77 ctx.glVertexAttrib3f(maxVertexAttribs, 0.0f, 0.0f, 0.0f);
79 ctx.glVertexAttrib4f(maxVertexAttribs, 0.0f, 0.0f, 0.0f, 0.0f);
87 int maxVertexAttribs = ctx.getInteger(GL_MAX_VERTEX_ATTRIBS);
89 ctx.glVertexAttrib1fv(maxVertexAttribs, &v[0]);
91 ctx.glVertexAttrib2fv(maxVertexAttribs, &v[0]);
93 ctx.glVertexAttrib3fv(maxVertexAttribs, &v[0]);
95 ctx.glVertexAttrib4fv(maxVertexAttribs, &v[0]);
102 int maxVertexAttribs = ctx.getInteger(GL_MAX_VERTEX_ATTRIBS);
107 ctx.glVertexAttribI4i(maxVertexAttribs, valInt, valInt, valInt, valInt);
109 ctx.glVertexAttribI4ui(maxVertexAttribs, valUint, valUint, valUint, valUint);
116 int maxVertexAttribs = ctx.getInteger(GL_MAX_VERTEX_ATTRIBS);
121 ctx.glVertexAttribI4iv(maxVertexAttribs, &valInt[0]);
123 ctx.glVertexAttribI4uiv(maxVertexAttribs, &valUint[0]);
136 int maxVertexAttribs = ctx.getInteger(GL_MAX_VERTEX_ATTRIBS);
137 ctx.glVertexAttribPointer(maxVertexAttribs, 1, GL_BYTE, GL_TRUE, 0, 0);
191 int maxVertexAttribs = ctx.getInteger(GL_MAX_VERTEX_ATTRIBS);
192 ctx.glVertexAttribIPointer(maxVertexAttribs, 1, GL_BYTE, 0, 0);
225 int maxVertexAttribs = ctx.getInteger(GL_MAX_VERTEX_ATTRIBS);
233 ctx.glVertexAttribFormat(maxVertexAttribs, 4, GL_FLOAT, GL_FALSE, maxVertexAttribRelativeOffset);
288 int maxVertexAttribs = ctx.getInteger(GL_MAX_VERTEX_ATTRIBS);
296 ctx.glVertexAttribIFormat(maxVertexAttribs, 4, GL_INT, 0);
335 int maxVertexAttribs = ctx.getInteger(GL_MAX_VERTEX_ATTRIBS);
338 ctx.glEnableVertexAttribArray(maxVertexAttribs);
345 int maxVertexAttribs = ctx.getInteger(GL_MAX_VERTEX_ATTRIBS);
348 ctx.glDisableVertexAttribArray(maxVertexAttribs);
381 int maxVertexAttribs = ctx.getInteger(GL_MAX_VERTEX_ATTRIBS);
384 ctx.glVertexAttribDivisor(maxVertexAttribs, 0);