Skip to content

Commit

Permalink
Merge branch 'pkristof/pr71_imgui_fix' into 'main'
Browse files Browse the repository at this point in the history
[PR:71] fix wrong imgui label under froxel radiance cache #71

See merge request lightspeedrtx/dxvk-remix-nv!813
  • Loading branch information
pkristof committed Apr 22, 2024
2 parents adb102f + c0a986d commit 0a8de5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dxvk/imgui/dxvk_imgui.cpp
Expand Up @@ -2751,7 +2751,7 @@ namespace dxvk {
ImGui::DragInt("Min Kernel Radius", &RtxOptions::Get()->froxelMinKernelRadiusObject(), 0.05f, 1, UINT8_MAX);
ImGui::DragInt("Max Kernel Radius", &RtxOptions::Get()->froxelMaxKernelRadiusObject(), 0.05f, 1, UINT8_MAX);
ImGui::DragInt("Min Kernel Radius Stability History", &RtxOptions::Get()->froxelMinKernelRadiusStabilityHistoryObject(), 0.1f, 1, UINT8_MAX);
ImGui::DragInt("Min Kernel Radius Stability History", &RtxOptions::Get()->froxelMaxKernelRadiusStabilityHistoryObject(), 0.1f, 1, UINT8_MAX);
ImGui::DragInt("Max Kernel Radius Stability History", &RtxOptions::Get()->froxelMaxKernelRadiusStabilityHistoryObject(), 0.1f, 1, UINT8_MAX);
ImGui::DragFloat("Kernel Radius Stability History Power", &RtxOptions::Get()->froxelKernelRadiusStabilityHistoryPowerObject(), 0.01f, 0.0f, FLT_MAX, "%.2f", sliderFlags);

ImGui::Unindent();
Expand Down

0 comments on commit 0a8de5b

Please sign in to comment.