ssr indirect buffer initialization fix

This commit is contained in:
Turánszki János
2023-02-20 17:53:23 +01:00
parent a15c4ef452
commit 89eed3d43f
2 changed files with 3 additions and 1 deletions
+2
View File
@@ -11616,6 +11616,8 @@ void Postprocess_SSR(
BindCommonResources(cmd);
device->ClearUAV(&res.buffer_tile_tracing_statistics, 0, cmd);
PostProcess postprocess;
ssr_roughness_cutoff = roughnessCutoff;
ssr_frame = (float)res.frame;
+1 -1
View File
@@ -9,7 +9,7 @@ namespace wi::version
// minor features, major updates, breaking compatibility changes
const int minor = 71;
// minor bug fixes, alterations, refactors, updates
const int revision = 158;
const int revision = 159;
const std::string version_string = std::to_string(major) + "." + std::to_string(minor) + "." + std::to_string(revision);