HomeSort by relevance Sort by last modified time
    Searched refs:vert (Results 1 - 25 of 93) sorted by null

1 2 3 4

  /external/mesa3d/src/gallium/auxiliary/draw/
draw_vs_ppc.c 109 uint vert; local
110 for (vert = 0; vert < max_vertices; vert++) {
114 vert, attr, vIn[0], vIn[1], vIn[2], vIn[3]);
116 inputs_soa[attr][0][vert] = vIn[attr * 4 + 0];
117 inputs_soa[attr][1][vert] = vIn[attr * 4 + 1];
118 inputs_soa[attr][2][vert] = vIn[attr * 4 + 2];
119 inputs_soa[attr][3][vert] = vIn[attr * 4 + 3];
134 uint vert; local
    [all...]
draw_pipe.h 62 struct vertex_header **tmp; /**< temp vert storage, such as for clipping */
109 * \param vert the vertex to copy (source)
115 const struct vertex_header *vert,
121 memcpy(tmp, vert, vsize);
draw_pipe_clip.c 247 debug_printf(" Vert %d: Attr %d: %f %f %f %f\n", j, k,
276 struct vertex_header *vert,
281 if (vert->have_clipdist && plane_idx >= 6) {
286 dp = vert->data[draw_current_shader_clipdistance_output(clipper->stage.draw, cdi)][vidx];
289 dp = dot4(vert->clip, plane);
348 struct vertex_header *vert = inlist[i]; local
351 float dp = getclipdist(clipper, vert, plane_idx);
382 interp( clipper, new_vert, t, vert, vert_prev );
384 /* Whether or not to set edge flag for the new vert depends
403 interp( clipper, new_vert, t, vert_prev, vert );
    [all...]
  /frameworks/base/core/tests/coretests/src/android/view/
CreateViewTest.java 46 LinearLayout vert = new LinearLayout(mContext); local
47 vert.addView(new CreateViewTest.ViewOne(mContext),
53 LinearLayout vert = new LinearLayout(mContext); local
56 vert.addView(one, new LinearLayout.LayoutParams(MATCH_PARENT, MATCH_PARENT, 0));
59 vert.addView(two, new LinearLayout.LayoutParams(MATCH_PARENT, MATCH_PARENT, 0));
62 vert.addView(three, new LinearLayout.LayoutParams(MATCH_PARENT, MATCH_PARENT, 0));
65 vert.addView(four, new LinearLayout.LayoutParams(MATCH_PARENT, MATCH_PARENT, 0));
68 vert.addView(five, new LinearLayout.LayoutParams(MATCH_PARENT, MATCH_PARENT, 0));
71 vert.addView(six, new LinearLayout.LayoutParams(MATCH_PARENT, MATCH_PARENT, 0));
85 LinearLayout vert = new LinearLayout(mContext) local
91 LinearLayout vert = new LinearLayout(mContext); local
    [all...]
  /frameworks/base/core/jni/android/opengl/
poly.h 40 Poly_vert vert[POLY_NMAX]; /* vertices */ member in struct:android::__anon38789
poly_clip.cpp 39 #define COORD(vert, i) ((float *)(vert))[i]
69 /* start with u=vert[n-1], v=vert[0] */
70 u = &p->vert[p->n-1];
72 for (v= &p->vert[0], i=p->n; i>0; i--, u=v, tu=tv, v++) {
81 wp = (float *)&q->vert[q->n].sx;
88 q->vert[q->n++] = *v;
114 for (v=p1->vert, i=p1->n; i>0; i--, v++) {
  /external/mesa3d/src/mesa/swrast/
s_points.c 55 get_size(const struct gl_context *ctx, const SWvertex *vert, GLboolean smoothed)
61 size = vert->pointSize;
83 sprite_point(struct gl_context *ctx, const SWvertex *vert)
92 CULL_INVALID(vert);
96 span.z = FloatToFixed(vert->attrib[FRAG_ATTRIB_WPOS][2] + 0.5F);
98 span.z = (GLuint) (vert->attrib[FRAG_ATTRIB_WPOS][2] + 0.5F);
101 size = get_size(ctx, vert, GL_FALSE);
109 span.red = ChanToFixed(vert->color[0]);
110 span.green = ChanToFixed(vert->color[1]);
111 span.blue = ChanToFixed(vert->color[2])
    [all...]
  /external/mesa3d/src/gallium/state_trackers/vega/
polygon.c 73 float *vert;
76 vert = ptr_to_vertex(poly->data, i);
77 debug_printf("%f, %f, ", vert[0], vert[1]);
145 float *vert; local
153 vert = ptr_to_vertex(p->data, p->num_verts);
154 vert[0] = x;
155 vert[1] = y;
163 float *vert; local
170 vert = ptr_to_vertex(p->data, idx)
179 float *vert; local
196 float *vert = ptr_to_vertex(p->data, 0); local
    [all...]
  /external/vulkan-validation-layers/demos/smoke/android/
build-and-install 28 ( cd ..; python3 glsl-to-spirv Smoke.vert Smoke.vert.h ${glslang} )
29 ( cd ..; python3 glsl-to-spirv Smoke.push_constant.vert Smoke.push_constant.vert.h ${glslang} )
  /frameworks/rs/tests/java_api/VrDemo/src/com/example/android/rs/vr/engine/
rasterize.rs 23 float vert[3 * 8];
85 f1.x = vert[p1];
86 f1.y = vert[p1 + 1];
87 f1.z = vert[p1 + 2];
88 f2.x = vert[p2];
89 f2.y = vert[p2 + 1];
90 f2.z = vert[p2 + 2];
91 f3.x = vert[p3];
92 f3.y = vert[p3 + 1];
93 f3.z = vert[p3 + 2]
    [all...]
  /external/deqp/modules/gles3/stress/
es3sLongRunningShaderTests.cpp 126 std::ostringstream vert, frag; local
128 vert << "#version 300 es\n"
135 vert << "in highp int a_iterCount;\n";
138 vert << "flat out highp int v_iterCount;\n";
143 (isVertCase ? vert : frag) << "uniform highp int u_iterCount;\n";
147 vert << "out mediump vec4 v_color;\n";
153 vert << "\nvoid main (void)\n{\n"
158 vert << " v_iterCount = a_iterCount;\n";
167 std::ostringstream& op = isVertCase ? vert : frag;
197 vert << " v_color = color;\n"
    [all...]
  /external/skia/src/sfnt/
SkOTTable_EBSC.h 31 SkOTTableEmbeddedBitmapLocation::SbitLineMetrics vert; member in struct:SkOTTableEmbeddedBitmapScaling::BitmapScaleTable
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_sf_emit.c 62 struct brw_reg vert,
70 return brw_vec4_grf(vert.nr + off, sub * 4);
83 struct brw_reg vert )
92 get_vert_result(c, vert, VERT_RESULT_COL0+i),
93 get_vert_result(c, vert, VERT_RESULT_BFC0+i));
126 case 3: copy_bfc(c, c->vert[2]);
127 case 2: copy_bfc(c, c->vert[1]);
128 case 1: copy_bfc(c, c->vert[0]);
189 copy_colors(c, c->vert[1], c->vert[0])
    [all...]
brw_sf.h 79 struct brw_reg vert[3]; member in struct:brw_sf_compile
  /hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/codecs/mp2/parser/
viddec_mpeg2_frame_attr.c 29 attr->mpeg2.frame_center_offset[index].vert);
45 attrs->mpeg2.frame_center_offset[index].vert = 0;
106 attrs->mpeg2.frame_center_offset[index].vert = parser->info.pic_disp_ext.frame_center_vertical_offset[index];
  /external/skia/src/gpu/ops/
GrAAHairLinePathRenderer.cpp 541 BezierVertex** vert) {
542 bloat_quad(p, toDevice, toSrc, *vert);
543 set_conic_coeffs(p, *vert, weight);
544 *vert += kQuadNumVertices;
551 BezierVertex** vert) {
556 add_quads(newP + 0, subdiv-1, toDevice, toSrc, vert);
557 add_quads(newP + 2, subdiv-1, toDevice, toSrc, vert);
559 bloat_quad(p, toDevice, toSrc, *vert);
560 set_uv_quad(p, *vert);
561 *vert += kQuadNumVertices
    [all...]
GrDefaultPathRenderer.cpp 79 static inline void add_quad(SkPoint** vert, const SkPoint* base, const SkPoint pts[],
83 uint16_t firstQPtIdx = (uint16_t)(*vert - base) - 1 + offset;
87 srcSpaceTolSqd, vert,
313 SkPoint* vert = base; local
328 uint16_t currIdx = (uint16_t) (vert - base) + vertexOffsetU16;
332 *vert = pts[0];
333 vert++;
337 uint16_t prevIdx = (uint16_t)(vert - base) - 1 + vertexOffsetU16;
341 *(vert++) = pts[1];
350 add_quad(&vert, base, quadPts + i*2, srcSpaceTolSqd, srcSpaceTol
    [all...]
  /external/mesa3d/src/gallium/auxiliary/indices/
u_indices_gen.py 106 def vert( intype, outtype, v0 ): function
113 print ' (' + ptr + ')[0] = ' + vert( intype, outtype, v0 ) + ';'
116 print ' (' + ptr + ')[0] = ' + vert( intype, outtype, v0 ) + ';'
117 print ' (' + ptr + ')[1] = ' + vert( intype, outtype, v1 ) + ';'
120 print ' (' + ptr + ')[0] = ' + vert( intype, outtype, v0 ) + ';'
121 print ' (' + ptr + ')[1] = ' + vert( intype, outtype, v1 ) + ';'
122 print ' (' + ptr + ')[2] = ' + vert( intype, outtype, v2 ) + ';'
u_unfilled_gen.py 95 def vert( intype, outtype, v0 ): function
102 print ' (' + ptr + ')[0] = ' + vert( intype, outtype, v0 ) + ';'
103 print ' (' + ptr + ')[1] = ' + vert( intype, outtype, v1 ) + ';'
  /external/harfbuzz_ng/util/
view-cairo.cc 36 int vert = vertical ? 1 : 0; local
93 cairo_translate (cr, +vert * leading, -horiz * leading);
98 cairo_translate (cr, -vert * leading, +horiz * leading);
  /external/libvpx/libvpx/vpx_dsp/x86/
vpx_asm_stubs.c 63 FUN_CONV_1D(vert, y_step_q4, filter_y, v, src - src_stride * 3, , sse2);
144 HIGH_FUN_CONV_1D(vert, y_step_q4, filter_y, v, src - src_stride * 3, , sse2);
  /external/mesa3d/src/mesa/drivers/dri/r200/
r200_swtcl.c 374 #define VERT(x) (radeonVertex *)(r200verts + ((x) * vertsize * sizeof(int)))
532 r200_point( rmesa, VERT(start) )
534 r200_line( rmesa, VERT(v0), VERT(v1) )
536 r200_triangle( rmesa, VERT(v0), VERT(v1), VERT(v2) )
538 r200_quad( rmesa, VERT(v0), VERT(v1), VERT(v2), VERT(v3)
753 radeonVertex vert; local
    [all...]
  /hardware/intel/common/libmix/mix_vbp/viddec_fw/include/
viddec_fw_frame_attr.h 97 int vert; member in struct:viddec_mpeg2_frame_center_offset
  /hardware/libhardware/tests/hwc/
util.c 76 GLuint vert, frag, prog; local
79 if (!(vert = load_shader(GL_VERTEX_SHADER, vert_src)))
86 glAttachShader(prog, vert);
108 glDeleteShader(vert);
  /external/mesa3d/src/gallium/auxiliary/translate/
translate_generic.c 611 void *vert )
618 uint8_t *dst = (uint8_t *)vert + tg->attrib[attr].output_offset;
681 char *vert = output_buffer; local
685 generic_run_one(tg, *elts++, instance_id, vert);
686 vert += tg->translate.key.output_stride;
697 char *vert = output_buffer; local
701 generic_run_one(tg, *elts++, instance_id, vert);
702 vert += tg->translate.key.output_stride;
713 char *vert = output_buffer; local
717 generic_run_one(tg, *elts++, instance_id, vert);
729 char *vert = output_buffer; local
    [all...]

Completed in 800 milliseconds

1 2 3 4