render: add additive_cullback test

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

BIN
render/gold/additive_cullback_basecolor.png (Stored with Git LFS) Normal file

Binary file not shown.

BIN
render/gold/additive_cullback_direct.png (Stored with Git LFS) Normal file

Binary file not shown.

BIN
render/gold/additive_cullback_emissive.png (Stored with Git LFS) Normal file

Binary file not shown.

BIN
render/gold/additive_cullback_full.png (Stored with Git LFS) Normal file

Binary file not shown.

BIN
render/gold/additive_cullback_indirect.png (Stored with Git LFS) Normal file

Binary file not shown.

BIN
render/gold/additive_cullback_indirect_diffuse.png (Stored with Git LFS) Normal file

Binary file not shown.

BIN
render/gold/additive_cullback_indirect_specular.png (Stored with Git LFS) Normal file

Binary file not shown.

BIN
render/gold/additive_cullback_lighting.png (Stored with Git LFS) Normal file

Binary file not shown.

BIN
render/gold/additive_cullback_ngeom.png (Stored with Git LFS) Normal file

Binary file not shown.

BIN
render/gold/additive_cullback_nshade.png (Stored with Git LFS) Normal file

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

BIN
render/save/rendertest_additive_cullback.sav (Stored with Git LFS) Normal file

Binary file not shown.