Searched refs:VARYING_SLOT_TESS_MAX (Results 1 - 25 of 33) sorted by relevance

12

/xsrc/external/mit/MesaLib.old/dist/src/intel/compiler/
H A Dbrw_vue_map.c216 * values equal to VARYING_SLOT_TESS_MAX , we need to ensure that
217 * VARYING_SLOT_TESS_MAX is <= 127, not 128.
219 STATIC_ASSERT(VARYING_SLOT_TESS_MAX <= 127);
221 for (int i = 0; i < VARYING_SLOT_TESS_MAX ; ++i) {
H A Dbrw_vec4.h119 dst_reg output_reg[VARYING_SLOT_TESS_MAX][4];
120 unsigned output_num_components[VARYING_SLOT_TESS_MAX][4];
121 const char *output_reg_annotation[VARYING_SLOT_TESS_MAX];
H A Dbrw_compiler.h937 signed char varying_to_slot[VARYING_SLOT_TESS_MAX];
946 signed char slot_to_varying[VARYING_SLOT_TESS_MAX];
/xsrc/external/mit/MesaLib/dist/src/intel/compiler/
H A Dbrw_vue_map.c233 * values equal to VARYING_SLOT_TESS_MAX , we need to ensure that
234 * VARYING_SLOT_TESS_MAX is <= 127, not 128.
236 STATIC_ASSERT(VARYING_SLOT_TESS_MAX <= 127);
238 for (int i = 0; i < VARYING_SLOT_TESS_MAX ; ++i) {
H A Dbrw_vec4.h122 dst_reg output_reg[VARYING_SLOT_TESS_MAX][4];
123 unsigned output_num_components[VARYING_SLOT_TESS_MAX][4];
124 const char *output_reg_annotation[VARYING_SLOT_TESS_MAX];
H A Dbrw_compiler.h1172 signed char varying_to_slot[VARYING_SLOT_TESS_MAX];
1181 signed char slot_to_varying[VARYING_SLOT_TESS_MAX];
/xsrc/external/mit/MesaLib.old/dist/src/compiler/
H A Dshader_enums.h301 #define VARYING_SLOT_TESS_MAX (VARYING_SLOT_PATCH0 + MAX_VARYING) macro
302 #define MAX_VARYINGS_INCL_PATCH (VARYING_SLOT_TESS_MAX - VARYING_SLOT_VAR0)
/xsrc/external/mit/MesaLib/dist/src/compiler/nir/
H A Dnir_lower_io_arrays_to_elements.c370 BITSET_DECLARE(indirects, 4 * VARYING_SLOT_TESS_MAX) = {0};
408 BITSET_DECLARE(indirects, 4 * VARYING_SLOT_TESS_MAX) = {0};
H A Dnir_lower_io_to_vector.c39 #define MAX_SLOTS MAX2(VARYING_SLOT_TESS_MAX, FRAG_RESULT_MAX+1)
H A Dnir_gather_info.c93 assert(idx >= VARYING_SLOT_PATCH0 && idx < VARYING_SLOT_TESS_MAX);
H A Dnir_linking_helpers.c1413 unsigned assigned_locations[VARYING_SLOT_TESS_MAX];
/xsrc/external/mit/MesaLib/dist/src/compiler/
H A Dshader_enums.h414 #define VARYING_SLOT_TESS_MAX (VARYING_SLOT_PATCH0 + MAX_VARYING) macro
415 #define MAX_VARYINGS_INCL_PATCH (VARYING_SLOT_TESS_MAX - VARYING_SLOT_VAR0)
/xsrc/external/mit/MesaLib/dist/src/compiler/glsl/tests/
H A Dvaryings_test.cpp71 ir_variable *junk[VARYING_SLOT_TESS_MAX];
/xsrc/external/mit/MesaLib.old/dist/src/compiler/glsl/tests/
H A Dvaryings_test.cpp73 ir_variable *junk[VARYING_SLOT_TESS_MAX];
/xsrc/external/mit/MesaLib.old/dist/src/amd/vulkan/
H A Dradv_shader.h416 if (slot >= VARYING_SLOT_PATCH0 && slot <= VARYING_SLOT_TESS_MAX)
/xsrc/external/mit/MesaLib/dist/src/compiler/glsl/
H A Dir_set_program_inouts.cpp104 assert(idx >= VARYING_SLOT_PATCH0 && idx < VARYING_SLOT_TESS_MAX);
H A Dlink_varyings.cpp2541 ir_variable *consumer_inputs_with_locations[VARYING_SLOT_TESS_MAX])
2545 sizeof(consumer_inputs_with_locations[0]) * VARYING_SLOT_TESS_MAX);
2600 ir_variable *consumer_inputs_with_locations[VARYING_SLOT_TESS_MAX])
2812 ir_variable *consumer_inputs_with_locations[VARYING_SLOT_TESS_MAX] = {
/xsrc/external/mit/MesaLib.old/dist/src/compiler/glsl/
H A Dir_set_program_inouts.cpp104 assert(idx >= VARYING_SLOT_PATCH0 && idx < VARYING_SLOT_TESS_MAX);
H A Dlink_varyings.cpp2328 ir_variable *consumer_inputs_with_locations[VARYING_SLOT_TESS_MAX])
2332 sizeof(consumer_inputs_with_locations[0]) * VARYING_SLOT_TESS_MAX);
2387 ir_variable *consumer_inputs_with_locations[VARYING_SLOT_TESS_MAX])
2590 ir_variable *consumer_inputs_with_locations[VARYING_SLOT_TESS_MAX] = {
/xsrc/external/mit/MesaLib.old/dist/src/compiler/nir/
H A Dnir_gather_info.c43 assert(idx >= VARYING_SLOT_PATCH0 && idx < VARYING_SLOT_TESS_MAX);
/xsrc/external/mit/MesaLib.old/dist/src/mesa/state_tracker/
H A Dst_program.c1413 ubyte inputSlotToAttr[VARYING_SLOT_TESS_MAX];
1414 ubyte inputMapping[VARYING_SLOT_TESS_MAX];
1415 ubyte outputMapping[VARYING_SLOT_TESS_MAX];
1565 ubyte outputMapping[VARYING_SLOT_TESS_MAX];
H A Dst_glsl_to_nir.cpp117 unsigned assigned_locations[VARYING_SLOT_TESS_MAX];
/xsrc/external/mit/MesaLib/dist/src/mesa/state_tracker/
H A Dst_program.c471 ubyte output_mapping[VARYING_SLOT_TESS_MAX];
1724 ubyte inputSlotToAttr[VARYING_SLOT_TESS_MAX];
1725 ubyte inputMapping[VARYING_SLOT_TESS_MAX];
1726 ubyte outputMapping[VARYING_SLOT_TESS_MAX];
/xsrc/external/mit/MesaLib/dist/src/freedreno/ir3/
H A Dir3_nir_lower_tess.c430 location <= VARYING_SLOT_TESS_MAX);
/xsrc/external/mit/MesaLib/dist/src/freedreno/vulkan/
H A Dtu_shader.c669 uint8_t output_map[VARYING_SLOT_TESS_MAX];

Completed in 112 milliseconds

12