Searched refs:do_tri (Results 1 – 2 of 2) sorted by relevance
/external/mesa3d/src/gallium/auxiliary/indices/ |
D | u_unfilled_gen.py | 114 def do_tri( intype, outtype, ptr, v0, v1, v2 ): function 156 do_tri( intype, outtype, 'out+j', 'i', 'i+1', 'i+2' ); 164 do_tri( intype, outtype, 'out+j', 'i', 'i+1/*+(i&1)*/', 'i+2/*-(i&1)*/' ); 172 do_tri( intype, outtype, 'out+j', '0', 'i+1', 'i+2' ); 205 do_tri( intype, outtype, 'out+j', 'i', 'i+2', 'i+4' ); 213 do_tri( intype, outtype, 'out+j', 'i', 'i+2', 'i+4' );
|
D | u_indices_gen.py | 155 def do_tri( intype, outtype, ptr, v0, v1, v2, inpv, outpv ): function 166 do_tri( intype, outtype, ptr+'+0', v0, v1, v3, inpv, outpv ); 167 do_tri( intype, outtype, ptr+'+3', v1, v2, v3, inpv, outpv ); 169 do_tri( intype, outtype, ptr+'+0', v0, v1, v2, inpv, outpv ); 170 do_tri( intype, outtype, ptr+'+3', v0, v2, v3, inpv, outpv ); 272 do_tri( intype, outtype, 'out+j', 'i', 'i+1', 'i+2', inpv, outpv ); 281 do_tri( intype, outtype, 'out+j', 'i', 'i+1+(i&1)', 'i+2-(i&1)', inpv, outpv ); 283 do_tri( intype, outtype, 'out+j', 'i+(i&1)', 'i+1-(i&1)', 'i+2', inpv, outpv ); 298 do_tri( intype, outtype, 'out+j', 'i+1', 'i+2', 'start', inpv, outpv ); 300 do_tri( intype, outtype, 'out+j', 'start', 'i+1', 'i+2', inpv, outpv ); [all …]
|