Searched refs:vsplit (Results 1 – 4 of 4) sorted by relevance
/external/mesa3d/src/gallium/auxiliary/draw/ |
D | draw_pt_vsplit.c | 68 vsplit_clear_cache(struct vsplit_frontend *vsplit) in vsplit_clear_cache() argument 70 memset(vsplit->cache.fetches, 0xff, sizeof(vsplit->cache.fetches)); in vsplit_clear_cache() 71 vsplit->cache.has_max_fetch = FALSE; in vsplit_clear_cache() 72 vsplit->cache.num_fetch_elts = 0; in vsplit_clear_cache() 73 vsplit->cache.num_draw_elts = 0; in vsplit_clear_cache() 77 vsplit_flush_cache(struct vsplit_frontend *vsplit, unsigned flags) in vsplit_flush_cache() argument 79 vsplit->middle->run(vsplit->middle, in vsplit_flush_cache() 80 vsplit->fetch_elts, vsplit->cache.num_fetch_elts, in vsplit_flush_cache() 81 vsplit->draw_elts, vsplit->cache.num_draw_elts, flags); in vsplit_flush_cache() 88 vsplit_add_cache(struct vsplit_frontend *vsplit, unsigned fetch) in vsplit_add_cache() argument [all …]
|
D | draw_pt_vsplit_tmp.h | 36 CONCAT(vsplit_primitive_, ELT_TYPE)(struct vsplit_frontend *vsplit, in CONCAT() 39 struct draw_context *draw = vsplit->draw; in CONCAT() 58 if (icount > vsplit->max_vertices) in CONCAT() 71 if (icount > vsplit->segment_size) in CONCAT() 103 vsplit->draw_elts[i] = (ushort) idx; in CONCAT() 113 vsplit->draw_elts[i] = (ushort) (idx - min_index); in CONCAT() 117 draw_elts = vsplit->draw_elts; in CONCAT() 120 return vsplit->middle->run_linear_elts(vsplit->middle, in CONCAT() 132 CONCAT(vsplit_segment_cache_, ELT_TYPE)(struct vsplit_frontend *vsplit, in CONCAT() 138 struct draw_context *draw = vsplit->draw; in CONCAT() [all …]
|
D | draw_pt.c | 133 frontend = draw->pt.front.vsplit; in draw_pt_arrays() 178 draw->pt.front.vsplit = draw_pt_vsplit(draw); in draw_pt_init() 179 if (!draw->pt.front.vsplit) in draw_pt_init() 225 if (draw->pt.front.vsplit) { in draw_pt_destroy() 226 draw->pt.front.vsplit->destroy( draw->pt.front.vsplit ); in draw_pt_destroy() 227 draw->pt.front.vsplit = NULL; in draw_pt_destroy()
|
D | draw_private.h | 171 struct draw_pt_front_end *vsplit; member
|