Home
last modified time | relevance | path

Searched refs:inpv (Results 1 – 1 of 1) sorted by relevance

/external/mesa3d/src/gallium/auxiliary/indices/
Du_indices_gen.py127 def do_line( intype, outtype, ptr, v0, v1, inpv, outpv ): argument
128 if inpv == outpv:
133 def do_tri( intype, outtype, ptr, v0, v1, v2, inpv, outpv ): argument
134 if inpv == outpv:
137 if inpv == FIRST:
142 def do_quad( intype, outtype, ptr, v0, v1, v2, v3, inpv, outpv ): argument
143 do_tri( intype, outtype, ptr+'+0', v0, v1, v3, inpv, outpv );
144 do_tri( intype, outtype, ptr+'+3', v1, v2, v3, inpv, outpv );
146 def name(intype, outtype, inpv, outpv, prim): argument
148 return 'generate_' + prim + '_' + outtype + '_' + inpv + '2' + outpv
[all …]