Home
last modified time | relevance | path

Searched refs:vertices (Results 1 – 8 of 8) sorted by relevance

/cts/suite/cts/deviceTests/opengl/jni/graphics/
DMesh.cpp16 Mesh::Mesh(const float* vertices, const float* normals, const float* texCoords, in Mesh() argument
18 : mVertices(vertices), in Mesh()
DGLUtils.cpp101 float* vertices = new float[numVertices * 3]; in loadMesh() local
107 vertices[vIndex + 0] = readFloat(buffer + index); in loadMesh()
109 vertices[vIndex + 1] = readFloat(buffer + index); in loadMesh()
111 vertices[vIndex + 2] = readFloat(buffer + index); in loadMesh()
127 return new Mesh(vertices, normals, texCoords, numVertices); in loadMesh()
DMesh.h23 Mesh(const float* vertices, const float* normals, const float* texCoords,
/cts/apps/CtsVerifier/src/com/android/cts/verifier/projection/cube/
DCube.java33 int vertices[] = { in Cube() local
72 ByteBuffer vbb = ByteBuffer.allocateDirect(vertices.length*4); in Cube()
75 mVertexBuffer.put(vertices); in Cube()
/cts/suite/cts/deviceTests/opengl/
Dcob_exporter.py47 for vertex_index, vertex_itself in enumerate(mesh.data.faces[uv_index].vertices):
49 vertex = mesh.data.vertices[vertex_itself]
/cts/tests/tests/openglperf/src/android/openglperf/cts/
DPlanetsRenderer.java398 FloatBuffer vertices = mSpheres[i].getVertices(); in createVbo() local
399 GLES20.glBufferData(GLES20.GL_ARRAY_BUFFER, vertices.limit() in createVbo()
400 * Sphere.FLOAT_SIZE, vertices, GLES20.GL_STATIC_DRAW); in createVbo()
/cts/tests/tests/media/src/android/media/cts/
DEncodeVirtualDisplayWithCompositionTest.java928 float[] vertices = new float[] { in GlWindow() local
938 vertices.length * FLOAT_SIZE_BYTES) in GlWindow()
940 mVerticesData.put(vertices).position(0); in GlWindow()
/cts/suite/cts/deviceTests/browserbench/assets/octane/
Dbox2d.js126 …ype.b2EdgeChainDef=function(){this.vertexCount=0;this.isALoop=true;this.vertices=[]};Box2D.inherit… property