diff options
author | Jason Ekstrand <[email protected]> | 2018-01-16 16:52:50 -0800 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2018-01-23 00:15:40 -0800 |
commit | 083e1266942b7bbcc038dfa20735d198db118493 (patch) | |
tree | 556337f1f783b309db54a62931f4ca26e97ab39a /src/intel/vulkan/anv_private.h | |
parent | 7039308d7c9a2d488f13cd40a949196dc03034d4 (diff) |
anv/entrypoints: Split entrypoint index lookup into its own function
Reviewed-by: Samuel Iglesias Gonsálvez <[email protected]>
Diffstat (limited to 'src/intel/vulkan/anv_private.h')
-rw-r--r-- | src/intel/vulkan/anv_private.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/intel/vulkan/anv_private.h b/src/intel/vulkan/anv_private.h index 36d87e2f176..1fd7c39567d 100644 --- a/src/intel/vulkan/anv_private.h +++ b/src/intel/vulkan/anv_private.h @@ -2816,6 +2816,8 @@ struct anv_query_pool { struct anv_bo bo; }; +int anv_get_entrypoint_index(const char *name); + void *anv_lookup_entrypoint(const struct gen_device_info *devinfo, const char *name); |