diff options
author | Jason Ekstrand <[email protected]> | 2016-04-18 16:53:11 -0700 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2016-04-20 14:54:09 -0700 |
commit | 0a45395902134a4541be68c0522dbb623f32f765 (patch) | |
tree | fe325dc23cfbd8e189f5d7a7606af059012da3af | |
parent | 86c52bc757fe83b49d0ad2623ba449f6bcaac3e7 (diff) |
anv: Remove the old emit macro
Acked-by: Kristian Høgsberg <[email protected]>
-rw-r--r-- | src/intel/vulkan/anv_private.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/intel/vulkan/anv_private.h b/src/intel/vulkan/anv_private.h index 63c207a357f..df8df186009 100644 --- a/src/intel/vulkan/anv_private.h +++ b/src/intel/vulkan/anv_private.h @@ -826,16 +826,6 @@ __gen_combine_address(struct anv_batch *batch, void *location, VG(VALGRIND_CHECK_MEM_IS_DEFINED(dst, __anv_cmd_length(struc) * 4)); \ } while (0) -#define anv_batch_emit(batch, cmd, ...) do { \ - void *__dst = anv_batch_emit_dwords(batch, __anv_cmd_length(cmd)); \ - struct cmd __template = { \ - __anv_cmd_header(cmd), \ - __VA_ARGS__ \ - }; \ - __anv_cmd_pack(cmd)(batch, __dst, &__template); \ - VG(VALGRIND_CHECK_MEM_IS_DEFINED(__dst, __anv_cmd_length(cmd) * 4)); \ - } while (0) - #define anv_batch_emitn(batch, n, cmd, ...) ({ \ void *__dst = anv_batch_emit_dwords(batch, n); \ struct cmd __template = { \ |