Skip to content

Commit

Permalink
Remove misc. commented code
Browse files Browse the repository at this point in the history
  • Loading branch information
brimson committed May 11, 2022
1 parent 7dfd8f5 commit d3a1130
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion shaders/cMotionBlur.fx
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ namespace Motion_Blur
int CoordIndex = 1;
int WeightIndex = 1;

while(CoordIndex < 4) // for(int i = 1; i < 4; i++)
while(CoordIndex < 4)
{
if(!Alt)
{
Expand Down
2 changes: 1 addition & 1 deletion shaders/cOpticalFlow.fx
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ namespace OpticalFlow
int CoordIndex = 1;
int WeightIndex = 1;

while(CoordIndex < 4) // for(int i = 1; i < 4; i++)
while(CoordIndex < 4)
{
if(!Alt)
{
Expand Down
2 changes: 1 addition & 1 deletion shaders/kDatamosh.fx
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ namespace Datamosh
int CoordIndex = 1;
int WeightIndex = 1;

while(CoordIndex < 4) // for(int i = 1; i < 4; i++)
while(CoordIndex < 4)
{
if(!Alt)
{
Expand Down

0 comments on commit d3a1130

Please sign in to comment.