Searched refs:vsplit (Results 1 – 4 of 4) sorted by relevance
/external/mesa3d/src/gallium/auxiliary/draw/ |
D | draw_pt_vsplit.c | 66 vsplit_clear_cache(struct vsplit_frontend *vsplit) in vsplit_clear_cache() argument 68 memset(vsplit->cache.fetches, 0xff, sizeof(vsplit->cache.fetches)); in vsplit_clear_cache() 69 vsplit->cache.has_max_fetch = FALSE; in vsplit_clear_cache() 70 vsplit->cache.num_fetch_elts = 0; in vsplit_clear_cache() 71 vsplit->cache.num_draw_elts = 0; in vsplit_clear_cache() 75 vsplit_flush_cache(struct vsplit_frontend *vsplit, unsigned flags) in vsplit_flush_cache() argument 77 vsplit->middle->run(vsplit->middle, in vsplit_flush_cache() 78 vsplit->fetch_elts, vsplit->cache.num_fetch_elts, in vsplit_flush_cache() 79 vsplit->draw_elts, vsplit->cache.num_draw_elts, flags); in vsplit_flush_cache() 86 vsplit_add_cache(struct vsplit_frontend *vsplit, unsigned fetch) in vsplit_add_cache() argument [all …]
|
D | draw_pt_vsplit_tmp.h | 37 CONCAT(vsplit_primitive_, ELT_TYPE)(struct vsplit_frontend *vsplit, in CONCAT() 40 struct draw_context *draw = vsplit->draw; in CONCAT() 53 if (icount > vsplit->max_vertices) in CONCAT() 66 if (icount > vsplit->segment_size) in CONCAT() 94 vsplit->draw_elts[i] = (ushort) idx; in CONCAT() 104 vsplit->draw_elts[i] = (ushort) (idx - min_index); in CONCAT() 108 draw_elts = vsplit->draw_elts; in CONCAT() 111 return vsplit->middle->run_linear_elts(vsplit->middle, in CONCAT() 123 CONCAT(vsplit_segment_cache_, ELT_TYPE)(struct vsplit_frontend *vsplit, in CONCAT() 129 struct draw_context *draw = vsplit->draw; in CONCAT() [all …]
|
D | draw_pt.c | 132 frontend = draw->pt.front.vsplit; in draw_pt_arrays() 165 draw->pt.front.vsplit = draw_pt_vsplit(draw); in draw_pt_init() 166 if (!draw->pt.front.vsplit) in draw_pt_init() 212 if (draw->pt.front.vsplit) { in draw_pt_destroy() 213 draw->pt.front.vsplit->destroy( draw->pt.front.vsplit ); in draw_pt_destroy() 214 draw->pt.front.vsplit = NULL; in draw_pt_destroy()
|
D | draw_private.h | 155 struct draw_pt_front_end *vsplit; member
|