diff options
author | Jason Ekstrand <[email protected]> | 2017-03-07 09:19:29 -0800 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2017-03-07 15:22:16 -0800 |
commit | a316d8f406080cbfe516c7deaf52968de2eadfed (patch) | |
tree | 9609d3ead6129488b354458220b12dcfb37a81ce /src/intel/vulkan/anv_private.h | |
parent | 1488d079cb5dd625881204677fde9bf34f185c78 (diff) |
anv: Get rid of the stub() macros
Except for a few unimplemented things on gen7, we don't really have
stubs anymore so we should drop this. This commit replaces the few gen7
stub() calls with explicitly labeled finishme's and makes the sparse
binding stuff silently no-op or return a FEATURE_NOT_PRESENT error.
Reviewed-by: Lionel Landwerlin <[email protected]>
Diffstat (limited to 'src/intel/vulkan/anv_private.h')
-rw-r--r-- | src/intel/vulkan/anv_private.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/intel/vulkan/anv_private.h b/src/intel/vulkan/anv_private.h index e2aeb4f86d7..7d3fd40d7c5 100644 --- a/src/intel/vulkan/anv_private.h +++ b/src/intel/vulkan/anv_private.h @@ -279,18 +279,6 @@ void anv_loge_v(const char *format, va_list va); #define anv_validate if (0) #endif -#define stub_return(v) \ - do { \ - anv_finishme("stub %s", __func__); \ - return (v); \ - } while (0) - -#define stub() \ - do { \ - anv_finishme("stub %s", __func__); \ - return; \ - } while (0) - /** * A dynamically growable, circular buffer. Elements are added at head and * removed from tail. head and tail are free-running uint32_t indices and we |