Searched refs:outtype (Results 1 - 5 of 5) sorted by relevance

/xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/indices/
H A Du_unfilled_gen.py100 def vert( intype, outtype, v0 ):
102 return '(' + outtype + ')(' + v0 + ')'
104 return '(' + outtype + ')in[' + v0 + ']'
106 def line( intype, outtype, ptr, v0, v1 ):
107 print(' (' + ptr + ')[0] = ' + vert( intype, outtype, v0 ) + ';')
108 print(' (' + ptr + ')[1] = ' + vert( intype, outtype, v1 ) + ';')
114 def do_tri( intype, outtype, ptr, v0, v1, v2 ):
115 line( intype, outtype, ptr, v0, v1 )
116 line( intype, outtype, ptr + '+2', v1, v2 )
117 line( intype, outtype, pt
[all...]
H A Du_indices_gen.py114 def vert( intype, outtype, v0 ):
116 return '(' + outtype + ')(' + v0 + ')'
118 return '(' + outtype + ')in[' + v0 + ']'
120 def point( intype, outtype, ptr, v0 ):
121 print(' (' + ptr + ')[0] = ' + vert( intype, outtype, v0 ) + ';')
123 def line( intype, outtype, ptr, v0, v1 ):
124 print(' (' + ptr + ')[0] = ' + vert( intype, outtype, v0 ) + ';')
125 print(' (' + ptr + ')[1] = ' + vert( intype, outtype, v1 ) + ';')
127 def tri( intype, outtype, ptr, v0, v1, v2 ):
128 print(' (' + ptr + ')[0] = ' + vert( intype, outtype, v
[all...]
/xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/indices/
H A Du_unfilled_gen.py98 def vert( intype, outtype, v0 ):
100 return '(' + outtype + ')(' + v0 + ')'
102 return '(' + outtype + ')in[' + v0 + ']'
104 def line( intype, outtype, ptr, v0, v1 ):
105 print(' (' + ptr + ')[0] = ' + vert( intype, outtype, v0 ) + ';')
106 print(' (' + ptr + ')[1] = ' + vert( intype, outtype, v1 ) + ';')
112 def do_tri( intype, outtype, ptr, v0, v1, v2 ):
113 line( intype, outtype, ptr, v0, v1 )
114 line( intype, outtype, ptr + '+2', v1, v2 )
115 line( intype, outtype, pt
[all...]
H A Du_indices_gen.py112 def vert( intype, outtype, v0 ):
114 return '(' + outtype + ')(' + v0 + ')'
116 return '(' + outtype + ')in[' + v0 + ']'
118 def point( intype, outtype, ptr, v0 ):
119 print(' (' + ptr + ')[0] = ' + vert( intype, outtype, v0 ) + ';')
121 def line( intype, outtype, ptr, v0, v1 ):
122 print(' (' + ptr + ')[0] = ' + vert( intype, outtype, v0 ) + ';')
123 print(' (' + ptr + ')[1] = ' + vert( intype, outtype, v1 ) + ';')
125 def tri( intype, outtype, ptr, v0, v1, v2 ):
126 print(' (' + ptr + ')[0] = ' + vert( intype, outtype, v
[all...]
/xsrc/external/mit/MesaLib/dist/src/panfrost/vulkan/
H A Dpanvk_vX_meta_copy.c446 const struct glsl_type *outtype = NULL; local in function:panvk_meta_copy_img2img_shader
466 outtype = glsl_vector_type(GLSL_TYPE_FLOAT, 2);
487 outtype = glsl_vector_type(GLSL_TYPE_FLOAT, 3);
504 outtype = glsl_vector_type(basetype, ndstcomps);
508 nir_variable_create(b.shader, nir_var_shader_out, outtype, "out");

Completed in 11 milliseconds