Skip to content

Commit

Permalink
Merge pull request BradLarson#905 from aburgel/fix_twoinput_filter
Browse files Browse the repository at this point in the history
Fix GPUImageTwoInputFilter to correctly reset itself
  • Loading branch information
BradLarson committed Apr 18, 2013
2 parents 6d5b921 + ed802f6 commit 98a0aca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion framework/Source/GPUImageTwoInputFilter.m
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ - (void)setInputTexture:(GLuint)newInputTexture atIndex:(NSInteger)textureIndex;
if (textureIndex == 0)
{
filterSourceTexture = newInputTexture;
hasSetFirstTexture = YES;
hasSetFirstTexture = (newInputTexture != 0);
}
else
{
Expand Down

0 comments on commit 98a0aca

Please sign in to comment.