HomeSort by: relevance | last modified time | path
    Searched defs:tri (Results 1 - 25 of 34) sorted by relevancy

1 2

  /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/draw/
draw_pipe.h 72 void (*tri)( struct draw_stage *, member in struct:draw_stage
draw_pipe_wide_line.c 54 struct prim_header tri; local
128 tri.det = header->det; /* only the sign matters */
129 tri.v[0] = v0;
130 tri.v[1] = v2;
131 tri.v[2] = v3;
132 stage->next->tri( stage->next, &tri );
134 tri.v[0] = v0;
135 tri.v[1] = v3;
136 tri.v[2] = v1
    [all...]
draw_pipe_aapoint.c 477 struct prim_header tri; local
560 tri.v[0] = v[0];
561 tri.v[1] = v[1];
562 tri.v[2] = v[2];
563 stage->next->tri( stage->next, &tri );
565 tri.v[0] = v[0];
566 tri.v[1] = v[2];
567 tri.v[2] = v[3];
568 stage->next->tri( stage->next, &tri )
    [all...]
draw_pipe_wide_point.c 133 struct prim_header tri; local
183 tri.det = header->det; /* only the sign matters */
184 tri.v[0] = v0;
185 tri.v[1] = v2;
186 tri.v[2] = v3;
187 stage->next->tri( stage->next, &tri );
189 tri.v[0] = v0;
190 tri.v[1] = v3;
191 tri.v[2] = v1
    [all...]
draw_pipe_aaline.c 382 struct prim_header tri; local
442 * and calculate the tri endpoints by moving them half-width
478 tri.v[0] = v[2]; tri.v[1] = v[1]; tri.v[2] = v[0];
479 stage->next->tri(stage->next, &tri);
481 tri.v[0] = v[3]; tri.v[1] = v[1]; tri.v[2] = v[2]
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/draw/
draw_pipe.h 72 void (*tri)( struct draw_stage *, member in struct:draw_stage
draw_pipe_wide_line.c 54 struct prim_header tri; local
128 tri.det = header->det; /* only the sign matters */
129 tri.v[0] = v0;
130 tri.v[1] = v2;
131 tri.v[2] = v3;
132 stage->next->tri( stage->next, &tri );
134 tri.v[0] = v0;
135 tri.v[1] = v3;
136 tri.v[2] = v1
    [all...]
draw_pipe_aapoint.c 447 struct prim_header tri; local
530 tri.v[0] = v[0];
531 tri.v[1] = v[1];
532 tri.v[2] = v[2];
533 stage->next->tri( stage->next, &tri );
535 tri.v[0] = v[0];
536 tri.v[1] = v[2];
537 tri.v[2] = v[3];
538 stage->next->tri( stage->next, &tri )
    [all...]
draw_pipe_wide_point.c 133 struct prim_header tri; local
183 tri.det = header->det; /* only the sign matters */
184 tri.v[0] = v0;
185 tri.v[1] = v2;
186 tri.v[2] = v3;
187 stage->next->tri( stage->next, &tri );
189 tri.v[0] = v0;
190 tri.v[1] = v3;
191 tri.v[2] = v1
    [all...]
draw_pipe_aaline.c 360 struct prim_header tri; local
420 * and calculate the tri endpoints by moving them half-width
456 tri.v[0] = v[2]; tri.v[1] = v[1]; tri.v[2] = v[0];
457 stage->next->tri(stage->next, &tri);
459 tri.v[0] = v[3]; tri.v[1] = v[1]; tri.v[2] = v[2]
    [all...]
  /xsrc/external/mit/mesa-demos/dist/src/redbook/
tess.c 127 GLdouble tri[3][3] = {{75.0, 75.0, 0.0}, local
157 gluTessVertex(tobj, tri[0], tri[0]);
158 gluTessVertex(tobj, tri[1], tri[1]);
159 gluTessVertex(tobj, tri[2], tri[2]);
tesswind.c 83 static GLdouble tri[3][3] = local
145 gluTessVertex(tobj, tri[i], tri[i]);
  /xsrc/external/mit/xf86-video-intel/dist/test/
render-triangle.c 94 XTriangle tri; local
116 step_to_point(step, out.width, out.height, &tri.p1);
119 &tri.p2);
122 &tri.p3);
125 "tri=((%d, %d), (%d, %d), (%d, %d))\n",
126 tri.p1.x >> 16, tri.p1.y >> 16,
127 tri.p2.x >> 16, tri.p2.y >> 16,
128 tri.p3.x >> 16, tri.p3.y >> 16)
    [all...]
  /xsrc/external/mit/xorg-server.old/dist/render/
mitri.c 141 xTriangle *tris, *tri; local
150 for (tri = tris; npoint >= 3; npoint--, points++, tri++)
152 tri->p1 = points[0];
153 tri->p2 = points[1];
154 tri->p3 = points[2];
172 xTriangle *tris, *tri; local
183 for (tri = tris; npoint >= 3; npoint--, points++, tri++)
185 tri->p1 = *first
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/indices/
u_indices_gen.py 125 def tri( intype, outtype, ptr, v0, v1, v2 ): function
155 tri( intype, outtype, ptr, v0, v1, v2 )
158 tri( intype, outtype, ptr, v1, v2, v0 )
160 tri( intype, outtype, ptr, v2, v0, v1 )
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/llvmpipe/
lp_rast_debug.c 170 type = "tri";
314 const struct lp_rast_triangle *tri = arg.triangle.tri; local
316 const struct lp_rast_plane *tri_plane = GET_PLANES(tri);
323 if (tri->inputs.disable) {
lp_rast_tri_tmp.h 44 const struct lp_rast_triangle *tri,
88 lp_rast_shade_quads_mask_sample(task, &tri->inputs, x, y, mask);
97 const struct lp_rast_triangle *tri,
173 TAG(do_block_4)(task, tri, plane, px, py, cx);
188 block_full_4(task, tri, px, py);
201 const struct lp_rast_triangle *tri = arg.triangle.tri; local
203 const struct lp_rast_plane *tri_plane = GET_PLANES(tri);
210 if (tri->inputs.disable) {
254 * (in which case the tri will not get binned), or trivial accept fo
354 const struct lp_rast_triangle *tri = arg.triangle.tri; local
437 const struct lp_rast_triangle *tri = arg.triangle.tri; local
    [all...]
lp_rast_tri.c 43 const struct lp_rast_triangle *tri,
46 lp_rast_shade_quads_all(task, &tri->inputs, x, y);
55 const struct lp_rast_triangle *tri,
63 block_full_4(task, tri, x + ix, y + iy);
114 arg2.triangle.tri = arg.triangle.tri;
131 arg2.triangle.tri = arg.triangle.tri;
141 arg2.triangle.tri = arg.triangle.tri;
296 const struct lp_rast_triangle *tri = arg.triangle.tri; local
409 const struct lp_rast_triangle *tri = arg.triangle.tri; local
580 const struct lp_rast_triangle *tri = arg.triangle.tri; local
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/indices/
u_indices_gen.py 127 def tri( intype, outtype, ptr, v0, v1, v2 ): function
157 tri( intype, outtype, ptr, v0, v1, v2 )
160 tri( intype, outtype, ptr, v1, v2, v0 )
162 tri( intype, outtype, ptr, v2, v0, v1 )
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/llvmpipe/
lp_rast_debug.c 192 const struct lp_rast_triangle *tri = arg.triangle.tri; local
194 const struct lp_rast_plane *tri_plane = GET_PLANES(tri);
201 if (tri->inputs.disable) {
lp_rast_tri_tmp.h 44 const struct lp_rast_triangle *tri,
67 lp_rast_shade_quads_mask(task, &tri->inputs, x, y, mask);
76 const struct lp_rast_triangle *tri,
152 TAG(do_block_4)(task, tri, plane, px, py, cx);
167 block_full_4(task, tri, px, py);
180 const struct lp_rast_triangle *tri = arg.triangle.tri; local
182 const struct lp_rast_plane *tri_plane = GET_PLANES(tri);
189 if (tri->inputs.disable) {
233 * (in which case the tri will not get binned), or trivial accept fo
333 const struct lp_rast_triangle *tri = arg.triangle.tri; local
406 const struct lp_rast_triangle *tri = arg.triangle.tri; local
    [all...]
lp_rast.h 155 #define GET_PLANES(tri) ((struct lp_rast_plane *)((char *)(&(tri)->inputs + 1) + 3 * (tri)->inputs.stride))
176 const struct lp_rast_triangle *tri; member in struct:lp_rast_cmd_arg::__anon3796
206 arg.triangle.tri = triangle;
222 arg.triangle.tri = triangle;
  /xsrc/external/mit/xorg-server/dist/render/
mipict.c 507 xTriangle *tris, *tri; local
515 for (tri = tris; npoints >= 3; npoints--, points++, tri++) {
516 tri->p1 = points[0];
517 tri->p2 = points[1];
518 tri->p3 = points[2];
531 xTriangle *tris, *tri; local
541 for (tri = tris; npoints >= 3; npoints--, points++, tri++) {
542 tri->p1 = *first
    [all...]
  /xsrc/external/mit/xf86-video-intel/dist/src/sna/
sna_trapezoids.c 867 int n, xTriangle *tri)
883 dst_x = pixman_fixed_to_int(tri[0].p1.x);
884 dst_y = pixman_fixed_to_int(tri[0].p1.y);
886 miTriangleBounds(n, tri, &bounds);
927 n, (pixman_triangle_t *)tri);
950 for (; n--; tri++)
953 xSrc, ySrc, 1, tri);
963 int n, xTriangle *tri)
969 n, tri))
974 n, tri))
1042 xTriangle tri; local
1075 xTriangle tri; local
1178 xTriangle tri; local
1211 xTriangle tri; local
    [all...]
  /xsrc/external/mit/xf86-video-intel-2014/dist/src/sna/
sna_trapezoids.c 867 int n, xTriangle *tri)
883 dst_x = pixman_fixed_to_int(tri[0].p1.x);
884 dst_y = pixman_fixed_to_int(tri[0].p1.y);
886 miTriangleBounds(n, tri, &bounds);
927 n, (pixman_triangle_t *)tri);
950 for (; n--; tri++)
953 xSrc, ySrc, 1, tri);
963 int n, xTriangle *tri)
969 n, tri))
974 n, tri))
1042 xTriangle tri; local
1075 xTriangle tri; local
1178 xTriangle tri; local
1211 xTriangle tri; local
    [all...]

Completed in 27 milliseconds

1 2