Searched refs:is_struct (Results 1 - 25 of 46) sorted by relevance

12

/xsrc/external/mit/MesaLib/dist/src/compiler/glsl/
H A Dhir_field_selection.cpp49 } else if (op->type->is_struct() || op->type->is_interface()) {
H A Dlink_uniforms.cpp181 if (array_type->is_struct() || array_type->is_array())
264 assert(type->without_array()->is_struct()
306 if (t_without_array->is_struct() ||
347 } else if (t->is_struct() || t->is_interface()) {
348 if (record_type == NULL && t->is_struct())
351 if (t->is_struct())
395 if (t->is_struct()) {
399 } else if (t->without_array()->is_struct() ||
402 if (record_type == NULL && t->fields.array->is_struct())
552 assert(!type->without_array()->is_struct());
[all...]
H A Dlower_buffer_access.cpp66 if (deref->type->is_struct()) {
217 return matrix || deref->type->without_array()->is_struct();
244 return matrix || deref->type->without_array()->is_struct();
417 if (type->without_array()->is_struct()) {
H A Dlink_uniform_initializers.cpp193 if (type->is_struct()) {
203 } else if (t_without_array->is_struct() ||
H A Dopt_structure_splitting.cpp106 if (!var->type->is_struct() ||
209 if (!var->type->is_struct())
H A Dlink_varyings.cpp89 } else if (t->is_struct()) {
100 } else if (t->without_array()->is_struct() ||
224 if (output->type->is_struct()) {
481 const bool is_struct = type_without_array->is_struct(); local in function:check_location_aliasing
482 if (is_struct) {
503 if (info->var->type->without_array()->is_struct() || is_struct) {
514 is_struct ? var->name : info->var->name,
1880 return xfb_enabled && (type->is_array() || type->is_struct() ||
[all...]
H A Dlink_uniform_blocks.cpp71 assert(type->is_struct());
84 assert(type->is_struct());
H A Dlower_xfb_varying.cpp186 assert(*type != NULL && (*type)->is_struct() && field != NULL);
H A Dir.cpp905 || type->is_struct() || type->is_array());
912 if (type->is_array() || type->is_struct()) {
1087 || type->is_struct() || type->is_array());
1100 if (type->is_struct()) {
1372 assert(this->type->is_struct());
1455 assert (!type->is_array() && !type->is_struct());
1512 if (this->type->is_array() || this->type->is_struct()) {
2277 (constant->type->is_array() || constant->type->is_struct())) {
H A Dlower_packed_varyings.cpp527 if (rvalue->type->is_struct()) {
798 !(type->is_array() || type->is_struct() || type->is_matrix()) &&
808 !((type->is_array() || type->is_struct() || type->is_matrix()) &&
/xsrc/external/mit/MesaLib.old/dist/src/compiler/glsl/
H A Dhir_field_selection.cpp49 } else if (op->type->is_struct() || op->type->is_interface()) {
H A Dlower_buffer_access.cpp66 if (deref->type->is_struct()) {
217 return matrix || deref->type->without_array()->is_struct();
244 return matrix || deref->type->without_array()->is_struct();
417 if (type->without_array()->is_struct()) {
H A Dlink_uniforms.cpp49 assert(type->without_array()->is_struct()
91 if (t_without_array->is_struct() ||
132 } else if (t->is_struct() || t->is_interface()) {
133 if (record_type == NULL && t->is_struct())
136 if (t->is_struct())
180 if (t->is_struct()) {
184 } else if (t->without_array()->is_struct() ||
187 if (record_type == NULL && t->fields.array->is_struct())
337 assert(!type->without_array()->is_struct());
791 assert(type->is_struct());
[all...]
H A Dlink_uniform_initializers.cpp193 if (type->is_struct()) {
203 } else if (t_without_array->is_struct() ||
H A Dopt_structure_splitting.cpp106 if (!var->type->is_struct() ||
209 if (!var->type->is_struct())
H A Dlink_varyings.cpp82 } else if (t->is_struct()) {
93 } else if (t->without_array()->is_struct() ||
217 if (output->type->is_struct()) {
471 const bool is_struct = type_without_array->is_struct(); local in function:check_location_aliasing
472 if (is_struct) {
493 if (info->var->type->without_array()->is_struct() || is_struct) {
504 is_struct ? var->name : info->var->name,
1743 return xfb_enabled && (type->is_array() || type->is_struct() ||
[all...]
H A Dir.cpp757 || type->is_struct() || type->is_array());
764 if (type->is_array() || type->is_struct()) {
912 || type->is_struct() || type->is_array());
925 if (type->is_struct()) {
1117 assert(this->type->is_struct());
1188 assert (!type->is_array() && !type->is_struct());
1236 if (this->type->is_array() || this->type->is_struct()) {
1948 (constant->type->is_array() || constant->type->is_struct())) {
H A Dlink_uniform_blocks.cpp71 assert(type->is_struct());
84 assert(type->is_struct());
H A Dir_print_visitor.cpp152 } else if (t->is_struct() && !is_gl_identifier(t->name)) {
473 } else if (ir->type->is_struct()) {
H A Dlower_packed_varyings.cpp524 if (rvalue->type->is_struct()) {
779 !((type->is_array() || type->is_struct() || type->is_matrix()) &&
/xsrc/external/mit/MesaLib/dist/src/compiler/
H A Dglsl_types.cpp222 } else if (this->is_struct() || this->is_interface()) {
236 if (this->is_struct() || this->is_interface()) {
252 } else if (this->is_struct() || this->is_interface()) {
268 } else if (this->is_struct() || this->is_interface()) {
284 } else if (this->is_struct() || this->is_interface()) {
321 } else if (this->is_struct() || this->is_interface()) {
367 } else if (this->is_struct() || this->is_interface()) {
1176 if (this->is_struct()) {
1177 if (!b->is_struct())
1720 if (t->is_struct()) {
[all...]
H A Dnir_types.cpp90 assert(type->is_struct() || type->is_interface());
322 return type->is_struct();
334 return type->is_struct() || type->is_interface();
H A Dglsl_types.h991 bool is_struct() const function in struct:glsl_type
/xsrc/external/mit/MesaLib.old/dist/src/compiler/
H A Dglsl_types.cpp212 } else if (this->is_struct() || this->is_interface()) {
226 if (this->is_struct() || this->is_interface()) {
242 } else if (this->is_struct() || this->is_interface()) {
258 } else if (this->is_struct() || this->is_interface()) {
274 } else if (this->is_struct() || this->is_interface()) {
311 } else if (this->is_struct() || this->is_interface()) {
357 } else if (this->is_struct() || this->is_interface()) {
1465 if (t->is_struct()) {
1471 if (wa->is_struct()) {
1563 if (this->without_array()->is_struct() ||
[all...]
H A Dnir_types.cpp84 assert(type->is_struct() || type->is_interface());
297 return type->is_struct();
309 return type->is_struct() || type->is_interface();

Completed in 56 milliseconds

12