diff options
Diffstat (limited to 'src/compiler/glsl/hir_field_selection.cpp')
-rw-r--r-- | src/compiler/glsl/hir_field_selection.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/glsl/hir_field_selection.cpp b/src/compiler/glsl/hir_field_selection.cpp index eab08ad8235..aa1808afa15 100644 --- a/src/compiler/glsl/hir_field_selection.cpp +++ b/src/compiler/glsl/hir_field_selection.cpp @@ -47,7 +47,7 @@ _mesa_ast_field_selection_to_hir(const ast_expression *expr, if (op->type->is_error()) { /* silently propagate the error */ } else if (op->type->base_type == GLSL_TYPE_STRUCT - || op->type->base_type == GLSL_TYPE_INTERFACE) { + || op->type->is_interface()) { result = new(ctx) ir_dereference_record(op, expr->primary_expression.identifier); |