diff options
author | Lionel Landwerlin <[email protected]> | 2018-11-06 11:37:50 +0000 |
---|---|---|
committer | Lionel Landwerlin <[email protected]> | 2018-11-06 15:28:07 +0000 |
commit | b43f955037c77e8fac3811c466d9ae3947586478 (patch) | |
tree | 598ff74ca5b2729c6dc0767a78d84540a86cec25 /src/intel/Makefile.sources | |
parent | f6131d4ec7a24b9731bb01b6b3bd786ea48ba3bb (diff) |
anv: stub internal android code
This reduces the amount of #ifdef ANDROID we'll have to have inside
the driver. Potentially offering better coverage of the android
extensions.
v2: Move anv_android.h include before anv_entrypoints.h (Tapani)
Fix autotools android build (Lionel)
Signed-off-by: Lionel Landwerlin <[email protected]>
Reviewed-by: Tapani Pälli <[email protected]>
Reviewed-by: Eric Engestrom <[email protected]>
Diffstat (limited to 'src/intel/Makefile.sources')
-rw-r--r-- | src/intel/Makefile.sources | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/intel/Makefile.sources b/src/intel/Makefile.sources index d10c4511734..4da887f7ed2 100644 --- a/src/intel/Makefile.sources +++ b/src/intel/Makefile.sources @@ -220,6 +220,7 @@ ISL_GENERATED_FILES = \ VULKAN_FILES := \ vulkan/anv_allocator.c \ + vulkan/anv_android.h \ vulkan/anv_batch_chain.c \ vulkan/anv_blorp.c \ vulkan/anv_cmd_buffer.c \ @@ -246,6 +247,9 @@ VULKAN_FILES := \ vulkan/anv_wsi.c \ vulkan/vk_format_info.h +VULKAN_NON_ANDROID_FILES := \ + vulkan/anv_android_stubs.c + VULKAN_ANDROID_FILES := \ vulkan/anv_android.c |