aboutsummaryrefslogtreecommitdiff
path: root/samples/D3D12/src/Viewer.cpp
diff options
context:
space:
mode:
authorlbavoil <[email protected]>2016-05-09 11:32:58 +0200
committerlbavoil <[email protected]>2016-05-09 11:32:58 +0200
commit5d606f2453e3fa8575aa06483288714735f9dfcf (patch)
treef4277027638078c42b1be68d3d44a67177d0bfc6 /samples/D3D12/src/Viewer.cpp
parentEdit comment (diff)
downloadhbaoplus-5d606f2453e3fa8575aa06483288714735f9dfcf.tar.xz
hbaoplus-5d606f2453e3fa8575aa06483288714735f9dfcf.zip
HBAO+ 3.0.0.20735892
Diffstat (limited to 'samples/D3D12/src/Viewer.cpp')
-rw-r--r--samples/D3D12/src/Viewer.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/samples/D3D12/src/Viewer.cpp b/samples/D3D12/src/Viewer.cpp
index e445ffd..2ad4761 100644
--- a/samples/D3D12/src/Viewer.cpp
+++ b/samples/D3D12/src/Viewer.cpp
@@ -952,8 +952,8 @@ public:
ImGui::DragFloat("PowerExponent", &mAOParams.PowerExponent, 0.05f, 1.f, 8.f);
ImGui::DragFloat("Bias", &mAOParams.Bias, 0.001f, 0, 0.5f);
- ImGui::DragFloat("NearAO", &mAOParams.NearAO, 0.01f, 1.f, 2.f);
- ImGui::DragFloat("FarAO", &mAOParams.FarAO, 0.01f, 1.f, 2.f);
+ ImGui::DragFloat("SmallScaleAO", &mAOParams.SmallScaleAO, 0.01f, 0.f, 2.f);
+ ImGui::DragFloat("LargeScaleAO", &mAOParams.LargeScaleAO, 0.01f, 0.f, 2.f);
bool BlurEnabled = mAOParams.Blur.Enable ? true : false;
ImGui::Checkbox("Blur.Enable", &BlurEnabled);