spirv: make default generic address space for vulkan Function

We are not using Private variables. This needs to be cleaned up a bit
more, this will happen with the general address space improvements.
This commit is contained in:
Robin Voetter 2024-11-02 15:23:27 +01:00
parent 7682ced08e
commit b5301558ae
No known key found for this signature in database

View File

@ -1882,7 +1882,7 @@ const NavGen = struct {
else => unreachable,
},
.shared => .Workgroup,
.local => .Private,
.local => .Function,
.global => switch (target.os.tag) {
.opencl => .CrossWorkgroup,
.vulkan => .PhysicalStorageBuffer,