Skip to content

Commit

Permalink
fix: rotateRightHorizontal bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
rickytan committed Apr 1, 2016
1 parent 54d69e0 commit 0044e27
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions framework/Source/iOS/GPUImageView.m
Original file line number Diff line number Diff line change
Expand Up @@ -340,10 +340,10 @@ + (const GLfloat *)textureCoordinatesForRotation:(GPUImageRotationMode)rotationM
};

static const GLfloat rotateRightHorizontalFlipTextureCoordinates[] = {
1.0f, 1.0f,
1.0f, 0.0f,
0.0f, 1.0f,
0.0f, 0.0f,
1.0f, 1.0f,
1.0f, 0.0f,
};

static const GLfloat rotate180TextureCoordinates[] = {
Expand Down

0 comments on commit 0044e27

Please sign in to comment.