anv: Clean up some unused variables
authorEdward O'Callaghan <funfunctor@folklore1984.net>
Fri, 9 Dec 2016 14:40:40 +0000 (01:40 +1100)
committerEdward O'Callaghan <funfunctor@folklore1984.net>
Sat, 10 Dec 2016 00:59:59 +0000 (11:59 +1100)
Following on from the spirit of commit 011e5570f.

Signed-off-by: Edward O'Callaghan <funfunctor@folklore1984.net>
Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
src/intel/vulkan/anv_private.h

index 1f03b684126833c325d3ed4d6d7d36cc6060c21b..9e3b72e77bdc3f5b60ed4cce3d1b90f22f100e55 100644 (file)
@@ -176,14 +176,6 @@ vk_to_isl_color(VkClearColorValue color)
    memcpy((dest), (src), (count) * sizeof(*(src))); \
 })
 
-/* Define no kernel as 1, since that's an illegal offset for a kernel */
-#define NO_KERNEL 1
-
-struct anv_common {
-    VkStructureType                             sType;
-    const void*                                 pNext;
-};
-
 /* Whenever we generate an error, pass it through this function. Useful for
  * debugging, where we can break on it. Only call at error site, not when
  * propagating errors. Might be useful to plug in a stack trace here.
@@ -1859,13 +1851,6 @@ ANV_DEFINE_NONDISP_HANDLE_CASTS(anv_shader_module, VkShaderModule)
       return (const __VkType *) __anv_obj; \
    }
 
-#define ANV_COMMON_TO_STRUCT(__VkType, __vk_name, __common_name) \
-   const __VkType *__vk_name = anv_common_to_ ## __VkType(__common_name)
-
-ANV_DEFINE_STRUCT_CASTS(anv_common, VkMemoryBarrier)
-ANV_DEFINE_STRUCT_CASTS(anv_common, VkBufferMemoryBarrier)
-ANV_DEFINE_STRUCT_CASTS(anv_common, VkImageMemoryBarrier)
-
 /* Gen-specific function declarations */
 #ifdef genX
 #  include "anv_genX.h"