Lines Matching defs:field
2477 * can be used to establish a default precision qualifier. The type field can
4626 * a constant array, or a field of a constant structure, or
7234 * can be used to establish a default precision qualifier. The type field
7282 * field can be either int or float [...]. Any other types or
7340 /* _mesa_ast_set_aggregate_type() sets the <structure> field so that
7345 * The ->is_declaration field is false for initializers of variables
7404 /* Allocate storage for the fields and process the field
7769 /* If no layout is specified for the field, inherit the layout
7791 /* For readonly and writeonly qualifiers the field definition,
7805 * qualifier or the field qualifier are set
7963 apply_memory_qualifiers(ir_variable *var, glsl_struct_field field)
7965 var->data.memory_read_only = field.memory_read_only;
7966 var->data.memory_write_only = field.memory_write_only;
7967 var->data.memory_coherent = field.memory_coherent;
7968 var->data.memory_volatile = field.memory_volatile;
7969 var->data.memory_restrict = field.memory_restrict;
8386 * field selector ( . ) operator (analogously to structures)."