HomeSort by: relevance | last modified time | path
    Searched refs:glsl_uint_type (Results 1 - 25 of 45) sorted by relevancy

1 2

  /xsrc/external/mit/MesaLib/dist/src/compiler/nir/
nir_lower_printf.c 67 glsl_uint_type(), 0);
90 glsl_uint_type(), 0);
nir_lower_gs_intrinsics.c 389 nir_local_variable_create(impl, glsl_uint_type(), "vertex_count");
395 nir_local_variable_create(impl, glsl_uint_type(), "primitive_count");
401 nir_local_variable_create(impl, glsl_uint_type(), "vertices_per_primitive");
nir_lower_multiview.c 243 nir_local_variable_create(entrypoint, glsl_uint_type(), "loop_index");
252 entrypoint, glsl_array_type(glsl_uint_type(), view_count, 0), "view_index");
nir_lower_variable_initializers.c 169 nir_variable *it = nir_local_variable_create(b.impl, glsl_uint_type(),
nir_lower_atomics_to_ssbo.c 202 const struct glsl_type *type = glsl_array_type(glsl_uint_type(), 0, 0);
  /xsrc/external/mit/MesaLib/dist/src/compiler/nir/tests/
load_store_vectorizer_tests.cpp 1189 nir_variable *var = nir_variable_create(b->shader, nir_var_mem_shared, glsl_array_type(glsl_uint_type(), 4, 0), "var");
1223 nir_variable *var = nir_variable_create(b->shader, nir_var_mem_shared, glsl_array_type(glsl_uint_type(), 4, 0), "var");
1240 nir_variable *var = nir_variable_create(b->shader, nir_var_mem_shared, glsl_array_type(glsl_uint_type(), 4, 0), "var");
1275 nir_variable *var = nir_variable_create(b->shader, nir_var_mem_shared, glsl_array_type(glsl_uint_type(), 4, 0), "var");
1311 glsl_struct_field fields[2] = {glsl_struct_field(glsl_uint_type(), "field0"),
1312 glsl_struct_field(glsl_array_type(glsl_uint_type(), 4, 0), "field1")};
1348 nir_variable *var = nir_variable_create(b->shader, nir_var_mem_shared, glsl_array_type(glsl_uint_type(), 4, 0), "var");
1382 nir_variable *var = nir_variable_create(b->shader, nir_var_mem_shared, glsl_array_type(glsl_uint_type(), 4, 0), "var");
1399 nir_variable *var = nir_variable_create(b->shader, nir_var_mem_shared, glsl_array_type(glsl_uint_type(), 4, 0), "var");
1473 glsl_struct_field(glsl_array_type(glsl_uint_type(), 4, 0), "field1")}
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/compiler/nir/
nir_lower_gs_intrinsics.c 197 nir_local_variable_create(impl, glsl_uint_type(), "vertex_count");
nir_lower_atomics_to_ssbo.c 222 const struct glsl_type *type = glsl_array_type(glsl_uint_type(), 0, 0);
  /xsrc/external/mit/MesaLib/dist/src/amd/vulkan/
radv_pipeline_rt.c 197 vars.idx = nir_variable_create(shader, nir_var_shader_temp, glsl_uint_type(), "idx");
198 vars.arg = nir_variable_create(shader, nir_var_shader_temp, glsl_uint_type(), "arg");
199 vars.stack_ptr = nir_variable_create(shader, nir_var_shader_temp, glsl_uint_type(), "stack_ptr");
206 vars.flags = nir_variable_create(shader, nir_var_shader_temp, glsl_uint_type(), "ray_flags");
207 vars.cull_mask = nir_variable_create(shader, nir_var_shader_temp, glsl_uint_type(), "cull_mask");
209 nir_variable_create(shader, nir_var_shader_temp, glsl_uint_type(), "sbt_offset");
211 nir_variable_create(shader, nir_var_shader_temp, glsl_uint_type(), "sbt_stride");
213 nir_variable_create(shader, nir_var_shader_temp, glsl_uint_type(), "miss_index");
220 shader, nir_var_shader_temp, glsl_uint_type(), "custom_instance_and_mask");
222 nir_variable_create(shader, nir_var_shader_temp, glsl_uint_type(), "primitive_id")
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/zink/
zink_compiler.c 47 fields[0].type = glsl_array_type(glsl_uint_type(), 1, 0);
50 fields[1].type = glsl_array_type(glsl_uint_type(), 1, 0);
64 fields[0].type = glsl_array_type(glsl_uint_type(), 1, 0);
1015 const struct glsl_type *ubo_type = glsl_array_type(glsl_uint_type(), max_ubo_size * 4, 4);
1026 const struct glsl_type *ssbo_type = glsl_array_type(glsl_uint_type(), max_ssbo_size * 4, 4);
1027 const struct glsl_type *unsized = glsl_array_type(glsl_uint_type(), 0, 4);
1609 fields[0].type = glsl_array_type(glsl_uint_type(), offsetof(struct zink_gfx_push_constant, default_inner_level) / 4, 0);
1612 fields[1].type = glsl_array_type(glsl_uint_type(), 2, 0);
1615 fields[2].type = glsl_array_type(glsl_uint_type(), 4, 0);
  /xsrc/external/mit/MesaLib/dist/src/compiler/
nir_types.h 175 const struct glsl_type *glsl_uint_type(void);
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/d3d12/
d3d12_nir_passes.c 297 glsl_uint_type(), first_vertex);
581 var->type = glsl_uint_type();
673 glsl_uint_type(), "primitive_id");
791 nir_local_variable_create(impl, glsl_uint_type(), "vertex_count");
d3d12_gs_variant.cpp 203 glsl_uint_type(),
213 nir_local_variable_create(impl, glsl_uint_type(), "loop_index");
  /xsrc/external/mit/MesaLib.old/dist/src/compiler/
nir_types.h 147 const struct glsl_type *glsl_uint_type(void);
nir_types.cpp 422 glsl_uint_type(void) function
  /xsrc/external/mit/MesaLib/dist/src/panfrost/lib/
pan_indirect_draw.c 379 glsl_uint_type(), "inputs");
578 nir_local_variable_create(b->impl, glsl_uint_type(),
840 nir_local_variable_create(b->impl, glsl_uint_type(), "min");
843 nir_local_variable_create(b->impl, glsl_uint_type(), "max");
1002 nir_local_variable_create(b->impl, glsl_uint_type(), "min");
1005 nir_local_variable_create(b->impl, glsl_uint_type(), "max");
1027 nir_local_variable_create(b->impl, glsl_uint_type(), "offset");
pan_indirect_dispatch.c 163 glsl_uint_type(), "inputs");
  /xsrc/external/mit/MesaLib/dist/src/amd/common/
ac_nir_lower_ngg.c 1045 nir_local_variable_create(impl, glsl_uint_type(), "gs_vtx0_addr"),
1046 nir_local_variable_create(impl, glsl_uint_type(), "gs_vtx1_addr"),
1047 nir_local_variable_create(impl, glsl_uint_type(), "gs_vtx2_addr"),
1050 nir_local_variable_create(impl, glsl_uint_type(), "repacked_arg_0"),
1051 nir_local_variable_create(impl, glsl_uint_type(), "repacked_arg_1"),
1052 nir_local_variable_create(impl, glsl_uint_type(), "repacked_arg_2"),
1053 nir_local_variable_create(impl, glsl_uint_type(), "repacked_arg_3"),
1283 nir_variable *prim_exp_arg_var = nir_local_variable_create(impl, glsl_uint_type(), "prim_exp_arg");
1873 state.current_clear_primflag_idx_var = nir_local_variable_create(impl, glsl_uint_type(), "current_clear_primflag_idx");
1903 state.output_vars[slot][comp] = nir_local_variable_create(impl, glsl_uint_type(), "output")
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/frontends/clover/nir/
invocation.cpp 289 const glsl_type *type = glsl_uint_type();
321 const glsl_type *type = pointer_bit_size == 64 ? glsl_uint64_t_type() : glsl_uint_type();
  /xsrc/external/mit/MesaLib/dist/src/microsoft/clc/
clc_nir.c 245 glsl_array_type(glsl_uint_type(), printf_array_size, sizeof(unsigned)),
clc_compiler.c 208 nir_variable *new_input = nir_variable_create(b->shader, nir_var_uniform, glsl_uint_type(), NULL);
414 const struct glsl_type *array_type = glsl_array_type(glsl_uint_type(), size / 4, 4);
431 glsl_array_type(glsl_uint_type(),
  /xsrc/external/mit/MesaLib/dist/src/microsoft/spirv_to_dxil/
spirv_to_dxil.c 54 glsl_array_type(glsl_uint_type(), runtime_data_size / sizeof(unsigned),
  /xsrc/external/mit/MesaLib/dist/src/freedreno/ir3/
ir3_nir_lower_tess.c 915 shader, nir_var_shader_out, glsl_uint_type(), "vertex_flags");
967 nir_local_variable_create(impl, glsl_uint_type(), "vertex_count");
969 nir_local_variable_create(impl, glsl_uint_type(), "emitted_vertex");
  /xsrc/external/mit/MesaLib.old/dist/src/amd/vulkan/
radv_shader.c 265 .push_const_ptr_type = glsl_uint_type(),
266 .shared_ptr_type = glsl_uint_type(),
  /xsrc/external/mit/MesaLib/dist/src/broadcom/compiler/
v3d_nir_lower_io.c 652 const struct glsl_type *uint_type = glsl_uint_type();

Completed in 32 milliseconds

1 2