Skip to content

Commit

Permalink
Disable temporal checkerboarding for now
Browse files Browse the repository at this point in the history
This is not really usable without a proper temporal filter with reuse.
  • Loading branch information
zeux committed Jan 6, 2025
1 parent 27269b9 commit 209245d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/niagara.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1484,7 +1484,7 @@ int main(int argc, const char** argv)

// checkerboard rendering: we dispatch half as many columns and xform them to fill the screen
int shadowWidthCB = shadowCheckerboard ? (swapchain.width + 1) / 2 : swapchain.width;
int shadowCheckerboardF = shadowCheckerboard ? 1 + (frameIndex % 2) : 0;
int shadowCheckerboardF = shadowCheckerboard ? 1 : 0;

vkCmdWriteTimestamp(commandBuffer, VK_PIPELINE_STAGE_ALL_COMMANDS_BIT, queryPoolTimestamp, timestamp + 0);

Expand Down

0 comments on commit 209245d

Please sign in to comment.