diff options
author | Mauro Rossi <[email protected]> | 2019-07-08 01:17:22 +0200 |
---|---|---|
committer | Mauro Rossi <[email protected]> | 2019-07-16 21:31:24 +0200 |
commit | 3630988b1d7ef200a2b3e9b360eb812b84d96afc (patch) | |
tree | 2dde5a3a9997b64ea8f35ecfadefe5f1d1ec251b /src/amd/vulkan/Makefile.sources | |
parent | 856e84083eee9b22408a23d4eeec246e64adfac2 (diff) |
android: radv/gfx10: generate gfx10_format_table.h
This patch adds the missing building rules for Android,
to avoid following building errors:
In file included from external/mesa/src/amd/vulkan/radv_debug.c:35:
In file included from external/mesa/src/amd/vulkan/radv_debug.h:27:
external/mesa/src/amd/vulkan/radv_private.h:95:10:
fatal error: 'gfx10_format_table.h' file not found
^~~~~~~~~~~~~~~~~~~~~~
1 error generated.
In file included from external/mesa/src/amd/vulkan/radv_android.c:31:
external/mesa/src/amd/vulkan/radv_private.h:95:10:
fatal error: 'gfx10_format_table.h' file not found
^~~~~~~~~~~~~~~~~~~~~~
1 error generated.
Fixes: 3dc5ec5d16 ("radv/gfx10: generate gfx10_format_table.h")
Signed-off-by: Mauro Rossi <[email protected]>
Acked-by: Samuel Pitoiset <[email protected]>
Diffstat (limited to 'src/amd/vulkan/Makefile.sources')
-rw-r--r-- | src/amd/vulkan/Makefile.sources | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/amd/vulkan/Makefile.sources b/src/amd/vulkan/Makefile.sources index df90c1150af..312cd0b1e99 100644 --- a/src/amd/vulkan/Makefile.sources +++ b/src/amd/vulkan/Makefile.sources @@ -91,5 +91,6 @@ VULKAN_GENERATED_FILES := \ radv_entrypoints.h \ radv_extensions.c \ radv_extensions.h \ - vk_format_table.c + vk_format_table.c \ + gfx10_format_table.h |