Home | History | Annotate | Download | only in simplereference

Lines Matching refs:posLoc

64 	deInt32				posLoc		= ctx.getAttribLocation(program, "a_position");
75 TCU_CHECK(posLoc >= 0);
80 ctx.enableVertexAttribArray(posLoc);
81 ctx.vertexAttribPointer(posLoc, 4, GL_FLOAT, GL_FALSE, 0, 0);
134 deInt32 posLoc = ctx.getAttribLocation(program, "a_position");
138 TCU_CHECK(posLoc >= 0);
140 ctx.enableVertexAttribArray(posLoc);
141 ctx.vertexAttribPointer(posLoc, 4, GL_FLOAT, GL_FALSE, 0, &position[0]);
152 if (posLoc >= 0)
153 ctx.disableVertexAttribArray(posLoc);