зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1006198 - Apply Y flip if necessary to tiled Textures in ImageHost. r=nical
This commit is contained in:
Родитель
c5cedc3cfd
Коммит
5fbdfc89f5
|
@ -124,6 +124,10 @@ ImageHost::Composite(EffectChain& aEffectChain,
|
|||
} else {
|
||||
effect->mTextureCoords = Rect(0, 0, 1, 1);
|
||||
}
|
||||
if (mFrontBuffer->GetFlags() & TextureFlags::NEEDS_Y_FLIP) {
|
||||
effect->mTextureCoords.y = effect->mTextureCoords.YMost();
|
||||
effect->mTextureCoords.height = -effect->mTextureCoords.height;
|
||||
}
|
||||
GetCompositor()->DrawQuad(rect, aClipRect, aEffectChain,
|
||||
aOpacity, aTransform);
|
||||
GetCompositor()->DrawDiagnostics(DiagnosticFlags::IMAGE | DiagnosticFlags::BIGIMAGE,
|
||||
|
|
Загрузка…
Ссылка в новой задаче