aboutsummaryrefslogtreecommitdiff
path: root/src/target.zig
diff options
context:
space:
mode:
Diffstat (limited to 'src/target.zig')
-rw-r--r--src/target.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/target.zig b/src/target.zig
index b0d2bdfe74..00e804d441 100644
--- a/src/target.zig
+++ b/src/target.zig
@@ -418,7 +418,7 @@ pub fn arePointersLogical(target: std.Target, as: AddressSpace) bool {
.global => false,
// TODO: Allowed with VK_KHR_variable_pointers.
.shared => true,
- .constant, .local, .input, .output, .uniform => true,
+ .constant, .local, .input, .output, .uniform, .push_constant => true,
else => unreachable,
};
}