vcl/skia/win/gdiimpl.cxx | 5 -----
1 file changed, 5 deletions(-)
New commits:
commit 0b88a1966f06df048e05a4e8b89688817515fc55
Author: Noel Grandin <[email protected]>
AuthorDate: Fri Aug 22 10:00:22 2025 +0200
Commit: Noel Grandin <[email protected]>
CommitDate: Fri Aug 22 11:53:45 2025 +0200
tdf#167644 UI: The drop down arrows are upside down
regression from
commit 088a7c7c451321a800ca8d3523a18b6bb93239b7
Author: Noel Grandin <[email protected]>
Date: Tue Sep 24 16:18:11 2024 +0200
remove alpha device from OutputDevice
Change-Id: I1323d9f0a42f18fe367d0b851eb8400e25689161
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/190046
Reviewed-by: Noel Grandin <[email protected]>
Tested-by: Jenkins
diff --git a/vcl/skia/win/gdiimpl.cxx b/vcl/skia/win/gdiimpl.cxx
index f26d37fcf491..9a23bf7f2026 100644
--- a/vcl/skia/win/gdiimpl.cxx
+++ b/vcl/skia/win/gdiimpl.cxx
@@ -417,11 +417,6 @@ sk_sp<SkImage> SkiaCompatibleDC::getAsImageDiff(const
SkiaCompatibleDC& white) c
paint.setBlendMode(SkBlendMode::kSrc); // set as is, including alpha
SkCanvas* canvas = surface->getCanvas();
canvas->save();
- // The data we got is upside-down.
- SkMatrix matrix;
- matrix.preTranslate(0, tmpBitmap.height());
- matrix.setConcat(matrix, SkMatrix::Scale(1, -1));
- canvas->concat(matrix);
canvas->drawImage(tmpBitmap.asImage(), 0, 0, SkSamplingOptions(), &paint);
canvas->restore();
return makeCheckedImageSnapshot(surface);