Home
last modified time | relevance | path

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

/third_party/mesa3d/src/compiler/glsl/
Dlink_uniforms.cpp75 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()
Dast_to_hir.cpp7382 enum glsl_matrix_layout matrix_layout, in ast_process_struct_or_iface_block_members() argument
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 = GLSL_MATRIX_LAYOUT_ROW_MAJOR; in hir()
8098 matrix_layout = GLSL_MATRIX_LAYOUT_COLUMN_MAJOR; in hir()
[all …]
Dgl_nir_link_uniforms.c1289 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()
Dir.h810 unsigned matrix_layout:2; member
Dglsl_to_nir.cpp520 var->data.matrix_layout = ir->data.matrix_layout; in visit()
Dbuiltin_variables.cpp388 this->fields[this->num_fields].matrix_layout = GLSL_MATRIX_LAYOUT_INHERITED; in add_field()
Dir.cpp2035 this->data.matrix_layout = GLSL_MATRIX_LAYOUT_INHERITED; in ir_variable()
/third_party/mesa3d/src/compiler/
Dglsl_types.cpp1352 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 == GLSL_MATRIX_LAYOUT_COLUMN_MAJOR) { in std140_size()
[all …]
Dglsl_types.h1445 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/
Dnir.h572 unsigned matrix_layout:2; member
/third_party/mesa3d/docs/relnotes/
D20.1.0.rst4131 - nir: add matrix_layout to nir_variable data