/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/ |
radeon_maos.c | 3 /* If using new packets, can choose either verts or arrays. 4 * Otherwise, must use verts.
|
/external/mesa3d/src/mesa/drivers/dri/radeon/ |
radeon_maos.c | 3 /* If using new packets, can choose either verts or arrays. 4 * Otherwise, must use verts.
|
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/r200/ |
r200_maos.c | 3 /* Currently, can only use arrays, verts are not implemented, though 4 * verts are suspected to be faster. 5 * To get an idea how the verts path works, look at the radeon implementation.
|
r200_blit.c | 407 float verts[12]; local 415 verts[0] = dst_x_offset; 416 verts[1] = dst_y_offset + reg_height; 417 verts[2] = texcoords[0]; 418 verts[3] = texcoords[3]; 420 verts[4] = dst_x_offset + reg_width; 421 verts[5] = dst_y_offset + reg_height; 422 verts[6] = texcoords[1]; 423 verts[7] = texcoords[3]; 425 verts[8] = dst_x_offset + reg_width [all...] |
/external/mesa3d/src/mesa/drivers/dri/r200/ |
r200_maos.c | 3 /* Currently, can only use arrays, verts are not implemented, though 4 * verts are suspected to be faster. 5 * To get an idea how the verts path works, look at the radeon implementation.
|
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/ |
draw_pt_decompose.h | 2 char *verts = (char *) vertices; \
|
draw_pipe.c | 178 verts + stride * (i0), \ 179 verts + stride * (i1), \ 180 verts + stride * (i2) ); \ 187 verts + stride * (i0), \ 188 verts + stride * (i1) ); \ 193 do_point( draw, verts + stride * (i0) ); \ 230 draw->pipeline.verts = (char *)vert_info->verts; 262 vert_info->verts, 268 draw->pipeline.verts = NULL 321 char *verts = ((char*)vert_info->verts) + local [all...] |
draw_pipe_util.c | 61 /* This is only used for temporary verts. 125 if (draw->pipeline.verts) 128 char *verts = draw->pipeline.verts; local 132 ((struct vertex_header *)verts)->vertex_id = UNDEFINED_VERTEX_ID; 133 verts += stride;
|
/external/mesa3d/src/gallium/auxiliary/draw/ |
draw_pt_decompose.h | 2 char *verts = (char *) vertices; \
|
draw_pipe.c | 178 verts + stride * (i0), \ 179 verts + stride * (i1), \ 180 verts + stride * (i2) ); \ 187 verts + stride * (i0), \ 188 verts + stride * (i1) ); \ 193 do_point( draw, verts + stride * (i0) ); \ 230 draw->pipeline.verts = (char *)vert_info->verts; 262 vert_info->verts, 268 draw->pipeline.verts = NULL 321 char *verts = ((char*)vert_info->verts) + local [all...] |
draw_pipe_util.c | 61 /* This is only used for temporary verts. 125 if (draw->pipeline.verts) 128 char *verts = draw->pipeline.verts; local 132 ((struct vertex_header *)verts)->vertex_id = UNDEFINED_VERTEX_ID; 133 verts += stride;
|
/external/chromium_org/third_party/skia/src/gpu/ |
GrAAConvexPathRenderer.cpp | 350 QuadVertex* verts, 363 // Check whether adding the verts for this segment to the current draw would cause index 372 verts += *v; 380 verts[*v + 0].fPos = sega.endPt(); 381 verts[*v + 1].fPos = verts[*v + 0].fPos + sega.endNorm(); 382 verts[*v + 2].fPos = verts[*v + 0].fPos + segb.fMid; 383 verts[*v + 3].fPos = verts[*v + 0].fPos + segb.fNorms[0] 653 QuadVertex *verts; local [all...] |
GrOvalRenderer.cpp | 523 CircleVertex* verts = reinterpret_cast<CircleVertex*>(geo.vertices()); local 550 // verts of the bounding box that is rendered and the outset ensures the box will cover all 562 verts[0].fPos = SkPoint::Make(bounds.fLeft, bounds.fTop); 563 verts[0].fOffset = SkPoint::Make(-outerRadius, -outerRadius); 564 verts[0].fOuterRadius = outerRadius; 565 verts[0].fInnerRadius = innerRadius; 567 verts[1].fPos = SkPoint::Make(bounds.fRight, bounds.fTop); 568 verts[1].fOffset = SkPoint::Make(outerRadius, -outerRadius); 569 verts[1].fOuterRadius = outerRadius; 570 verts[1].fInnerRadius = innerRadius 680 EllipseVertex* verts = reinterpret_cast<EllipseVertex*>(geo.vertices()); local 799 DIEllipseVertex* verts = reinterpret_cast<DIEllipseVertex*>(geo.vertices()); local 958 CircleVertex* verts = reinterpret_cast<CircleVertex*>(geo.vertices()); local 1080 EllipseVertex* verts = reinterpret_cast<EllipseVertex*>(geo.vertices()); local [all...] |
GrAARectRenderer.cpp | 475 intptr_t verts = reinterpret_cast<intptr_t>(geo.vertices()); local 479 GrPoint* fan0Pos = reinterpret_cast<GrPoint*>(verts); 480 GrPoint* fan1Pos = reinterpret_cast<GrPoint*>(verts + 4 * vsize); 534 verts += sizeof(GrPoint); 536 *reinterpret_cast<GrColor*>(verts + i * vsize) = 0; 558 verts += 4 * vsize; 560 *reinterpret_cast<GrColor*>(verts + i * vsize) = innerColor; 632 RectVertex* verts = reinterpret_cast<RectVertex*>(geo.vertices()); local 640 verts[i].fCenter = center; 641 verts[i].fDir = dir 682 AARectVertex* verts = reinterpret_cast<AARectVertex*>(geo.vertices()); local 819 intptr_t verts = reinterpret_cast<intptr_t>(geo.vertices()); local [all...] |
/external/skia/src/gpu/ |
GrAAConvexPathRenderer.cpp | 350 QuadVertex* verts, 363 // Check whether adding the verts for this segment to the current draw would cause index 372 verts += *v; 380 verts[*v + 0].fPos = sega.endPt(); 381 verts[*v + 1].fPos = verts[*v + 0].fPos + sega.endNorm(); 382 verts[*v + 2].fPos = verts[*v + 0].fPos + segb.fMid; 383 verts[*v + 3].fPos = verts[*v + 0].fPos + segb.fNorms[0] 653 QuadVertex *verts; local [all...] |
GrOvalRenderer.cpp | 523 CircleVertex* verts = reinterpret_cast<CircleVertex*>(geo.vertices()); local 550 // verts of the bounding box that is rendered and the outset ensures the box will cover all 562 verts[0].fPos = SkPoint::Make(bounds.fLeft, bounds.fTop); 563 verts[0].fOffset = SkPoint::Make(-outerRadius, -outerRadius); 564 verts[0].fOuterRadius = outerRadius; 565 verts[0].fInnerRadius = innerRadius; 567 verts[1].fPos = SkPoint::Make(bounds.fRight, bounds.fTop); 568 verts[1].fOffset = SkPoint::Make(outerRadius, -outerRadius); 569 verts[1].fOuterRadius = outerRadius; 570 verts[1].fInnerRadius = innerRadius 680 EllipseVertex* verts = reinterpret_cast<EllipseVertex*>(geo.vertices()); local 799 DIEllipseVertex* verts = reinterpret_cast<DIEllipseVertex*>(geo.vertices()); local 958 CircleVertex* verts = reinterpret_cast<CircleVertex*>(geo.vertices()); local 1080 EllipseVertex* verts = reinterpret_cast<EllipseVertex*>(geo.vertices()); local [all...] |
GrAARectRenderer.cpp | 475 intptr_t verts = reinterpret_cast<intptr_t>(geo.vertices()); local 479 GrPoint* fan0Pos = reinterpret_cast<GrPoint*>(verts); 480 GrPoint* fan1Pos = reinterpret_cast<GrPoint*>(verts + 4 * vsize); 534 verts += sizeof(GrPoint); 536 *reinterpret_cast<GrColor*>(verts + i * vsize) = 0; 558 verts += 4 * vsize; 560 *reinterpret_cast<GrColor*>(verts + i * vsize) = innerColor; 632 RectVertex* verts = reinterpret_cast<RectVertex*>(geo.vertices()); local 640 verts[i].fCenter = center; 641 verts[i].fDir = dir 682 AARectVertex* verts = reinterpret_cast<AARectVertex*>(geo.vertices()); local 819 intptr_t verts = reinterpret_cast<intptr_t>(geo.vertices()); local [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/common/ |
meta.c | 1504 struct vertex verts[4]; local 1591 struct vertex verts[4]; local 1761 struct vertex verts[4]; local 1999 } verts[4]; local 2110 struct vertex verts[4]; local 2364 struct vertex verts[4]; local 2633 struct vertex verts[4]; local 3240 struct vertex verts[4]; local 3613 struct vertex verts[4]; local 3852 struct vertex verts[4]; local [all...] |
/external/mesa3d/src/mesa/drivers/common/ |
meta.c | 1504 struct vertex verts[4]; local 1591 struct vertex verts[4]; local 1761 struct vertex verts[4]; local 1999 } verts[4]; local 2110 struct vertex verts[4]; local 2364 struct vertex verts[4]; local 2633 struct vertex verts[4]; local 3240 struct vertex verts[4]; local 3613 struct vertex verts[4]; local 3852 struct vertex verts[4]; local [all...] |
/cts/tests/tests/graphics/src/android/graphics/cts/ |
Canvas_VertexModeTest.java | 41 float[] verts = new float[10]; local 51 verts, 64 verts, 77 verts,
|
/external/chromium_org/third_party/mesa/src/src/mesa/swrast_setup/ |
ss_triangle.c | 118 SWvertex *verts = swsetup->verts; local 119 SWvertex *v0 = &verts[e0]; 120 SWvertex *v1 = &verts[e1]; 121 SWvertex *v2 = &verts[e2]; 216 SWvertex *verts = SWSETUP_CONTEXT(ctx)->verts; local 222 _swrast_Point( ctx, &verts[VB->Elts[i]] ); 227 _swrast_Point( ctx, &verts[i] ); 233 SWvertex *verts = SWSETUP_CONTEXT(ctx)->verts local [all...] |
/external/mesa3d/src/mesa/swrast_setup/ |
ss_triangle.c | 118 SWvertex *verts = swsetup->verts; local 119 SWvertex *v0 = &verts[e0]; 120 SWvertex *v1 = &verts[e1]; 121 SWvertex *v2 = &verts[e2]; 216 SWvertex *verts = SWSETUP_CONTEXT(ctx)->verts; local 222 _swrast_Point( ctx, &verts[VB->Elts[i]] ); 227 _swrast_Point( ctx, &verts[i] ); 233 SWvertex *verts = SWSETUP_CONTEXT(ctx)->verts local [all...] |
/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/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/skia/gm/ |
beziereffects.cpp | 142 Vertex verts[4]; variable 143 verts[0].fPosition.setRectFan(bounds.fLeft, bounds.fTop, 147 verts[v].fKLM[0] = eval_line(verts[v].fPosition, klmEqs + 0, klmSigns[c]); 148 verts[v].fKLM[1] = eval_line(verts[v].fPosition, klmEqs + 3, klmSigns[c]); 149 verts[v].fKLM[2] = eval_line(verts[v].fPosition, klmEqs + 6, 1.f); 169 tt.target()->setVertexSourceToArray(verts, 4); 291 Vertex verts[4] variable 471 Vertex verts[4]; variable [all...] |