Searched refs:inpv (Results 1 – 1 of 1) sorted by relevance
/external/mesa3d/src/gallium/auxiliary/indices/ |
D | u_indices_gen.py | 149 def do_line( intype, outtype, ptr, v0, v1, inpv, outpv ): argument 150 if inpv == outpv: 155 def do_tri( intype, outtype, ptr, v0, v1, v2, inpv, outpv ): argument 156 if inpv == outpv: 159 if inpv == FIRST: 164 def do_quad( intype, outtype, ptr, v0, v1, v2, v3, inpv, outpv ): argument 165 if inpv == LAST: 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 ); [all …]
|