/external/mesa3d/src/gallium/auxiliary/draw/ |
draw_vertex.h | 29 * Post-transform vertex format info. The vertex_info struct is used by 78 struct vertex_info struct 95 draw_vinfo_size( const struct vertex_info *a ) 97 return offsetof(const struct vertex_info, attrib[a->num_attribs]); 101 draw_vinfo_compare( const struct vertex_info *a, 102 const struct vertex_info *b ) 109 draw_vinfo_copy( struct vertex_info *dst, 110 const struct vertex_info *src ) 119 * Add another attribute to the given vertex_info object. 125 draw_emit_vertex_attr(struct vertex_info *vinfo [all...] |
draw_vbuf.h | 45 struct vertex_info; 76 const struct vertex_info *(*get_vertex_info)( struct vbuf_render * );
|
draw_vertex.c | 46 draw_compute_vertex_size(struct vertex_info *vinfo) 61 draw_dump_emitted_vertex(const struct vertex_info *vinfo, const uint8_t *data)
|
draw_pt_emit.c | 45 const struct vertex_info *vinfo; 55 const struct vertex_info *vinfo;
|
draw_pt_fetch_emit.c | 80 const struct vertex_info *vinfo; 97 const struct vertex_info *vinfo;
|
draw_pt_fetch_shade_emit.c | 63 const struct vertex_info *vinfo; 77 const struct vertex_info *vinfo;
|
/external/mesa3d/src/gallium/drivers/svga/ |
svga_swtnl_private.h | 42 struct vertex_info vertex_info; member in struct:svga_vbuf_render
|
svga_swtnl_state.c | 152 struct vertex_info *vinfo = &svga_render->vertex_info;
|
svga_swtnl_backend.c | 46 static const struct vertex_info * 54 return &svga_render->vertex_info;
|
/external/mesa3d/src/gallium/drivers/i915/ |
i915_state_immediate.c | 76 unsigned vertex_size = i915->current.vertex_info.size; 104 LIS2 = i915->current.vertex_info.hwfmt[1]; 105 LIS4 = i915->current.vertex_info.hwfmt[0];
|
i915_prim_emit.c | 72 const struct vertex_info *vinfo = &i915->current.vertex_info; 144 vertex_size = i915->current.vertex_info.size * 4; /* in bytes */
|
i915_state_derived.c | 61 struct vertex_info vinfo; 174 if (memcmp(&i915->current.vertex_info, &vinfo, sizeof(vinfo))) { 181 memcpy(&i915->current.vertex_info, &vinfo, sizeof(vinfo));
|
i915_context.h | 165 struct vertex_info vertex_info; member in struct:i915_state
|
/external/mesa3d/src/gallium/drivers/nv30/ |
nv30_draw.c | 46 struct vertex_info vertex_info; member in struct:nv30_render 61 static const struct vertex_info * 64 return &nv30_render(render)->vertex_info; 125 BEGIN_NV04(push, NV30_3D(VTXBUF(0)), r->vertex_info.num_attribs); 126 for (i = 0; i < r->vertex_info.num_attribs; i++) { 170 BEGIN_NV04(push, NV30_3D(VTXBUF(0)), r->vertex_info.num_attribs); 171 for (i = 0; i < r->vertex_info.num_attribs; i++) { 224 struct vertex_info *vinfo = &r->vertex_info; [all...] |
/external/mesa3d/src/gallium/drivers/softpipe/ |
sp_state.h | 60 struct vertex_info; 175 struct vertex_info * 178 struct vertex_info *
|
sp_state_derived.c | 50 softpipe->vertex_info.num_attribs = 0; 60 * vertex_info object. 62 struct vertex_info * 65 struct vertex_info *vinfo = &softpipe->vertex_info; 70 struct vertex_info *vinfo_vbuf = &softpipe->vertex_info_vbuf; 165 struct vertex_info *
|
sp_context.h | 115 struct vertex_info vertex_info; member in struct:softpipe_context 116 struct vertex_info vertex_info_vbuf;
|
/external/mesa3d/src/gallium/drivers/llvmpipe/ |
lp_setup.h | 34 struct vertex_info; 142 struct vertex_info *info );
|
lp_context.h | 104 struct vertex_info vertex_info; member in struct:llvmpipe_context
|
lp_setup_context.h | 75 struct vertex_info *vertex_info; member in struct:lp_setup_context
|
lp_state.h | 62 struct vertex_info;
|
lp_state_derived.c | 52 struct vertex_info *vinfo = &llvmpipe->vertex_info;
|
lp_setup_vbuf.c | 59 static const struct vertex_info * 69 return setup->vertex_info; 138 const unsigned stride = setup->vertex_info->size * sizeof(float); 337 const unsigned stride = setup->vertex_info->size * sizeof(float);
|
lp_setup.c | 624 struct vertex_info *vertex_info ) 628 setup->vertex_info = vertex_info;
|
/external/mesa3d/src/gallium/drivers/r300/ |
r300_state_derived.c | 65 draw_emit_vertex_attr(&r300->vertex_info, emit, interp, output); 137 struct vertex_info *vinfo = &r300->vertex_info; [all...] |