Lines Matching refs:maxVertexAttribs

62 	int maxVertexAttribs = ctx.getInteger(GL_MAX_VERTEX_ATTRIBS);
63 ctx.glVertexAttrib1f(maxVertexAttribs, 0.0f);
65 ctx.glVertexAttrib2f(maxVertexAttribs, 0.0f, 0.0f);
67 ctx.glVertexAttrib3f(maxVertexAttribs, 0.0f, 0.0f, 0.0f);
69 ctx.glVertexAttrib4f(maxVertexAttribs, 0.0f, 0.0f, 0.0f, 0.0f);
77 int maxVertexAttribs = ctx.getInteger(GL_MAX_VERTEX_ATTRIBS);
79 ctx.glVertexAttrib1fv(maxVertexAttribs, &v[0]);
81 ctx.glVertexAttrib2fv(maxVertexAttribs, &v[0]);
83 ctx.glVertexAttrib3fv(maxVertexAttribs, &v[0]);
85 ctx.glVertexAttrib4fv(maxVertexAttribs, &v[0]);
92 int maxVertexAttribs = ctx.getInteger(GL_MAX_VERTEX_ATTRIBS);
97 ctx.glVertexAttribI4i(maxVertexAttribs, valInt, valInt, valInt, valInt);
99 ctx.glVertexAttribI4ui(maxVertexAttribs, valUint, valUint, valUint, valUint);
106 int maxVertexAttribs = ctx.getInteger(GL_MAX_VERTEX_ATTRIBS);
111 ctx.glVertexAttribI4iv(maxVertexAttribs, &valInt[0]);
113 ctx.glVertexAttribI4uiv(maxVertexAttribs, &valUint[0]);
126 int maxVertexAttribs = ctx.getInteger(GL_MAX_VERTEX_ATTRIBS);
127 ctx.glVertexAttribPointer(maxVertexAttribs, 1, GL_BYTE, GL_TRUE, 0, 0);
181 int maxVertexAttribs = ctx.getInteger(GL_MAX_VERTEX_ATTRIBS);
182 ctx.glVertexAttribIPointer(maxVertexAttribs, 1, GL_BYTE, 0, 0);
216 int maxVertexAttribs = ctx.getInteger(GL_MAX_VERTEX_ATTRIBS);
217 ctx.glEnableVertexAttribArray(maxVertexAttribs);
225 int maxVertexAttribs = ctx.getInteger(GL_MAX_VERTEX_ATTRIBS);
226 ctx.glDisableVertexAttribArray(maxVertexAttribs);
259 int maxVertexAttribs = ctx.getInteger(GL_MAX_VERTEX_ATTRIBS);
260 ctx.glVertexAttribDivisor(maxVertexAttribs, 0);