mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-23 17:40:11 +01:00
swr: [rasterizer codegen] add cmdline to archrast gen files
Reviewed-by: George Kyriazis <george.kyriazis@intel.com>
This commit is contained in:
parent
549b9d2e9f
commit
89b83f4b1e
5 changed files with 18 additions and 2 deletions
|
|
@ -155,6 +155,7 @@ def main():
|
||||||
output_fullpath = os.sep.join([output_dir, output_filename])
|
output_fullpath = os.sep.join([output_dir, output_filename])
|
||||||
|
|
||||||
MakoTemplateWriter.to_file(template_file, output_fullpath,
|
MakoTemplateWriter.to_file(template_file, output_fullpath,
|
||||||
|
cmdline=sys.argv,
|
||||||
filename=output_filename,
|
filename=output_filename,
|
||||||
protos=protos)
|
protos=protos)
|
||||||
|
|
||||||
|
|
@ -165,6 +166,7 @@ def main():
|
||||||
output_fullpath = os.sep.join([output_dir, output_filename])
|
output_fullpath = os.sep.join([output_dir, output_filename])
|
||||||
|
|
||||||
MakoTemplateWriter.to_file(template_file, output_fullpath,
|
MakoTemplateWriter.to_file(template_file, output_fullpath,
|
||||||
|
cmdline=sys.argv,
|
||||||
filename=output_filename,
|
filename=output_filename,
|
||||||
protos=protos)
|
protos=protos)
|
||||||
|
|
||||||
|
|
@ -175,6 +177,7 @@ def main():
|
||||||
output_fullpath = os.sep.join([output_dir, output_filename])
|
output_fullpath = os.sep.join([output_dir, output_filename])
|
||||||
|
|
||||||
MakoTemplateWriter.to_file(template_file, output_fullpath,
|
MakoTemplateWriter.to_file(template_file, output_fullpath,
|
||||||
|
cmdline=sys.argv,
|
||||||
filename=output_filename,
|
filename=output_filename,
|
||||||
event_header='gen_ar_event.hpp',
|
event_header='gen_ar_event.hpp',
|
||||||
protos=protos)
|
protos=protos)
|
||||||
|
|
@ -186,6 +189,7 @@ def main():
|
||||||
output_fullpath = os.sep.join([output_dir, output_filename])
|
output_fullpath = os.sep.join([output_dir, output_filename])
|
||||||
|
|
||||||
MakoTemplateWriter.to_file(template_file, output_fullpath,
|
MakoTemplateWriter.to_file(template_file, output_fullpath,
|
||||||
|
cmdline=sys.argv,
|
||||||
filename=output_filename,
|
filename=output_filename,
|
||||||
event_header='gen_ar_eventhandler.hpp',
|
event_header='gen_ar_eventhandler.hpp',
|
||||||
protos=protos)
|
protos=protos)
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,9 @@
|
||||||
*
|
*
|
||||||
* DO NOT EDIT
|
* DO NOT EDIT
|
||||||
*
|
*
|
||||||
|
* Generation Command Line:
|
||||||
|
* ${'\n* '.join(cmdline)}
|
||||||
|
*
|
||||||
******************************************************************************/
|
******************************************************************************/
|
||||||
#include "common/os.h"
|
#include "common/os.h"
|
||||||
#include "gen_ar_event.hpp"
|
#include "gen_ar_event.hpp"
|
||||||
|
|
|
||||||
|
|
@ -25,6 +25,9 @@
|
||||||
* @brief Definitions for events. auto-generated file
|
* @brief Definitions for events. auto-generated file
|
||||||
*
|
*
|
||||||
* DO NOT EDIT
|
* DO NOT EDIT
|
||||||
|
*
|
||||||
|
* Generation Command Line:
|
||||||
|
* ${'\n* '.join(cmdline)}
|
||||||
*
|
*
|
||||||
******************************************************************************/
|
******************************************************************************/
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
|
||||||
|
|
@ -25,7 +25,10 @@
|
||||||
* @brief Event handler interface. auto-generated file
|
* @brief Event handler interface. auto-generated file
|
||||||
*
|
*
|
||||||
* DO NOT EDIT
|
* DO NOT EDIT
|
||||||
*
|
*
|
||||||
|
* Generation Command Line:
|
||||||
|
* ${'\n* '.join(cmdline)}
|
||||||
|
*
|
||||||
******************************************************************************/
|
******************************************************************************/
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -25,7 +25,10 @@
|
||||||
* @brief Event handler interface. auto-generated file
|
* @brief Event handler interface. auto-generated file
|
||||||
*
|
*
|
||||||
* DO NOT EDIT
|
* DO NOT EDIT
|
||||||
*
|
*
|
||||||
|
* Generation Command Line:
|
||||||
|
* ${'\n* '.join(cmdline)}
|
||||||
|
*
|
||||||
******************************************************************************/
|
******************************************************************************/
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue