diff options
author | Jason Ekstrand <[email protected]> | 2016-10-07 15:41:17 -0700 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2016-10-14 15:40:39 -0700 |
commit | 4c9dec80edeb7f1d1774ca51faa806241c1c59cb (patch) | |
tree | 8bfdef03e92a399a107f517098878d16bf0f57f1 /src/intel/vulkan/anv_entrypoints_gen.py | |
parent | ac77528f7d383ee103ed702590f7bc9f05907b61 (diff) |
anv: Get rid of the ANV_CALL macro
This macro was needed by meta in order to make gen-specific calls from
gen-agnostic code. Now that we don't have meta, the remaining two uses are
fairly trivial to get rid of.
Signed-off-by: Jason Ekstrand <[email protected]>
Diffstat (limited to 'src/intel/vulkan/anv_entrypoints_gen.py')
-rw-r--r-- | src/intel/vulkan/anv_entrypoints_gen.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/intel/vulkan/anv_entrypoints_gen.py b/src/intel/vulkan/anv_entrypoints_gen.py index aeaeb1db8d5..ebabce6d480 100644 --- a/src/intel/vulkan/anv_entrypoints_gen.py +++ b/src/intel/vulkan/anv_entrypoints_gen.py @@ -222,7 +222,7 @@ anv_set_dispatch_devinfo(const struct gen_device_info *devinfo) dispatch_devinfo = *devinfo; } -void * __attribute__ ((noinline)) +static void * __attribute__ ((noinline)) anv_resolve_entrypoint(uint32_t index) { if (dispatch_devinfo.gen == 0) { |