Index: core/fxge/skia/fx_skia_device.cpp |
diff --git a/core/fxge/skia/fx_skia_device.cpp b/core/fxge/skia/fx_skia_device.cpp |
index 3c7ce7ee98c37598a8c4093f989bf8d9cdc54b43..a5c509e61f133de24c56106a58a968775d7dc4f2 100644 |
--- a/core/fxge/skia/fx_skia_device.cpp |
+++ b/core/fxge/skia/fx_skia_device.cpp |
@@ -137,7 +137,7 @@ SkMatrix ToSkMatrix(const CFX_Matrix& m) { |
// use when pdf's y-axis points up insead of down |
SkMatrix ToFlippedSkMatrix(const CFX_Matrix& m) { |
SkMatrix skMatrix; |
- skMatrix.setAll(m.a, m.b, m.e, -m.c, -m.d, m.f, 0, 0, 1); |
+ skMatrix.setAll(m.a, -m.b, m.e, m.c, -m.d, m.f, 0, 0, 1); |
return skMatrix; |
} |