MAINT-6578 Add back Y Flip into QuickTime plugin used in OS X to match viewer setting

master
Callum Linden 2016-07-19 12:42:49 -07:00
parent 0870ee4d74
commit cd47f86c4a
1 changed files with 1 additions and 3 deletions

View File

@ -311,9 +311,7 @@ private:
MatrixRecord transform;
SetIdentityMatrix( &transform ); // transforms are additive so start from identify matrix
double scaleX = (double) mWidth / mNaturalWidth;
// 2016-05-31 CP remove local flip (via -1.0) since texture coods for media on a prim are now flipped for VLC/CEF
double scaleY = 1.0 * (double) mHeight / mNaturalHeight;
double scaleY = -1.0 * (double) mHeight / mNaturalHeight;
double centerX = mWidth / 2.0;
double centerY = mHeight / 2.0;
ScaleMatrix( &transform, X2Fix( scaleX ), X2Fix( scaleY ), X2Fix( centerX ), X2Fix( centerY ) );