Fixed a ton of typos

This commit is contained in:
VNC
2021-01-05 02:13:15 +01:00
parent d715c0c0dd
commit 6ab300025b
73 changed files with 90 additions and 90 deletions

View File

@@ -328,7 +328,7 @@ void CS_BlurEmpty(uint3 GroupID : SV_GroupID, uint3 GroupThreadID : SV_GroupThre
const int2 location = int2(GroupID.x, GroupID.y);
const uint texelAdress = (location.y * AtlasSize + location.x) * NUM_SH_TARGETS;
// TODO: use more therads to sample lightmap and final therad make it blur
// TODO: use more threads to sample lightmap and final therad make it blur
// Simple box filter (using only valid samples)
const int blurRadius = 2;

View File

@@ -32,7 +32,7 @@ uint InsertOneBit(uint value, uint oneBitMask)
// Determines if two sort keys should be swapped in the list. KeySign is
// either 1 or -1. Multiplication with the KeySign will either invert the sign
// (effectively a negation) or leave the value alone. When the the KeySign is
// (effectively a negation) or leave the value alone. When the KeySign is
// 1, we are sorting descending, so when A < B, they should swap. For an
// ascending sort, -A < -B should swap.
bool ShouldSwap(Item a, Item b)