render: add additive_cullback test

https://github.com/w23/xash3d-fwgs/issues/665
This commit is contained in:
2023-11-27 12:46:54 -05:00
parent 7654142cdc
commit 2b19a8d196
12 changed files with 42 additions and 2 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -16,7 +16,7 @@ saves = [
'brush_02',
'c0a0d_emissive',
'light_01',
#'additive_cullback',
'additive_cullback',
]
displays = {
@@ -163,18 +163,25 @@ def command_run():
copy_assets()
render()
compare()
#report()
def command_render():
compile()
copy_assets()
render()
match args.command:
case 'run':
command_run()
case 'compare':
command_compare()
case 'render':
command_render()
case 'png':
command_png()
case _:
raise Exception(f'Unknown command {args.command}')
# TODO:
# - settings object to pass as an argument
# - HTML report

Binary file not shown.