зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1212664 - Perform y-inversion correctly when dumping compositor surface. r=jrmuizel
--HG-- extra : source : d378fad1aa9ceb67dbfcc7afaf5138542b292459
This commit is contained in:
Родитель
be95718e8b
Коммит
541fb0cd68
|
@ -560,8 +560,8 @@ YInvertImageSurface(DataSourceSurface* aSurf)
|
|||
return nullptr;
|
||||
}
|
||||
|
||||
dt->SetTransform(Matrix::Translation(0.0, aSurf->GetSize().height) *
|
||||
Matrix::Scaling(1.0, -1.0));
|
||||
dt->SetTransform(Matrix::Scaling(1.0, -1.0) *
|
||||
Matrix::Translation(0.0, aSurf->GetSize().height));
|
||||
Rect rect(0, 0, aSurf->GetSize().width, aSurf->GetSize().height);
|
||||
dt->DrawSurface(aSurf, rect, rect, DrawSurfaceOptions(),
|
||||
DrawOptions(1.0, CompositionOp::OP_SOURCE, AntialiasMode::NONE));
|
||||
|
|
Загрузка…
Ссылка в новой задаче