diff options
author | Mauro Rossi <[email protected]> | 2019-12-08 09:40:36 +0100 |
---|---|---|
committer | Mauro Rossi <[email protected]> | 2019-12-27 09:20:54 +0100 |
commit | 563bd61feec39130c57c179ec8b6fb56f4518663 (patch) | |
tree | 112de3b2743789547745960f86ac98b478221e37 /src/amd/vulkan | |
parent | 962b70c25923e6f05884613faca406cafc7d8446 (diff) |
android: radv: build radv_shader_args.c
Updates radv Makefile.sources and fixes the following building error:
external/mesa/src/amd/vulkan/radv_shader.c:1122:
error: undefined reference to 'radv_declare_shader_args'
Fixes: 3b14336 ("ac/nir, radv, radeonsi: Switch to using ac_shader_args")
Fixes: 66c703b ("radv: Move argument declaration out of nir_to_llvm")
Signed-off-by: Mauro Rossi <[email protected]>
Reviewed-by: Samuel Pitoiset <[email protected]>
Diffstat (limited to 'src/amd/vulkan')
-rw-r--r-- | src/amd/vulkan/Makefile.sources | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/amd/vulkan/Makefile.sources b/src/amd/vulkan/Makefile.sources index 312cd0b1e99..002f2ea1ebe 100644 --- a/src/amd/vulkan/Makefile.sources +++ b/src/amd/vulkan/Makefile.sources @@ -63,6 +63,8 @@ VULKAN_FILES := \ radv_private.h \ radv_radeon_winsys.h \ radv_shader.c \ + radv_shader_args.c \ + radv_shader_args.h \ radv_shader_info.c \ radv_shader.h \ radv_shader_helper.h \ |