From d9ffdfc16da0bafe589000bdb871181114317a29 Mon Sep 17 00:00:00 2001 From: Kenneth Graunke Date: Fri, 28 Aug 2020 17:38:45 -0700 Subject: [PATCH] intel/genxml: Include blitter commands in gen*_pack.h We're going to want to use the blitter again on newer hardware, which means we need to be able to use genxml to emit those commands. Acked-by: Sagar Ghuge Part-of: --- src/intel/genxml/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/intel/genxml/meson.build b/src/intel/genxml/meson.build index 8001c18af1c..0a92ff068ed 100644 --- a/src/intel/genxml/meson.build +++ b/src/intel/genxml/meson.build @@ -54,7 +54,7 @@ foreach f : gen_xml_files + ['gen_rt.xml'] _name, input : ['gen_pack_header.py', f], output : _name, - command : [prog_python, '@INPUT@'], + command : [prog_python, '@INPUT@', '--engines=render,blitter'], capture : true, ) endforeach