From fbeca9df87f66c9978a8daa25a90c324513544d2 Mon Sep 17 00:00:00 2001 From: Samuel Pitoiset Date: Tue, 19 Jan 2021 18:32:47 +0100 Subject: [PATCH] radv: remove stub() macros They are unused since sparse texture is implemented. Signed-off-by: Samuel Pitoiset Reviewed-by: Bas Nieuwenhuizen Part-of: --- src/amd/vulkan/radv_private.h | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/src/amd/vulkan/radv_private.h b/src/amd/vulkan/radv_private.h index 93dbe82bc50..6358daa70fe 100644 --- a/src/amd/vulkan/radv_private.h +++ b/src/amd/vulkan/radv_private.h @@ -252,18 +252,6 @@ void radv_logi_v(const char *format, va_list va); } while (0) #endif -#define stub_return(v) \ - do { \ - radv_finishme("stub %s", __func__); \ - return (v); \ - } while (0) - -#define stub() \ - do { \ - radv_finishme("stub %s", __func__); \ - return; \ - } while (0) - int radv_get_instance_entrypoint_index(const char *name); int radv_get_device_entrypoint_index(const char *name); int radv_get_physical_device_entrypoint_index(const char *name);