summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Third <alan@idiocy.org>2016-09-10 23:46:09 +0100
committerAlan Third <alan@idiocy.org>2016-09-10 23:49:02 +0100
commit0fca290ddff9eabcd2e866b1361cd5b5ba868281 (patch)
treebb7f7053d84835f7b030a161d89e8b36d7adc163
parent68f4b5292781bc331b040105c4079902b993835c (diff)
Invert y coord of NS image files (bug#7847)
* src/nsterm.m (ns_dumpglyphs_image): Invert y co-ordinate of the image when compositing.
-rw-r--r--src/nsterm.m3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/nsterm.m b/src/nsterm.m
index ceda30bd46..26977e47fb 100644
--- a/src/nsterm.m
+++ b/src/nsterm.m
@@ -3478,7 +3478,8 @@ ns_dumpglyphs_image (struct glyph_string *s, NSRect r)
{
#ifdef NS_IMPL_COCOA
NSRect dr = NSMakeRect (x, y, s->slice.width, s->slice.height);
- NSRect ir = NSMakeRect (s->slice.x, s->slice.y,
+ NSRect ir = NSMakeRect (s->slice.x,
+ s->img->height - s->slice.y - s->slice.height,
s->slice.width, s->slice.height);
[img drawInRect: dr
fromRect: ir