HomeSort by relevance Sort by last modified time
    Searched defs:posLocation (Results 1 - 7 of 7) sorted by null

  /external/deqp/modules/egl/
teglNativeColorMappingTests.cpp 232 deUint32 posLocation;
236 posLocation = gl.getAttribLocation(program, "a_pos");
237 gl.enableVertexAttribArray(posLocation);
243 gl.vertexAttribPointer(posLocation, 2, GL_FLOAT, GL_FALSE, 0, positions);
teglSwapBuffersTests.cpp 329 deUint32 posLocation;
334 posLocation = gl.getAttribLocation(program, "a_pos");
335 gl.enableVertexAttribArray(posLocation);
378 gl.vertexAttribPointer(posLocation, 2, GL_FLOAT, GL_FALSE, 0, positions1);
393 gl.vertexAttribPointer(posLocation, 2, GL_FLOAT, GL_FALSE, 0, positions2);
408 gl.disableVertexAttribArray(posLocation);
teglNativeCoordMappingTests.cpp 242 deUint32 posLocation;
245 posLocation = gl.getAttribLocation(program, "a_pos");
246 gl.enableVertexAttribArray(posLocation);
247 gl.vertexAttribPointer(posLocation, 2, GL_FLOAT, GL_FALSE, 0, positions);
teglGetFrameTimestampsTests.cpp 594 deUint32 posLocation;
599 posLocation = gl.getAttribLocation(program, "a_pos");
600 gl.enableVertexAttribArray(posLocation);
651 gl.vertexAttribPointer(posLocation, 2, GL_FLOAT, GL_FALSE, 0, posSelect ? positions1 : positions2);
712 gl.disableVertexAttribArray(posLocation);
  /external/deqp/modules/gles31/functional/
es31fTessellationGeometryInteractionTests.cpp 272 const int posLocation = gl.getAttribLocation(program.getProgram(), "a_position");
280 if (posLocation == -1)
287 gl.vertexAttribPointer(posLocation, 4, GL_FLOAT, GL_FALSE, 0, DE_NULL);
288 gl.enableVertexAttribArray(posLocation);
573 const int posLocation = gl.getAttribLocation(program.getProgram(), "a_position");
579 if (posLocation == -1)
584 gl.vertexAttribPointer(posLocation, 4, GL_FLOAT, GL_FALSE, 0, DE_NULL);
585 gl.enableVertexAttribArray(posLocation);
    [all...]
es31fDrawTests.cpp 819 deInt32 posLocation = ctx.getAttribLocation(programID, "a_position");
858 ctx.vertexAttribPointer(posLocation, 4, GL_FLOAT, GL_FALSE, 0, DE_NULL);
859 ctx.vertexAttribDivisor(posLocation, 0);
860 ctx.enableVertexAttribArray(posLocation);
    [all...]
  /external/deqp/modules/gles3/functional/
es3fDrawTests.cpp 687 deInt32 posLocation = ctx.getAttribLocation(programID, "a_position");
723 ctx.vertexAttribPointer(posLocation, 4, GL_FLOAT, GL_FALSE, 0, DE_NULL);
724 ctx.vertexAttribDivisor(posLocation, 0);
725 ctx.enableVertexAttribArray(posLocation);
    [all...]

Completed in 876 milliseconds