summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/compiler/nir_types.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/nir_types.cpp b/src/compiler/nir_types.cpp
index f86f0a79868..c7d07415cd2 100644
--- a/src/compiler/nir_types.cpp
+++ b/src/compiler/nir_types.cpp
@@ -696,6 +696,7 @@ glsl_get_natural_size_align_bytes(const struct glsl_type *type,
break;
}
+ case GLSL_TYPE_INTERFACE:
case GLSL_TYPE_STRUCT:
*size = 0;
*align = 0;
@@ -719,7 +720,6 @@ glsl_get_natural_size_align_bytes(const struct glsl_type *type,
case GLSL_TYPE_SUBROUTINE:
case GLSL_TYPE_VOID:
case GLSL_TYPE_ERROR:
- case GLSL_TYPE_INTERFACE:
case GLSL_TYPE_FUNCTION:
unreachable("type does not have a natural size");
}