Home | History | Annotate | Download | only in draw

Lines Matching refs:fetch_info

132                    const struct draw_fetch_info *fetch_info,
135 if (fetch_info->linear) {
137 fetch_info->start,
138 fetch_info->count,
143 fetch_info->elts,
144 fetch_info->count,
201 const struct draw_fetch_info *fetch_info,
215 fetched_vert_info.count = fetch_info->count;
220 align(fetch_info->count, 4));
228 fetch( fpme->fetch, fetch_info, (char *)fetched_vert_info.verts );
232 fetch_info = NULL;
302 struct draw_fetch_info fetch_info;
305 fetch_info.linear = FALSE;
306 fetch_info.start = 0;
307 fetch_info.elts = fetch_elts;
308 fetch_info.count = fetch_count;
319 fetch_pipeline_generic( middle, &fetch_info, &prim_info );
329 struct draw_fetch_info fetch_info;
332 fetch_info.linear = TRUE;
333 fetch_info.start = start;
334 fetch_info.count = count;
335 fetch_info.elts = NULL;
346 fetch_pipeline_generic( middle, &fetch_info, &prim_info );
359 struct draw_fetch_info fetch_info;
362 fetch_info.linear = TRUE;
363 fetch_info.start = start;
364 fetch_info.count = count;
365 fetch_info.elts = NULL;
376 fetch_pipeline_generic( middle, &fetch_info, &prim_info );