diff options
author | Lionel Landwerlin <[email protected]> | 2019-08-09 16:49:17 +0300 |
---|---|---|
committer | Lionel Landwerlin <[email protected]> | 2019-08-09 17:01:38 +0300 |
commit | cefb4341b77a00d17bfe1f39ebdaec56d0632bfa (patch) | |
tree | d0fbed3e6fc4569bb1fb31e6dba216a43ca8d860 /src/intel | |
parent | 889e752965b8e76fa7471054c6b264c6ae05c741 (diff) |
anv: drop unused code
We stopped using this when we moved to Jason's mi_builder.
Signed-off-by: Lionel Landwerlin <[email protected]>
Reviewed-by: Jason Ekstrand <[email protected]>
Diffstat (limited to 'src/intel')
-rw-r--r-- | src/intel/vulkan/genX_cmd_buffer.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/src/intel/vulkan/genX_cmd_buffer.c b/src/intel/vulkan/genX_cmd_buffer.c index a91cffd8fc7..86ef1663ac4 100644 --- a/src/intel/vulkan/genX_cmd_buffer.c +++ b/src/intel/vulkan/genX_cmd_buffer.c @@ -590,23 +590,6 @@ set_image_fast_clear_state(struct anv_cmd_buffer *cmd_buffer, set_image_compressed_bit(cmd_buffer, image, aspect, 0, 0, 1, true); } -#if GEN_IS_HASWELL || GEN_GEN >= 8 -static inline uint32_t -mi_alu(uint32_t opcode, uint32_t operand1, uint32_t operand2) -{ - struct GENX(MI_MATH_ALU_INSTRUCTION) instr = { - .ALUOpcode = opcode, - .Operand1 = operand1, - .Operand2 = operand2, - }; - - uint32_t dw; - GENX(MI_MATH_ALU_INSTRUCTION_pack)(NULL, &dw, &instr); - - return dw; -} -#endif - /* This is only really practical on haswell and above because it requires * MI math in order to get it correct. */ |