Searched refs:matrix_layout (Results 1 - 10 of 10) sorted by relevance
/third_party/mesa3d/src/compiler/glsl/ |
H A D | link_uniforms.cpp | 75 var->data.matrix_layout == GLSL_MATRIX_LAYOUT_ROW_MAJOR; in process() 158 const enum glsl_matrix_layout matrix_layout = in recursion() local 159 glsl_matrix_layout(t->fields.structure[i].matrix_layout); in recursion() 160 if (matrix_layout == GLSL_MATRIX_LAYOUT_ROW_MAJOR) { in recursion() 162 } else if (matrix_layout == GLSL_MATRIX_LAYOUT_COLUMN_MAJOR) { in recursion()
|
H A D | ast_to_hir.cpp | 7382 enum glsl_matrix_layout matrix_layout, in ast_process_struct_or_iface_block_members() 7669 matrix_layout == GLSL_MATRIX_LAYOUT_ROW_MAJOR) { in ast_process_struct_or_iface_block_members() 7772 fields[i].matrix_layout = matrix_layout; in ast_process_struct_or_iface_block_members() 7775 fields[i].matrix_layout = GLSL_MATRIX_LAYOUT_ROW_MAJOR; in ast_process_struct_or_iface_block_members() 7777 fields[i].matrix_layout = GLSL_MATRIX_LAYOUT_COLUMN_MAJOR; in ast_process_struct_or_iface_block_members() 7782 assert(fields[i].matrix_layout == GLSL_MATRIX_LAYOUT_ROW_MAJOR in ast_process_struct_or_iface_block_members() 7783 || fields[i].matrix_layout == GLSL_MATRIX_LAYOUT_COLUMN_MAJOR); in ast_process_struct_or_iface_block_members() 8094 enum glsl_matrix_layout matrix_layout = GLSL_MATRIX_LAYOUT_INHERITED; in hir() local 8096 matrix_layout in hir() 7377 ast_process_struct_or_iface_block_members(exec_list *instructions, struct _mesa_glsl_parse_state *state, exec_list *declarations, glsl_struct_field **fields_ret, bool is_interface, enum glsl_matrix_layout matrix_layout, bool allow_reserved_names, ir_variable_mode var_mode, ast_type_qualifier *layout, unsigned block_stream, unsigned block_xfb_buffer, unsigned block_xfb_offset, unsigned expl_location, unsigned expl_align) ast_process_struct_or_iface_block_members() argument [all...] |
H A D | gl_nir_link_uniforms.c | 1289 const enum glsl_matrix_layout matrix_layout = in nir_link_uniform() local 1290 glsl_get_struct_field_data(type, i)->matrix_layout; in nir_link_uniform() 1291 if (matrix_layout == GLSL_MATRIX_LAYOUT_ROW_MAJOR) { in nir_link_uniform() 1293 } else if (matrix_layout == GLSL_MATRIX_LAYOUT_COLUMN_MAJOR) { in nir_link_uniform() 1876 var->data.matrix_layout == GLSL_MATRIX_LAYOUT_ROW_MAJOR; in gl_nir_link_uniforms()
|
H A D | glsl_to_nir.cpp | 520 var->data.matrix_layout = ir->data.matrix_layout; in visit()
|
H A D | ir.h | 810 unsigned matrix_layout:2; member
|
H A D | ir.cpp | 2035 this->data.matrix_layout = GLSL_MATRIX_LAYOUT_INHERITED; in ir_variable()
|
H A D | builtin_variables.cpp | 388 this->fields[this->num_fields].matrix_layout = GLSL_MATRIX_LAYOUT_INHERITED; in add_field()
|
/third_party/mesa3d/src/compiler/ |
H A D | glsl_types.cpp | 1352 if (this->fields.structure[i].matrix_layout in record_compare() 1353 != b->fields.structure[i].matrix_layout) in record_compare() 2094 const enum glsl_matrix_layout matrix_layout = in std140_base_alignment() local 2095 glsl_matrix_layout(this->fields.structure[i].matrix_layout); in std140_base_alignment() 2096 if (matrix_layout == GLSL_MATRIX_LAYOUT_ROW_MAJOR) { in std140_base_alignment() 2098 } else if (matrix_layout == GLSL_MATRIX_LAYOUT_COLUMN_MAJOR) { in std140_base_alignment() 2224 const enum glsl_matrix_layout matrix_layout = in std140_size() local 2225 glsl_matrix_layout(this->fields.structure[i].matrix_layout); in std140_size() 2226 if (matrix_layout == GLSL_MATRIX_LAYOUT_ROW_MAJOR) { in std140_size() 2228 } else if (matrix_layout in std140_size() 2419 const enum glsl_matrix_layout matrix_layout = std430_base_alignment() local 2592 const enum glsl_matrix_layout matrix_layout = std430_size() local [all...] |
H A D | glsl_types.h | 1445 unsigned matrix_layout:2; member 1489 matrix_layout = GLSL_MATRIX_LAYOUT_INHERITED; in glsl_struct_field() 1496 matrix_layout = GLSL_MATRIX_LAYOUT_INHERITED; in glsl_struct_field() 1503 matrix_layout = GLSL_MATRIX_LAYOUT_INHERITED; in glsl_struct_field()
|
/third_party/mesa3d/src/compiler/nir/ |
H A D | nir.h | 572 unsigned matrix_layout:2;
|
Completed in 60 milliseconds