[paint] Fix skew to match Chrome
diff --git a/src/hb-paint.hh b/src/hb-paint.hh
index c4789cf..007e899 100644
--- a/src/hb-paint.hh
+++ b/src/hb-paint.hh
@@ -216,8 +216,8 @@
     if (!sx && !sy)
       return false;
 
-    float x = +tanf (sx * (float) M_PI);
-    float y = -tanf (sy * (float) M_PI);
+    float x = -tanf (sx * (float) M_PI);
+    float y = +tanf (sy * (float) M_PI);
     push_transform (paint_data, 1.f, y, x, 1.f, 0.f, 0.f);
     return true;
   }