mesa/src/amd/vulkan
Karol Herbst d0c6ef2793 nir: rename global/local to private/function memory
the naming is a bit confusing no matter how you look at it. Within SPIR-V
"global" memory is memory accessible from all threads. glsl "global" memory
normally refers to shader thread private memory declared at global scope. As
we already use "shared" for memory shared across all thrads of a work group
the solution where everybody could be happy with is to rename "global" to
"private" and use "global" later for memory usually stored within system
accessible memory (be it VRAM or system RAM if keeping SVM in mind).
glsl "local" memory is memory only accessible within a function, while SPIR-V
"local" memory is memory accessible within the same workgroup.

v2: rename local to function as well
v3: rename vtn_variable_mode_local as well

Signed-off-by: Karol Herbst <kherbst@redhat.com>
Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
2019-01-08 18:51:46 +01:00
..
winsys/amdgpu radv: compute optimal VM alignment for imported buffers 2018-12-20 17:34:04 +01:00
.editorconfig amd: add .editorconfig 2017-08-29 01:08:58 +03:00
.gitignore radv: add generated files to .gitignore(s) 2018-05-15 22:53:55 +02:00
Android.mk android: radv: add libmesa_git_sha1 static dependency 2018-11-03 10:48:45 +01:00
Makefile.am configure: allow building with python3 2018-10-31 19:15:50 +00:00
Makefile.sources radv: add support for FMASK expand 2018-12-20 18:01:17 +01:00
meson.build radv: add support for FMASK expand 2018-12-20 18:01:17 +01:00
radv_android.c radv/android: Use buffer metadata to determine scanout compat. 2018-12-04 01:21:38 +01:00
radv_cmd_buffer.c radv: Remove unused variable. 2019-01-07 23:15:33 +01:00
radv_cs.h amd,radeonsi: rename radeon_winsys_cs -> radeon_cmdbuf 2018-06-19 13:08:50 -04:00
radv_debug.c amd,radeonsi: rename radeon_winsys_cs -> radeon_cmdbuf 2018-06-19 13:08:50 -04:00
radv_debug.h radv: enable primitive binning by default 2018-11-16 17:51:15 +01:00
radv_descriptor_set.c radv: use a 64-bit unsigned integer when allocating a descriptor pool 2018-09-19 13:36:12 +02:00
radv_descriptor_set.h Revert "radv: Don't store buffer references in the descriptor set." 2018-04-20 16:18:13 +02:00
radv_device.c radv: Fix rasterization precision bits. 2019-01-07 23:27:30 +01:00
radv_entrypoints_gen.py radv: generate entrypoints for VK_ANDROID_native_buffer 2018-07-28 12:39:57 +02:00
radv_extensions.py radv: report Vulkan version 1.1.90 for real 2018-12-17 17:51:48 +01:00
radv_formats.c radv: enable shaderStorageImageMultisample feature on GFX8+ 2018-12-20 18:01:19 +01:00
radv_icd.py python: Specify the JSON separators 2018-07-05 12:52:38 +01:00
radv_image.c radv: Work around non-renderable 128bpp compressed 3d textures on GFX9. 2018-12-20 15:07:20 +01:00
radv_llvm_helper.cpp amd: remove support for LLVM 6.0 2018-12-06 14:02:56 +01:00
radv_meta.c radv: add support for FMASK expand 2018-12-20 18:01:17 +01:00
radv_meta.h radv: add support for FMASK expand 2018-12-20 18:01:17 +01:00
radv_meta_blit.c radv: do not re-create the sampler for every blits in CmdBlitImage() 2018-09-18 13:27:59 +02:00
radv_meta_blit2d.c radv: Remove garbage comment. 2018-09-27 02:04:06 +02:00
radv_meta_buffer.c nir: replace nir_load_system_value calls with appropiate builder functions 2018-11-14 02:09:11 +01:00
radv_meta_bufimage.c radv: use 3d shader for gfx9 copies if dst is 3d 2018-12-04 10:42:31 +10:00
radv_meta_clear.c radv: initialize FMASK for images in fully expanded mode 2018-12-20 18:01:15 +01:00
radv_meta_copy.c radv: Fix wrongly positioned paren. 2018-12-21 21:06:55 +01:00
radv_meta_decompress.c radv: drop few useless state changes when doing color/depth decompressions 2018-11-29 10:18:55 +01:00
radv_meta_fast_clear.c radv: allow to skip DCC decompressions with the new predicate 2018-12-13 09:21:14 +01:00
radv_meta_fmask_expand.c radv: add support for FMASK expand 2018-12-20 18:01:17 +01:00
radv_meta_resolve.c radv: use the resolve compute path if dest uses multiple layers 2018-09-21 16:35:59 +02:00
radv_meta_resolve_cs.c nir: replace nir_load_system_value calls with appropiate builder functions 2018-11-14 02:09:11 +01:00
radv_meta_resolve_fs.c radv: Possible on-demand compilation fix. 2018-08-16 11:13:19 +02:00
radv_nir_to_llvm.c amd: remove support for LLVM 6.0 2018-12-06 14:02:56 +01:00
radv_pass.c radv: ignore subpass self-dependencies for CreateRenderPass() too 2018-11-23 11:59:11 +01:00
radv_pipeline.c nir: rename nir_link_constant_varyings() nir_link_opt_varyings() 2019-01-02 12:19:17 +11:00
radv_pipeline_cache.c radv: Add on-demand compilation of built-in shaders. 2018-08-14 10:26:24 +02:00
radv_private.h radv: Remove device path. 2019-01-07 23:15:14 +01:00
radv_query.c radv/query: Use 1-bit booleans in query shaders 2018-12-19 16:36:40 -06:00
radv_radeon_winsys.h radv/android: Use buffer metadata to determine scanout compat. 2018-12-04 01:21:38 +01:00
radv_shader.c nir: rename global/local to private/function memory 2019-01-08 18:51:46 +01:00
radv_shader.h radv: declare streamout SGPRs 2018-10-29 17:09:08 +01:00
radv_shader_helper.h amd: remove support for LLVM 6.0 2018-12-06 14:02:56 +01:00
radv_shader_info.c radv: Fix a stupid if in gather_intrinsic_info 2018-12-16 15:06:07 -06:00
radv_util.c radv: Add startup debug option. 2018-05-31 11:51:23 +02:00
radv_util.h radv: Use proper header guards over 'pragma once' directives 2016-10-10 16:10:56 +11:00
radv_wsi.c vulkan/wsi: Use VK_EXT_pci_bus_info for DRM fd matching 2018-10-18 11:29:00 -05:00
radv_wsi_display.c anv,radv: Add support for VK_KHR_get_display_properties2 2018-07-09 17:09:41 -07:00
radv_wsi_wayland.c radv/wsi: Don't include wayland headers 2017-03-13 11:16:30 +00:00
radv_wsi_x11.c vulkan: drop always-true param 2018-10-26 18:33:11 +01:00
si_cmd_buffer.c radv: reset pending_reset_query when flushing caches 2018-12-05 13:05:55 +01:00
vk_format.h radv: Fix SRGB compute copies. 2018-05-21 10:33:41 +02:00
vk_format_layout.csv radv: Add support for ETC2 textures. 2018-07-27 01:31:32 +02:00
vk_format_parse.py python: Fix inequality comparisons 2018-08-10 08:45:59 -07:00
vk_format_table.py radv: Remove redundant format check. 2018-12-17 20:09:38 +00:00