Home | History | Annotate | Download | only in simplereference

Lines Matching defs:coordLoc

65 	deInt32				coordLoc	= ctx.getAttribLocation(program, "a_coord");
86 if (coordLoc >= 0)
91 ctx.enableVertexAttribArray(coordLoc);
92 ctx.vertexAttribPointer(coordLoc, 2, GL_FLOAT, GL_FALSE, 0, 0);
135 deInt32 coordLoc = ctx.getAttribLocation(program, "a_coord");
144 if (coordLoc >= 0)
146 ctx.enableVertexAttribArray(coordLoc);
147 ctx.vertexAttribPointer(coordLoc, 2, GL_FLOAT, GL_FALSE, 0, &coord[0]);
155 if (coordLoc >= 0)
156 ctx.disableVertexAttribArray(coordLoc);