HomeSort by relevance Sort by last modified time
    Searched defs:verts (Results 26 - 50 of 75) sorted by null

12 3

  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_draw.c 395 unsigned verts = verts_per_prim(prim->mode); local
397 (brw->sol.svbi_0_max_index - brw->sol.svbi_0_starting_index) / verts;
399 brw->sol.svbi_0_starting_index += verts * primitives_written;
  /external/chromium_org/third_party/skia/src/utils/
SkNinePatch.cpp 74 static void fillRow(SkPoint verts[], SkPoint texs[],
79 verts->set(vx, vy); verts++;
89 verts->set(vx, vy); verts++;
92 verts->set(bounds.fRight, vy); verts++;
188 // number of celss * 2 (tris per cell) * 3 (verts per tri)
190 // allocate 2 times, one for verts, one for texs, plus indices
193 SkPoint* verts = (SkPoint*)storage.get() local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_draw.c 395 unsigned verts = verts_per_prim(prim->mode); local
397 (brw->sol.svbi_0_max_index - brw->sol.svbi_0_starting_index) / verts;
399 brw->sol.svbi_0_starting_index += verts * primitives_written;
  /external/skia/bench/
GameBench.cpp 128 SkPoint verts[4] = { // for drawVertices path variable
207 4, verts, uvs, NULL, NULL,
  /external/skia/src/utils/
SkNinePatch.cpp 74 static void fillRow(SkPoint verts[], SkPoint texs[],
79 verts->set(vx, vy); verts++;
89 verts->set(vx, vy); verts++;
92 verts->set(bounds.fRight, vy); verts++;
188 // number of celss * 2 (tris per cell) * 3 (verts per tri)
190 // allocate 2 times, one for verts, one for texs, plus indices
193 SkPoint* verts = (SkPoint*)storage.get() local
    [all...]
  /external/jmonkeyengine/engine/src/core-plugins/com/jme3/scene/plugins/
OBJLoader.java 67 protected final ArrayList<Vector3f> verts = new ArrayList<Vector3f>(); field in class:OBJLoader
163 verts.clear();
260 vx.v = verts.get(v - 1);
357 verts.add(readVector3());
  /external/chromium_org/native_client_sdk/src/examples/api/graphics_3d/
graphics_3d.cc 93 void BuildQuad(Vertex* verts, int axis[3], float depth, float color[3]);
222 void BuildQuad(Vertex* verts, int axis[3], float depth, float color[3]) {
227 verts[i].tu = (1.0 - X[i]) / 2.0f;
228 verts[i].tv = (Y[i] + 1.0f) / -2.0f * depth;
229 verts[i].loc[axis[0]] = X[i] * depth;
230 verts[i].loc[axis[1]] = Y[i] * depth;
231 verts[i].loc[axis[2]] = depth;
233 verts[i].color[j] = color[j] * (Y[i] + 1.0f) / 2.0f;
238 Vertex* verts = new Vertex[24]; local
252 BuildQuad(&verts[0 + i * 4], Faxis, 1.0f, Fcolor)
    [all...]
  /external/chromium_org/third_party/skia/src/gpu/
GrAAConvexPathRenderer.cpp 318 QuadVertex* verts,
331 // Check whether adding the verts for this segment to the current draw would cause index
340 verts += *v;
348 verts[*v + 0].fPos = sega.endPt();
349 verts[*v + 1].fPos = verts[*v + 0].fPos + sega.endNorm();
350 verts[*v + 2].fPos = verts[*v + 0].fPos + segb.fMid;
351 verts[*v + 3].fPos = verts[*v + 0].fPos + segb.fNorms[0]
622 QuadVertex *verts; local
    [all...]
GrAARectRenderer.cpp 399 intptr_t verts = reinterpret_cast<intptr_t>(geo.vertices()); local
403 GrPoint* fan0Pos = reinterpret_cast<GrPoint*>(verts);
404 GrPoint* fan1Pos = reinterpret_cast<GrPoint*>(verts + 4 * vsize);
458 verts += sizeof(GrPoint);
460 *reinterpret_cast<GrColor*>(verts + i * vsize) = 0;
482 verts += 4 * vsize;
484 *reinterpret_cast<GrColor*>(verts + i * vsize) = innerColor;
556 RectVertex* verts = reinterpret_cast<RectVertex*>(geo.vertices()); local
564 verts[i].fCenter = center;
565 verts[i].fDir = dir
606 AARectVertex* verts = reinterpret_cast<AARectVertex*>(geo.vertices()); local
719 intptr_t verts = reinterpret_cast<intptr_t>(geo.vertices()); local
    [all...]
GrOvalRenderer.cpp 357 CircleVertex* verts = reinterpret_cast<CircleVertex*>(geo.vertices()); local
385 // verts of the bounding box that is rendered and the outset ensures the box will cover all
397 verts[0].fPos = SkPoint::Make(bounds.fLeft, bounds.fTop);
398 verts[0].fOffset = SkPoint::Make(-outerRadius, -outerRadius);
399 verts[0].fOuterRadius = outerRadius;
400 verts[0].fInnerRadius = innerRadius;
402 verts[1].fPos = SkPoint::Make(bounds.fRight, bounds.fTop);
403 verts[1].fOffset = SkPoint::Make(outerRadius, -outerRadius);
404 verts[1].fOuterRadius = outerRadius;
405 verts[1].fInnerRadius = innerRadius
513 EllipseVertex* verts = reinterpret_cast<EllipseVertex*>(geo.vertices()); local
672 CircleVertex* verts = reinterpret_cast<CircleVertex*>(geo.vertices()); local
792 EllipseVertex* verts = reinterpret_cast<EllipseVertex*>(geo.vertices()); local
    [all...]
GrAAHairLinePathRenderer.cpp 275 // trade off of fill vs cpu time on verts
521 void set_uv_quad(const SkPoint qpts[3], BezierVertex verts[kVertsPerQuad]) {
524 DevToUV.apply<kVertsPerQuad, sizeof(BezierVertex), sizeof(GrPoint)>(verts);
528 const SkMatrix* toSrc, BezierVertex verts[kVertsPerQuad],
553 BezierVertex& a0 = verts[0];
554 BezierVertex& a1 = verts[1];
555 BezierVertex& b0 = verts[2];
556 BezierVertex& c0 = verts[3];
557 BezierVertex& c1 = verts[4];
599 toSrc->mapPointsWithStride(&verts[0].fPos, sizeof(BezierVertex), kVertsPerQuad)
1024 LineVertex* verts = reinterpret_cast<LineVertex*>(arg->vertices()); local
1073 BezierVertex* verts = reinterpret_cast<BezierVertex*>(arg->vertices()); local
1121 VertexType* verts = reinterpret_cast<VertexType*>(vertices); local
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/util/
BufferUtils.java 343 Vector3f[] verts = new Vector3f[buff.limit() / 3]; local
344 for (int x = 0; x < verts.length; x++) {
346 verts[x] = v;
348 return verts;
548 Vector2f[] verts = new Vector2f[buff.limit() / 2]; local
549 for (int x = 0; x < verts.length; x++) {
551 verts[x] = v;
553 return verts;
    [all...]
  /external/skia/src/gpu/
GrAAConvexPathRenderer.cpp 318 QuadVertex* verts,
331 // Check whether adding the verts for this segment to the current draw would cause index
340 verts += *v;
348 verts[*v + 0].fPos = sega.endPt();
349 verts[*v + 1].fPos = verts[*v + 0].fPos + sega.endNorm();
350 verts[*v + 2].fPos = verts[*v + 0].fPos + segb.fMid;
351 verts[*v + 3].fPos = verts[*v + 0].fPos + segb.fNorms[0]
622 QuadVertex *verts; local
    [all...]
GrAARectRenderer.cpp 399 intptr_t verts = reinterpret_cast<intptr_t>(geo.vertices()); local
403 GrPoint* fan0Pos = reinterpret_cast<GrPoint*>(verts);
404 GrPoint* fan1Pos = reinterpret_cast<GrPoint*>(verts + 4 * vsize);
458 verts += sizeof(GrPoint);
460 *reinterpret_cast<GrColor*>(verts + i * vsize) = 0;
482 verts += 4 * vsize;
484 *reinterpret_cast<GrColor*>(verts + i * vsize) = innerColor;
556 RectVertex* verts = reinterpret_cast<RectVertex*>(geo.vertices()); local
564 verts[i].fCenter = center;
565 verts[i].fDir = dir
606 AARectVertex* verts = reinterpret_cast<AARectVertex*>(geo.vertices()); local
719 intptr_t verts = reinterpret_cast<intptr_t>(geo.vertices()); local
    [all...]
GrOvalRenderer.cpp 357 CircleVertex* verts = reinterpret_cast<CircleVertex*>(geo.vertices()); local
385 // verts of the bounding box that is rendered and the outset ensures the box will cover all
397 verts[0].fPos = SkPoint::Make(bounds.fLeft, bounds.fTop);
398 verts[0].fOffset = SkPoint::Make(-outerRadius, -outerRadius);
399 verts[0].fOuterRadius = outerRadius;
400 verts[0].fInnerRadius = innerRadius;
402 verts[1].fPos = SkPoint::Make(bounds.fRight, bounds.fTop);
403 verts[1].fOffset = SkPoint::Make(outerRadius, -outerRadius);
404 verts[1].fOuterRadius = outerRadius;
405 verts[1].fInnerRadius = innerRadius
513 EllipseVertex* verts = reinterpret_cast<EllipseVertex*>(geo.vertices()); local
672 CircleVertex* verts = reinterpret_cast<CircleVertex*>(geo.vertices()); local
792 EllipseVertex* verts = reinterpret_cast<EllipseVertex*>(geo.vertices()); local
    [all...]
GrAAHairLinePathRenderer.cpp 275 // trade off of fill vs cpu time on verts
521 void set_uv_quad(const SkPoint qpts[3], BezierVertex verts[kVertsPerQuad]) {
524 DevToUV.apply<kVertsPerQuad, sizeof(BezierVertex), sizeof(GrPoint)>(verts);
528 const SkMatrix* toSrc, BezierVertex verts[kVertsPerQuad],
553 BezierVertex& a0 = verts[0];
554 BezierVertex& a1 = verts[1];
555 BezierVertex& b0 = verts[2];
556 BezierVertex& c0 = verts[3];
557 BezierVertex& c1 = verts[4];
599 toSrc->mapPointsWithStride(&verts[0].fPos, sizeof(BezierVertex), kVertsPerQuad)
1024 LineVertex* verts = reinterpret_cast<LineVertex*>(arg->vertices()); local
1073 BezierVertex* verts = reinterpret_cast<BezierVertex*>(arg->vertices()); local
1121 VertexType* verts = reinterpret_cast<VertexType*>(vertices); local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
draw_private.h 130 char *verts; member in struct:draw_context::__anon14432
334 struct vertex_header *verts; member in struct:draw_vertex_info
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/curves/
CurvesHelper.java 456 Vector3f[] verts = new Vector3f[vertices.length / 3]; local
457 for (int j = 0; j < verts.length; ++j) {
463 verts[j] = new Vector3f(temp[0], temp[1], temp[2]);
465 verts[j] = new Vector3f(temp[0], temp[2], -temp[1]);
469 vertexBuffers[geomIndex] = BufferUtils.createFloatBuffer(verts.length * curvePoints.length);
471 FloatBuffer buffer = BufferUtils.createFloatBuffer(verts);
483 int bevelCurveEdgesAmount = verts.length - 1;
487 int pointOffset = i / 3 * verts.length;
489 for (int index = 0; index < verts.length - 1; ++index) {
492 indexBuffer.put(verts.length + index + pointOffset);
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/animation/
SkeletonControl.java 339 int verts = bufLength / 3; local
343 for (int vert = verts - 1; vert >= 0; vert--) {
452 int verts = bufLength / 3; local
458 for (int vert = verts - 1; vert >= 0; vert--) {
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_private.h 130 char *verts; member in struct:draw_context::__anon24776
334 struct vertex_header *verts; member in struct:draw_vertex_info
  /frameworks/base/core/jni/android/graphics/
Canvas.cpp 590 storageSize += ptCount * sizeof(SkPoint); // storage for verts
596 SkPoint* verts; local
599 verts = (SkPoint*)(vertA.ptr() + vertIndex);
602 verts = texs + ptCount;
603 indices = (uint16_t*)(verts + ptCount);
608 verts[i].set(SkFloatToFixed(src[0]), SkFloatToFixed(src[1]));
682 canvas->drawVertices(SkCanvas::kTriangles_VertexMode, ptCount, verts,
702 SkPoint* verts; local
705 verts = (SkPoint*)(vertA.ptr() + vertIndex);
710 int count = ptCount; // for verts
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
CanvasTest.java 1397 final float[] verts = new float[2008]; local
1415 final float[] verts = new float[10]; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/
intel_context.h 288 GLubyte *verts; /* points to tnl->clipspace.vertex_buf */ member in struct:intel_context
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/
radeon_common_context.h 281 GLubyte *verts; member in struct:radeon_swtcl_info
  /external/chromium_org/third_party/skia/src/core/
SkPicturePlayback.cpp 982 const SkPoint* verts = (const SkPoint*)reader.skip( local
    [all...]

Completed in 1374 milliseconds

12 3