Searched defs:posLocation (Results 1 - 6 of 6) sorted by relevance

/external/deqp/modules/egl/
H A DteglSwapBuffersTests.cpp329 deUint32 posLocation; local
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);
H A DteglNativeColorMappingTests.cpp232 deUint32 posLocation; local
236 posLocation = gl.getAttribLocation(program, "a_pos");
237 gl.enableVertexAttribArray(posLocation);
243 gl.vertexAttribPointer(posLocation, 2, GL_FLOAT, GL_FALSE, 0, positions);
H A DteglNativeCoordMappingTests.cpp242 deUint32 posLocation; local
245 posLocation = gl.getAttribLocation(program, "a_pos");
246 gl.enableVertexAttribArray(posLocation);
247 gl.vertexAttribPointer(posLocation, 2, GL_FLOAT, GL_FALSE, 0, positions);
/external/deqp/modules/gles31/functional/
H A Des31fTessellationGeometryInteractionTests.cpp253 const int posLocation = gl.getAttribLocation(program.getProgram(), "a_position"); local
261 if (posLocation == -1)
268 gl.vertexAttribPointer(posLocation, 4, GL_FLOAT, GL_FALSE, 0, DE_NULL);
269 gl.enableVertexAttribArray(posLocation);
552 const int posLocation = gl.getAttribLocation(program.getProgram(), "a_position"); local
558 if (posLocation == -1)
563 gl.vertexAttribPointer(posLocation, 4, GL_FLOAT, GL_FALSE, 0, DE_NULL);
564 gl.enableVertexAttribArray(posLocation);
1008 const int posLocation = gl.getAttribLocation(m_feedbackProgram->getProgram(), "a_position");
1011 if (posLocation
[all...]
H A Des31fDrawTests.cpp819 deInt32 posLocation = ctx.getAttribLocation(programID, "a_position"); local
858 ctx.vertexAttribPointer(posLocation, 4, GL_FLOAT, GL_FALSE, 0, DE_NULL);
859 ctx.vertexAttribDivisor(posLocation, 0);
860 ctx.enableVertexAttribArray(posLocation);
2313 deInt32 posLocation = gl.getAttribLocation(programID, "a_position");
2340 gl.vertexAttribPointer(posLocation, 4, GL_FLOAT, GL_FALSE, 0, DE_NULL);
2341 gl.vertexAttribDivisor(posLocation, 0);
2342 gl.enableVertexAttribArray(posLocation);
2481 const deInt32 posLocation = gl.getAttribLocation(programID, "a_position");
2496 gl.vertexAttribPointer(posLocation,
[all...]
/external/deqp/modules/gles3/functional/
H A Des3fDrawTests.cpp687 deInt32 posLocation = ctx.getAttribLocation(programID, "a_position"); local
723 ctx.vertexAttribPointer(posLocation, 4, GL_FLOAT, GL_FALSE, 0, DE_NULL);
724 ctx.vertexAttribDivisor(posLocation, 0);
725 ctx.enableVertexAttribArray(posLocation);

Completed in 753 milliseconds