diff options
| author | gwenzek <gwenzek@users.noreply.github.com> | 2022-02-21 20:05:27 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-02-21 14:05:27 -0500 |
| commit | 628e9e6d040979bd0a2cba05e854014dee5a7d55 (patch) | |
| tree | b2d86569b54d792808b608402cc9d1ea8ec7d161 /lib/std | |
| parent | d8da9a01fcfebf14a9f262cabf36f1c0767d2e2b (diff) | |
| download | zig-628e9e6d040979bd0a2cba05e854014dee5a7d55.tar.gz zig-628e9e6d040979bd0a2cba05e854014dee5a7d55.zip | |
enable Gpu address spaces (#10884)
Diffstat (limited to 'lib/std')
| -rw-r--r-- | lib/std/builtin.zig | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/std/builtin.zig b/lib/std/builtin.zig index ad6b5f052b..dda8d846fa 100644 --- a/lib/std/builtin.zig +++ b/lib/std/builtin.zig @@ -157,6 +157,12 @@ pub const AddressSpace = enum { gs, fs, ss, + // GPU address spaces + global, + constant, + param, + shared, + local, }; /// This data structure is used by the Zig language code generation and |
