Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixing a lot of error spam from this asv test #240

Open
wants to merge 1 commit into
base: development
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions Scripts/ShadowTest.bv.lua
Original file line number Diff line number Diff line change
Expand Up @@ -75,14 +75,11 @@ function TestDirectionalLight()
SetImguiValue('Debug Coloring', false)
SetImguiValue('Cascade Position Correction', false)
SetImguiValue('Filter Method##Directional', 'PCF')
SetImguiValue('Width##Directional', 0.07)
SetImguiValue('Prediction # ##Directional', 4)
SetImguiValue('Filtering # ##Directional', 4)
IdleFrames(1)
CaptureScreenshot(g_screenshotOutputFolder .. '/directional_pcf_low.png')

-- Directional Light PCF high
SetImguiValue('Prediction # ##Directional', 16)
SetImguiValue('Filtering # ##Directional', 64)
IdleFrames(1)
CaptureScreenshot(g_screenshotOutputFolder .. '/directional_pcf_high.png')
Expand Down Expand Up @@ -132,20 +129,15 @@ function TestDiskLights()
SetImguiValue('Red', true)
SetImguiValue('Filter Method##Positional', 'PCF')
IdleFrames(1)
SetImguiValue('Width##Positional', 0.5)
SetImguiValue('Prediction # ##Positional', 16)
SetImguiValue('Filtering # ##Positional', 64)
IdleFrames(1)
SetImguiValue('Green', true)
SetImguiValue('Filter Method##Positional', 'ESM')
IdleFrames(1)
SetImguiValue('Width##Positional', 0.5)
IdleFrames(1)
SetImguiValue('Blue', true)
SetImguiValue('Filter Method##Positional', 'ESM+PCF')
IdleFrames(1)
SetImguiValue('Width##Positional', 0.5)
SetImguiValue('Prediction # ##Positional', 16)
SetImguiValue('Filtering # ##Positional', 64)
IdleFrames(1)
CaptureScreenshot(g_screenshotOutputFolder .. '/spot_filter_method.png')
Expand Down