Home
last modified time | relevance | path

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

12

/aosp12/packages/modules/GeoTZ/data_pipeline/src/test/java/com/android/timezone/location/data_pipeline/steps/canonicalizetzs2polygons/data/output_polygons/
H A DAmerica_Argentina_Buenos_Aires_tzs2polygons.prototxt9 vertices {
14 vertices {
19 vertices {
24 vertices {
29 vertices {
34 vertices {
39 vertices {
44 vertices {
49 vertices {
54 vertices {
[all …]
H A DEurope_London_tzs2polygons.prototxt9 vertices {
14 vertices {
19 vertices {
24 vertices {
29 vertices {
34 vertices {
39 vertices {
44 vertices {
49 vertices {
54 vertices {
[all …]
/aosp12/packages/modules/GeoTZ/data_pipeline/src/test/java/com/android/timezone/location/data_pipeline/steps/tzs2polygons_tzs2cellunions/data/
H A DEurope_London_tzs2polygons.prototxt9 vertices {
14 vertices {
19 vertices {
24 vertices {
29 vertices {
34 vertices {
39 vertices {
44 vertices {
49 vertices {
54 vertices {
[all …]
/aosp12/packages/modules/GeoTZ/data_pipeline/src/test/java/com/android/timezone/location/data_pipeline/steps/geojsontz_to_tzs2polygons/data/
H A DEurope_London_tzs2polygons.prototxt9 vertices {
14 vertices {
19 vertices {
24 vertices {
29 vertices {
34 vertices {
39 vertices {
44 vertices {
49 vertices {
54 vertices {
[all …]
/aosp12/packages/modules/GeoTZ/data_pipeline/src/test/java/com/android/timezone/location/data_pipeline/steps/canonicalizetzs2polygons/data/input_polygons/
H A DAmerica_Argentina_Cordoba_tzs2polygons.prototxt9 vertices {
14 vertices {
19 vertices {
24 vertices {
29 vertices {
34 vertices {
39 vertices {
44 vertices {
49 vertices {
54 vertices {
[all …]
H A DGB_tzs2polygons.prototxt9 vertices {
14 vertices {
19 vertices {
24 vertices {
29 vertices {
34 vertices {
39 vertices {
44 vertices {
49 vertices {
54 vertices {
[all …]
H A DAmerica_Argentina_Ushuaia_tzs2polygons.prototxt9 vertices {
14 vertices {
19 vertices {
24 vertices {
29 vertices {
34 vertices {
39 vertices {
44 vertices {
49 vertices {
54 vertices {
[all …]
/aosp12/frameworks/av/cmds/screenrecord/
H A DTextRenderer.cpp194 float vertices[len * quadCoords]; in drawString() local
218 vertices[off + 0] = vertLeft; in drawString()
219 vertices[off + 1] = vertBottom; in drawString()
220 vertices[off + 2] = vertRight; in drawString()
222 vertices[off + 4] = vertLeft; in drawString()
223 vertices[off + 5] = vertTop; in drawString()
224 vertices[off + 6] = vertLeft; in drawString()
225 vertices[off + 7] = vertTop; in drawString()
226 vertices[off + 8] = vertRight; in drawString()
228 vertices[off + 10] = vertRight; in drawString()
[all …]
H A DProgram.cpp230 const float* vertices, const float* texes, size_t count) const { in drawTriangles() argument
235 err = beforeDraw(texName, texMatrix, vertices, texes, false); in drawTriangles()
244 const float* vertices, const float* texes, bool invert) const { in beforeDraw() argument
261 glVertexAttribPointer(maPositionLoc, 2, GL_FLOAT, GL_FALSE, 0, vertices); in beforeDraw()
H A DProgram.h62 const float* vertices, const float* texes, size_t count) const;
72 const float* vertices, const float* texes, bool invert) const;
/aosp12/frameworks/base/telephony/java/android/telephony/
H A DCbGeoUtils.java174 public Polygon(@NonNull List<LatLng> vertices) { in Polygon() argument
175 mVertices = vertices; in Polygon()
179 for (int i = 1; i < vertices.size(); i++) { in Polygon()
180 if (vertices.get(i).lng < vertices.get(idx).lng) { in Polygon()
184 mOrigin = vertices.get(idx); in Polygon()
186 mScaledVertices = vertices.stream() in Polygon()
417 List<LatLng> vertices = new ArrayList<>(geoParameters.length - 1); in parseGeometriesFromString() local
419 vertices.add(parseLatLngFromString(geoParameters[i])); in parseGeometriesFromString()
421 geometries.add(new Polygon(vertices)); in parseGeometriesFromString()
/aosp12/hardware/interfaces/automotive/sv/1.0/
H A Dtypes.hal285 * Given a list of vertices for an overlay, a primitive type defines which vertices are used to form
290 * Consecutive vertices picked in order 3 at a time form a triangle.
291 * Eg: In a list of vertices (V1, V2, V3, V4, V5, V6)
297 * Every 3 consecutive vertices form a triangle.
298 * Example in a list of vertices V1, V2, V3, V4, V5, V6
312 /** Number of vertices in the overlay. */
327 * Shared memory object containing a list of vertices for each overlay as described by
336 * Layout of vertices in shared memory is in order:
343 * The number of vertices each overlay has must match the verticesCount in overlaysMemoryDesc.
345 * For each overlay the number of vertices must be 3 or greater.
[all …]
/aosp12/packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/cube/
H A DCube.java33 int vertices[] = { in Cube() local
72 ByteBuffer vbb = ByteBuffer.allocateDirect(vertices.length*4); in Cube()
75 mVertexBuffer.put(vertices); in Cube()
/aosp12/frameworks/base/tests/AccessoryDisplay/source/src/com/android/accessorydisplay/source/presentation/
H A DCube.java33 int vertices[] = { in Cube() local
72 ByteBuffer vbb = ByteBuffer.allocateDirect(vertices.length*4); in Cube()
75 mVertexBuffer.put(vertices); in Cube()
/aosp12/packages/modules/CellBroadcastService/src/com/android/cellbroadcastservice/
H A DCbGeoUtils.java74 List<LatLng> vertices = new ArrayList<>(geoParameters.length - 1); in parseGeometriesFromString() local
76 vertices.add(parseLatLngFromString(geoParameters[i])); in parseGeometriesFromString()
78 geometries.add(new Polygon(vertices)); in parseGeometriesFromString()
242 List<LatLng> vertices = mPolygon.getVertices(); in distance() local
245 LatLng a = vertices.get(i); in distance()
246 LatLng b = vertices.get((i + 1) % n); in distance()
/aosp12/frameworks/native/opengl/tests/angeles/
H A Ddemo.c116 static GLOBJECT * newGLObject(long vertices, int vertexComponents, in newGLObject() argument
123 result->count = vertices; in newGLObject()
125 result->vertexArray = (GLfixed *)malloc(vertices * vertexComponents * in newGLObject()
127 result->colorArray = (GLubyte *)malloc(vertices * 4 * sizeof(GLubyte)); in newGLObject()
130 result->normalArray = (GLfixed *)malloc(vertices * 3 * in newGLObject()
207 const long vertices = triangleCount * 3; in createSuperShape() local
213 result = newGLObject(vertices, 3, 1); in createSuperShape()
351 const long vertices = triangleCount * 3; in createGroundPlane() local
356 result = newGLObject(vertices, 2, 0); in createGroundPlane()
/aosp12/frameworks/base/libs/hwui/
H A DMatrix.cpp477 float vertices[] = {r.left, r.top, r.right, r.top, r.right, r.bottom, r.left, r.bottom}; in mapRect() local
482 float px = vertices[i]; in mapRect()
483 float py = vertices[i + 1]; in mapRect()
490 vertices[i] = x * z; in mapRect()
491 vertices[i + 1] = y * z; in mapRect()
494 r.left = r.right = vertices[0]; in mapRect()
495 r.top = r.bottom = vertices[1]; in mapRect()
498 x = vertices[i]; in mapRect()
499 y = vertices[i + 1]; in mapRect()
/aosp12/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
H A DCbGeoUtilsTest.java140 List<LatLng> vertices = Arrays.asList( in testPointInPolygon_crossing180thMeridian() local
149 Polygon polygon = new Polygon(vertices); in testPointInPolygon_crossing180thMeridian()
165 List<LatLng> vertices = Arrays.asList( in testPointInPolygon_crossing0thMeridian() local
171 Polygon polygon = new Polygon(vertices); in testPointInPolygon_crossing0thMeridian()
/aosp12/frameworks/native/opengl/tests/linetex/
H A Dlinetex.cpp85 const GLfloat vertices[4][2] = { in main() local
104 glVertexPointer(2, GL_FLOAT, 0, vertices); in main()
/aosp12/frameworks/native/libs/gui/tests/
H A DMultiTextureConsumer_test.cpp114 …GLfloat vertices[][2] = { {i*16.0f, 0}, {(i+1)*16.0f, 0}, {(i+1)*16.0f, 16.0f}, {i*16.0f, 16.0f} }; in TEST_F() local
115 glVertexPointer(2, GL_FLOAT, 0, vertices); in TEST_F()
/aosp12/frameworks/native/opengl/tests/fillrate/
H A Dfillrate.cpp96 const GLfloat vertices[4][2] = { in main() local
119 glVertexPointer(2, GL_FLOAT, 0, vertices); in main()
/aosp12/frameworks/native/opengl/tests/filter/
H A Dfilter.cpp145 const GLfloat vertices[4][2] = { in main() local
181 glVertexPointer(2, GL_FLOAT, 0, vertices); in main()
/aosp12/frameworks/native/opengl/tests/gl_jni/jni/
H A Dgl_code.cpp156 const GLfloat vertices[] = { in Java_com_android_gljni_GLJNILib_step() local
171 glVertexPointer(3, GL_FLOAT, 0, vertices); in Java_com_android_gljni_GLJNILib_step()
/aosp12/frameworks/native/opengl/tests/tritex/
H A Dtritex.cpp229 const GLfloat vertices[] = { in render() local
250 glVertexPointer(3, GL_FLOAT, 0, vertices); in render()
/aosp12/packages/modules/GeoTZ/data_pipeline/src/main/java/com/android/timezone/location/data_pipeline/steps/
H A DTypes.java289 List<S2Point> vertices = new ArrayList<>(); in load() local
295 vertices.add(s2Point); in load()
297 S2Loop s2Loop = new S2Loop(vertices); in load()

12