Searched defs:vert (Results 1 - 25 of 61) sorted by relevance

123

/external/chromium_org/third_party/skia/src/sfnt/
H A DSkOTTable_EBSC.h31 SkOTTableEmbeddedBitmapLocation::SbitLineMetrics vert; member in struct:SkOTTableEmbeddedBitmapScaling::BitmapScaleTable
/external/skia/src/sfnt/
H A DSkOTTable_EBSC.h31 SkOTTableEmbeddedBitmapLocation::SbitLineMetrics vert; member in struct:SkOTTableEmbeddedBitmapScaling::BitmapScaleTable
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
H A Ddraw_pipe.h62 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);
114 dup_vert( struct draw_stage *stage, const struct vertex_header *vert, unsigned idx ) argument
H A Ddraw_vs_ppc.c109 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...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/indices/
H A Du_unfilled_gen.py95 def vert( intype, outtype, v0 ): function
102 print ' (' + ptr + ')[0] = ' + vert( intype, outtype, v0 ) + ';'
103 print ' (' + ptr + ')[1] = ' + vert( intype, outtype, v1 ) + ';'
H A Du_indices_gen.py106 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 ) + ';'
/external/mesa3d/src/gallium/auxiliary/draw/
H A Ddraw_pipe.h62 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);
114 dup_vert( struct draw_stage *stage, const struct vertex_header *vert, unsigned idx ) argument
H A Ddraw_vs_ppc.c109 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...]
/external/mesa3d/src/gallium/auxiliary/indices/
H A Du_unfilled_gen.py95 def vert( intype, outtype, v0 ): function
102 print ' (' + ptr + ')[0] = ' + vert( intype, outtype, v0 ) + ';'
103 print ' (' + ptr + ')[1] = ' + vert( intype, outtype, v1 ) + ';'
H A Du_indices_gen.py106 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 ) + ';'
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dbrw_clip_util.c209 struct brw_indirect vert,
222 brw_copy_from_indirect(p, brw_message_reg(1), vert, c->nr_regs);
208 brw_clip_emit_vue(struct brw_clip_compile *c, struct brw_indirect vert, bool allocate, bool eot, GLuint header) argument
H A Dbrw_gs_emit.c156 * c->reg.header for the message header, and the registers starting at \c vert
167 struct brw_reg vert,
175 brw_copy8(p, brw_message_reg(1), vert, c->nr_regs);
166 brw_gs_emit_vue(struct brw_gs_compile *c, struct brw_reg vert, bool last) argument
H A Dbrw_sf.h79 struct brw_reg vert[3]; member in struct:brw_sf_compile
H A Dbrw_sf_emit.c62 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[
61 get_vert_result(struct brw_sf_compile *c, struct brw_reg vert, GLuint vert_result) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
H A Dst_cb_rasterpos.c115 const struct vertex_header *vert,
122 src = vert->data[k];
114 update_attrib(struct gl_context *ctx, const GLuint *outputMapping, const struct vertex_header *vert, GLfloat *dest, GLuint result, GLuint defaultAttrib) argument
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_clip_util.c209 struct brw_indirect vert,
222 brw_copy_from_indirect(p, brw_message_reg(1), vert, c->nr_regs);
208 brw_clip_emit_vue(struct brw_clip_compile *c, struct brw_indirect vert, bool allocate, bool eot, GLuint header) argument
H A Dbrw_gs_emit.c156 * c->reg.header for the message header, and the registers starting at \c vert
167 struct brw_reg vert,
175 brw_copy8(p, brw_message_reg(1), vert, c->nr_regs);
166 brw_gs_emit_vue(struct brw_gs_compile *c, struct brw_reg vert, bool last) argument
H A Dbrw_sf.h79 struct brw_reg vert[3]; member in struct:brw_sf_compile
/external/mesa3d/src/mesa/state_tracker/
H A Dst_cb_rasterpos.c115 const struct vertex_header *vert,
122 src = vert->data[k];
114 update_attrib(struct gl_context *ctx, const GLuint *outputMapping, const struct vertex_header *vert, GLfloat *dest, GLuint result, GLuint defaultAttrib) argument
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/tgsi/
H A Dtgsi_sanity.c415 uint vert; local
416 for (vert = 0; vert < ctx->implied_array_size; ++vert) {
418 fill_scan_register2d(reg, file, i, vert);
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
H A Dpolygon.c73 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
179 float *vert; local
196 float *vert = ptr_to_vertex(p->data, 0); local
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/swrast/
H A Ds_points.c55 get_size(const struct gl_context *ctx, const SWvertex *vert, GLboolean smoothed) argument
61 size = vert->pointSize;
83 sprite_point(struct gl_context *ctx, const SWvertex *vert) argument
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
243 smooth_point(struct gl_context *ctx, const SWvertex *vert) argument
363 large_point(struct gl_context *ctx, const SWvertex *vert) argument
452 pixel_point(struct gl_context *ctx, const SWvertex *vert) argument
[all...]
/external/chromium_org/third_party/skia/src/gpu/
H A DGrDefaultPathRenderer.cpp244 SkPoint* vert = base; local
261 uint16_t currIdx = (uint16_t) (vert - base);
265 *vert = pts[0];
266 vert++;
270 uint16_t prevIdx = (uint16_t)(vert - base) - 1;
274 *(vert++) = pts[1];
278 uint16_t firstQPtIdx = (uint16_t)(vert - base) - 1;
282 srcSpaceTolSqd, &vert,
294 uint16_t firstCPtIdx = (uint16_t)(vert - base) - 1;
297 srcSpaceTolSqd, &vert,
[all...]
/external/mesa3d/src/gallium/auxiliary/tgsi/
H A Dtgsi_sanity.c415 uint vert; local
416 for (vert = 0; vert < ctx->implied_array_size; ++vert) {
418 fill_scan_register2d(reg, file, i, vert);
/external/mesa3d/src/gallium/state_trackers/vega/
H A Dpolygon.c73 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
179 float *vert; local
196 float *vert = ptr_to_vertex(p->data, 0); local
[all...]

Completed in 4531 milliseconds

123