HomeSort by relevance Sort by last modified time
    Searched refs:vertices (Results 51 - 75 of 115) sorted by null

1 23 4 5

  /external/ceres-solver/internal/ceres/
graph.h 91 // AddEdge on a pair of vertices which do not exist in the graph yet
95 // vertices.
122 // Calling EdgeWeight on a pair of vertices where either one of the
123 // vertices is not present in the graph will result in undefined
140 const HashSet<Vertex>& vertices() const { function in class:ceres::internal::Graph
visibility_test.cc 107 EXPECT_EQ(graph->vertices().size(), visibility.size());
183 EXPECT_EQ(graph->vertices().size(), visibility.size());
  /external/skia/include/core/
SkDraw.h 64 const SkPoint vertices[], const SkPoint textures[],
  /external/skia/include/utils/
SkNWayCanvas.h 69 const SkPoint vertices[], const SkPoint texs[],
SkDeferredCanvas.h 185 const SkPoint vertices[], const SkPoint texs[],
SkDumpCanvas.h 115 const SkPoint vertices[], const SkPoint texs[],
SkProxyCanvas.h 74 const SkPoint vertices[], const SkPoint texs[],
  /external/skia/legacy/include/core/
SkDraw.h 64 const SkPoint vertices[], const SkPoint textures[],
  /external/skia/legacy/include/utils/
SkNWayCanvas.h 66 const SkPoint vertices[], const SkPoint texs[],
SkDumpCanvas.h 103 const SkPoint vertices[], const SkPoint texs[],
SkProxyCanvas.h 71 const SkPoint vertices[], const SkPoint texs[],
  /external/skia/src/core/
SkBBoxRecord.h 61 const SkPoint vertices[], const SkPoint texs[],
  /external/skia/src/gpu/
GrGpu.cpp 322 GrCrash("Can't get vertices into buffer!");
434 void** vertices) {
438 GrAssert(NULL != vertices);
442 *vertices = fVertexPool->makeSpace(vertexSize,
446 if (NULL == *vertices) {
GrAARectRenderer.cpp 65 // Each AA filled rect is drawn with 8 vertices and 10 triangles (8 around
134 GrPrintf("Failed to get space for vertices!\n");
144 intptr_t verts = reinterpret_cast<intptr_t>(geo.vertices());
203 GrPrintf("Failed to get space for vertices!\n");
212 intptr_t verts = reinterpret_cast<intptr_t>(geo.vertices());
214 // We create vertices for four nested rectangles. There are two ramps from 0 to full
  /external/webkit/Source/WebCore/platform/graphics/android/context/
RecordingContextCanvasProxy.h 89 const SkPoint vertices[], const SkPoint texs[],
  /frameworks/native/opengl/tests/angeles/
demo.c 116 static GLOBJECT * newGLObject(long vertices, int vertexComponents,
123 result->count = vertices;
125 result->vertexArray = (GLfixed *)malloc(vertices * vertexComponents *
127 result->colorArray = (GLubyte *)malloc(vertices * 4 * sizeof(GLubyte));
130 result->normalArray = (GLfixed *)malloc(vertices * 3 *
207 const long vertices = triangleCount * 3; local
213 result = newGLObject(vertices, 3, 1);
338 // Set number of vertices in object to the actual amount created.
351 const long vertices = triangleCount * 3; local
356 result = newGLObject(vertices, 2, 0)
    [all...]
  /external/skia/legacy/src/core/
SkConcaveToTriangles.cpp 17 // No new vertices are created in the triangulation: triangles are constructed
24 // unfortunately introduces T-vertices. Make it robust without T-vertices.
169 // The next and previous vertices around the polygon.
606 DebugPrintf("\nSorted Vertices:\n");
682 DebugPrintf("Zeroing vertices\n");
685 // Initialize vertices.
686 DebugPrintf("Initializing vertices\n");
824 DebugPrintf("Counting vertices: ");
830 FailureMessage("Vertices do not seem to be in a linked chain\n")
952 SkTDArray<Vertex> vertices; local
    [all...]
  /external/skia/legacy/src/utils/
SkProxyCanvas.cpp 137 const SkPoint vertices[], const SkPoint texs[],
141 fProxy->drawVertices(vmode, vertexCount, vertices, texs, colors,
  /external/skia/src/utils/
SkProxyCanvas.cpp 149 const SkPoint vertices[], const SkPoint texs[],
153 fProxy->drawVertices(vmode, vertexCount, vertices, texs, colors,
  /external/webkit/Source/WebCore/platform/graphics/android/rendering/
InstrumentedPlatformCanvas.h 270 const SkPoint vertices[], const SkPoint texs[],
276 SkCanvas::drawVertices(mode, vertexCount, vertices, texs,
  /frameworks/native/opengl/tests/filter/
filter.cpp 141 const GLfloat vertices[4][2] = {
176 glVertexPointer(2, GL_FLOAT, 0, vertices);
  /frameworks/native/opengl/tests/gl_jni/jni/
gl_code.cpp 151 const GLfloat vertices[] = { local
166 glVertexPointer(3, GL_FLOAT, 0, vertices);
  /frameworks/native/opengl/tests/tritex/
tritex.cpp 232 const GLfloat vertices[] = { local
253 glVertexPointer(3, GL_FLOAT, 0, vertices);
  /external/webkit/Source/WebCore/platform/graphics/gpu/
LoopBlinnMathUtils.cpp 606 bool isConvex(const FloatPoint* vertices, int nVertices)
617 second = vertices[i++];
618 dprev = second - vertices[0];
631 third = vertices[i++];
644 third = vertices[0]; /* Prepare for 'ConvexCheckTriple' */
  /cts/tests/tests/openglperf/src/android/openglperf/cts/
PlanetsRenderer.java 94 * x (numSlices x 1) much of vertices
398 FloatBuffer vertices = mSpheres[i].getVertices(); local
399 GLES20.glBufferData(GLES20.GL_ARRAY_BUFFER, vertices.limit()
400 * Sphere.FLOAT_SIZE, vertices, GLES20.GL_STATIC_DRAW);

Completed in 340 milliseconds

1 23 4 5