Searched refs:do_tri (Results 1 – 2 of 2) sorted by relevance
/external/mesa3d/src/gallium/auxiliary/indices/ |
D | u_unfilled_gen.py | 113 def do_tri( intype, outtype, ptr, v0, v1, v2 ): function 155 do_tri( intype, outtype, 'out+j', 'i', 'i+1', 'i+2' ); 163 do_tri( intype, outtype, 'out+j', 'i', 'i+1/*+(i&1)*/', 'i+2/*-(i&1)*/' ); 171 do_tri( intype, outtype, 'out+j', '0', 'i+1', 'i+2' ); 204 do_tri( intype, outtype, 'out+j', 'i', 'i+2', 'i+4' ); 212 do_tri( intype, outtype, 'out+j', 'i', 'i+2', 'i+4' );
|
D | u_indices_gen.py | 157 def do_tri( intype, outtype, ptr, v0, v1, v2, inpv, outpv ): function 168 do_tri( intype, outtype, ptr+'+0', v0, v1, v3, inpv, outpv ); 169 do_tri( intype, outtype, ptr+'+3', v1, v2, v3, inpv, outpv ); 171 do_tri( intype, outtype, ptr+'+0', v0, v1, v2, inpv, outpv ); 172 do_tri( intype, outtype, ptr+'+3', v0, v2, v3, inpv, outpv ); 246 do_tri( intype, outtype, 'out+i', 'i', 'i+1', 'i+2', inpv, outpv ); 255 do_tri( intype, outtype, 'out+j', 'i', 'i+1+(i&1)', 'i+2-(i&1)', inpv, outpv ); 257 do_tri( intype, outtype, 'out+j', 'i+(i&1)', 'i+1-(i&1)', 'i+2', inpv, outpv ); 265 do_tri( intype, outtype, 'out+j', 'start', 'i+1', 'i+2', inpv, outpv ); 299 do_tri( intype, outtype, 'out+j', 'start', 'i+1', 'i+2', inpv, outpv ); [all …]
|