Skip to content

Commit

Permalink
Merge pull request BradLarson#986 from DrMoriarty/upstream
Browse files Browse the repository at this point in the history
Trivial bugfix
  • Loading branch information
BradLarson committed May 20, 2013
2 parents 1ac93eb + 41c6316 commit 26e3988
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion framework/Source/GPUImageThreeInputFilter.m
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ - (void)newFrameReadyAtTime:(CMTime)frameTime atIndex:(NSInteger)textureIndex;
outputTextureRetainCount = [targets count];

// You can set up infinite update loops, so this helps to short circuit them
if (hasReceivedFirstFrame && hasReceivedSecondFrame)
if (hasReceivedFirstFrame && hasReceivedSecondFrame && hasReceivedThirdFrame)
{
return;
}
Expand Down

0 comments on commit 26e3988

Please sign in to comment.