Simplify vflist_get_formatted()
[geeqie.git] / src / renderer-tiles.c
1 /*
2  * Copyright (C) 2006 John Ellis
3  * Copyright (C) 2008 - 2021 The Geeqie Team
4  *
5  * Author: John Ellis
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License along
18  * with this program; if not, write to the Free Software Foundation, Inc.,
19  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20  */
21
22 #include <stdio.h>
23 #include <stdlib.h>
24 #include <string.h>
25 #include <math.h>
26
27 #include "main.h"
28 #include "pixbuf-renderer.h"
29 #include "renderer-tiles.h"
30
31 #include "intl.h"
32 #include "layout.h"
33
34 #include <gtk/gtk.h>
35
36
37 /* comment this out if not using this from within Geeqie
38  * defining GQ_BUILD does these things:
39  *   - Sets the shift-click scroller pixbuf to a nice icon instead of a black box
40  */
41 #define GQ_BUILD 1
42
43 #ifdef GQ_BUILD
44 #include "main.h"
45 #include "pixbuf_util.h"
46 #include "exif.h"
47 #else
48 typedef enum {
49         EXIF_ORIENTATION_UNKNOWN        = 0,
50         EXIF_ORIENTATION_TOP_LEFT       = 1,
51         EXIF_ORIENTATION_TOP_RIGHT      = 2,
52         EXIF_ORIENTATION_BOTTOM_RIGHT   = 3,
53         EXIF_ORIENTATION_BOTTOM_LEFT    = 4,
54         EXIF_ORIENTATION_LEFT_TOP       = 5,
55         EXIF_ORIENTATION_RIGHT_TOP      = 6,
56         EXIF_ORIENTATION_RIGHT_BOTTOM   = 7,
57         EXIF_ORIENTATION_LEFT_BOTTOM    = 8
58 } ExifOrientationType;
59 #endif
60
61 typedef struct _ImageTile ImageTile;
62 typedef struct _QueueData QueueData;
63
64 struct _ImageTile
65 {
66         cairo_surface_t *surface;       /* off screen buffer */
67         GdkPixbuf *pixbuf;      /* pixbuf area for zooming */
68         gint x;                 /* x offset into image */
69         gint y;                 /* y offset into image */
70         gint w;                 /* width that is visible (may be less if at edge of image) */
71         gint h;                 /* height '' */
72
73         gboolean blank;
74
75 /* render_todo: (explanation)
76         NONE    do nothing
77         AREA    render area of tile, usually only used when loading an image
78                 note: will jump to an ALL if render_done is not ALL.
79         ALL     render entire tile, if never done before w/ ALL, for expose events *only*
80 */
81
82         ImageRenderType render_todo;    /* what to do (see above) */
83         ImageRenderType render_done;    /* highest that has been done before on tile */
84
85         QueueData *qd;
86         QueueData *qd2;
87
88         guint size;             /* est. memory used by pixmap and pixbuf */
89 };
90
91 struct _QueueData
92 {
93         ImageTile *it;
94         gint x;
95         gint y;
96         gint w;
97         gint h;
98         gboolean new_data;
99 };
100
101 typedef struct _OverlayData OverlayData;
102 struct _OverlayData
103 {
104         gint id;
105
106         GdkPixbuf *pixbuf;
107         GdkWindow *window;
108
109         gint x;
110         gint y;
111
112         OverlayRendererFlags flags;
113 };
114
115 typedef struct _RendererTiles RendererTiles;
116
117 struct _RendererTiles
118 {
119         RendererFuncs f;
120         PixbufRenderer *pr;
121
122         gint tile_cache_max;            /* max MiB to use for offscreen buffer */
123
124         gint tile_width;
125         gint tile_height;
126         gint tile_cols;         /* count of tile columns */
127         GList *tiles;           /* list of buffer tiles */
128         gint tile_cache_size;   /* allocated size of pixmaps/pixbufs */
129         GList *draw_queue;      /* list of areas to redraw */
130         GList *draw_queue_2pass;/* list when 2 pass is enabled */
131
132         GList *overlay_list;
133         cairo_surface_t *overlay_buffer;
134         cairo_surface_t *surface;
135
136         guint draw_idle_id; /* event source id */
137
138         GdkPixbuf *spare_tile;
139
140         gint stereo_mode;
141         gint stereo_off_x;
142         gint stereo_off_y;
143
144         gint x_scroll;  /* allow local adjustment and mirroring */
145         gint y_scroll;
146
147         gint hidpi_scale;
148 };
149
150
151
152 static void rt_border_draw(RendererTiles *rt, gint x, gint y, gint w, gint h);
153 static void rt_overlay_draw(RendererTiles *rt, gint x, gint y, gint w, gint h, ImageTile *it);
154
155
156 static void rt_tile_free_all(RendererTiles *rt);
157 static void rt_tile_invalidate_region(RendererTiles *rt, gint x, gint y, gint w, gint h);
158 static gboolean rt_tile_is_visible(RendererTiles *rt, ImageTile *it);
159 static void rt_queue_clear(RendererTiles *rt);
160 static void rt_queue_merge(QueueData *parent, QueueData *qd);
161 static void rt_queue(RendererTiles *rt, gint x, gint y, gint w, gint h,
162                      gint clamp, ImageRenderType render, gboolean new_data, gboolean only_existing);
163
164 static void rt_hierarchy_changed_cb(GtkWidget *widget, GtkWidget *previous_toplevel, gpointer data);
165 static gint rt_queue_draw_idle_cb(gpointer data);
166
167 #define GET_RIGHT_PIXBUF_OFFSET(rt) \
168         (( (rt->stereo_mode & PR_STEREO_RIGHT) && !(rt->stereo_mode & PR_STEREO_SWAP)) || \
169          (!(rt->stereo_mode & PR_STEREO_RIGHT) &&  (rt->stereo_mode & PR_STEREO_SWAP)) ?  \
170           rt->pr->stereo_pixbuf_offset_right : rt->pr->stereo_pixbuf_offset_left )
171
172 #define GET_LEFT_PIXBUF_OFFSET(rt) \
173         ((!(rt->stereo_mode & PR_STEREO_RIGHT) && !(rt->stereo_mode & PR_STEREO_SWAP)) || \
174          ( (rt->stereo_mode & PR_STEREO_RIGHT) &&  (rt->stereo_mode & PR_STEREO_SWAP)) ?  \
175           rt->pr->stereo_pixbuf_offset_right : rt->pr->stereo_pixbuf_offset_left )
176
177
178 static void rt_sync_scroll(RendererTiles *rt)
179 {
180         PixbufRenderer *pr = rt->pr;
181
182         rt->x_scroll = (rt->stereo_mode & PR_STEREO_MIRROR) ?
183                        pr->width - pr->vis_width - pr->x_scroll
184                        : pr->x_scroll;
185
186         rt->y_scroll = (rt->stereo_mode & PR_STEREO_FLIP) ?
187                        pr->height - pr->vis_height - pr->y_scroll
188                        : pr->y_scroll;
189 }
190
191 /*
192  *-------------------------------------------------------------------
193  * borders
194  *-------------------------------------------------------------------
195  */
196
197 static void rt_border_draw(RendererTiles *rt, gint x, gint y, gint w, gint h)
198 {
199         PixbufRenderer *pr = rt->pr;
200         GtkWidget *box;
201         GdkWindow *window;
202         gint rx, ry, rw, rh;
203         cairo_t *cr;
204
205         box = GTK_WIDGET(pr);
206         window = gtk_widget_get_window(box);
207
208         if (!window) return;
209
210 #if GTK_CHECK_VERSION(3,0,0)
211         cr = cairo_create(rt->surface);
212 #else
213         cr = gdk_cairo_create(window);
214 #endif
215
216         if (!pr->pixbuf && !pr->source_tiles_enabled)
217                 {
218                 if (pr_clip_region(x, y, w, h,
219                                    0, 0,
220                                    pr->viewport_width, pr->viewport_height,
221                                    &rx, &ry, &rw, &rh))
222                         {
223                         cairo_set_source_rgb(cr, (double)pr->color.red/65535, (double)pr->color.green/65535, (double)pr->color.blue/65535);
224                         cairo_rectangle(cr, rx + rt->stereo_off_x, ry + rt->stereo_off_y, rw, rh);
225                         cairo_fill(cr);
226                         rt_overlay_draw(rt, rx, ry, rw, rh, NULL);
227                         }
228                 cairo_destroy(cr);
229                 return;
230                 }
231
232         if (pr->vis_width < pr->viewport_width)
233                 {
234                 if (pr->x_offset > 0 &&
235                     pr_clip_region(x, y, w, h,
236                                    0, 0,
237                                    pr->x_offset, pr->viewport_height,
238                                    &rx, &ry, &rw, &rh))
239                         {
240                         cairo_set_source_rgb(cr, (double)pr->color.red/65535, (double)pr->color.green/65535, (double)pr->color.blue/65535);
241                         cairo_rectangle(cr, rx + rt->stereo_off_x, ry + rt->stereo_off_y, rw, rh);
242                         cairo_fill(cr);
243                         rt_overlay_draw(rt, rx, ry, rw, rh, NULL);
244                         }
245                 if (pr->viewport_width - pr->vis_width - pr->x_offset > 0 &&
246                     pr_clip_region(x, y, w, h,
247                                    pr->x_offset + pr->vis_width, 0,
248                                    pr->viewport_width - pr->vis_width - pr->x_offset, pr->viewport_height,
249                                    &rx, &ry, &rw, &rh))
250                         {
251                         cairo_set_source_rgb(cr, (double)pr->color.red/65535, (double)pr->color.green/65535, (double)pr->color.blue/65535);
252                         cairo_rectangle(cr, rx + rt->stereo_off_x, ry + rt->stereo_off_y, rw, rh);
253                         cairo_fill(cr);
254                         rt_overlay_draw(rt, rx, ry, rw, rh, NULL);
255                         }
256                 }
257         if (pr->vis_height < pr->viewport_height)
258                 {
259                 if (pr->y_offset > 0 &&
260                     pr_clip_region(x, y, w, h,
261                                    pr->x_offset, 0,
262                                    pr->vis_width, pr->y_offset,
263                                    &rx, &ry, &rw, &rh))
264                         {
265                         cairo_set_source_rgb(cr, (double)pr->color.red/65535, (double)pr->color.green/65535, (double)pr->color.blue/65535);
266                         cairo_rectangle(cr, rx + rt->stereo_off_x, ry + rt->stereo_off_y, rw, rh);
267                         cairo_fill(cr);
268                         rt_overlay_draw(rt, rx, ry, rw, rh, NULL);
269                         }
270                 if (pr->viewport_height - pr->vis_height - pr->y_offset > 0 &&
271                     pr_clip_region(x, y, w, h,
272                                    pr->x_offset, pr->y_offset + pr->vis_height,
273                                    pr->vis_width, pr->viewport_height - pr->vis_height - pr->y_offset,
274                                    &rx, &ry, &rw, &rh))
275                         {
276                         cairo_set_source_rgb(cr, (double)pr->color.red/65535, (double)pr->color.green/65535, (double)pr->color.blue/65535);
277                         cairo_rectangle(cr, rx + rt->stereo_off_x, ry + rt->stereo_off_y, rw, rh);
278                         cairo_fill(cr);
279                         rt_overlay_draw(rt, rx, ry, rw, rh, NULL);
280                         }
281                 }
282         cairo_destroy(cr);
283 }
284
285 static void rt_border_clear(RendererTiles *rt)
286 {
287         PixbufRenderer *pr = rt->pr;
288         rt_border_draw(rt, 0, 0, pr->viewport_width, pr->viewport_height);
289 }
290
291
292 /*
293  *-------------------------------------------------------------------
294  * display tiles
295  *-------------------------------------------------------------------
296  */
297
298 static ImageTile *rt_tile_new(gint x, gint y, gint width, gint height)
299 {
300         ImageTile *it;
301
302         it = g_new0(ImageTile, 1);
303
304         it->x = x;
305         it->y = y;
306         it->w = width;
307         it->h = height;
308
309         it->render_done = TILE_RENDER_NONE;
310
311         return it;
312 }
313
314 static void rt_tile_free(ImageTile *it)
315 {
316         if (!it) return;
317
318         if (it->pixbuf) g_object_unref(it->pixbuf);
319         if (it->surface) cairo_surface_destroy(it->surface);
320
321         g_free(it);
322 }
323
324 static void rt_tile_free_all(RendererTiles *rt)
325 {
326         GList *work;
327
328         work = rt->tiles;
329         while (work)
330                 {
331                 ImageTile *it;
332
333                 it = work->data;
334                 work = work->next;
335
336                 rt_tile_free(it);
337                 }
338
339         g_list_free(rt->tiles);
340         rt->tiles = NULL;
341         rt->tile_cache_size = 0;
342 }
343
344 static ImageTile *rt_tile_add(RendererTiles *rt, gint x, gint y)
345 {
346         PixbufRenderer *pr = rt->pr;
347         ImageTile *it;
348
349         it = rt_tile_new(x, y, rt->tile_width, rt->tile_height);
350
351         if (it->x + it->w > pr->width) it->w = pr->width - it->x;
352         if (it->y + it->h > pr->height) it->h = pr->height - it->y;
353
354         rt->tiles = g_list_prepend(rt->tiles, it);
355         rt->tile_cache_size += it->size;
356
357         return it;
358 }
359
360 static void rt_tile_remove(RendererTiles *rt, ImageTile *it)
361 {
362         if (it->qd)
363                 {
364                 QueueData *qd = it->qd;
365
366                 it->qd = NULL;
367                 rt->draw_queue = g_list_remove(rt->draw_queue, qd);
368                 g_free(qd);
369                 }
370
371         if (it->qd2)
372                 {
373                 QueueData *qd = it->qd2;
374
375                 it->qd2 = NULL;
376                 rt->draw_queue_2pass = g_list_remove(rt->draw_queue_2pass, qd);
377                 g_free(qd);
378                 }
379
380         rt->tiles = g_list_remove(rt->tiles, it);
381         rt->tile_cache_size -= it->size;
382
383         rt_tile_free(it);
384 }
385
386 static void rt_tile_free_space(RendererTiles *rt, guint space, ImageTile *it)
387 {
388         PixbufRenderer *pr = rt->pr;
389         GList *work;
390         guint tile_max;
391
392         work = g_list_last(rt->tiles);
393
394         if (pr->source_tiles_enabled && pr->scale < 1.0)
395                 {
396                 gint tiles;
397
398                 tiles = (pr->vis_width / rt->tile_width + 1) * (pr->vis_height / rt->tile_height + 1);
399                 tile_max = MAX(tiles * rt->tile_width * rt->tile_height * 3,
400                                (gint)((gdouble)rt->tile_cache_max * 1048576.0 * pr->scale));
401                 }
402         else
403                 {
404                 tile_max = rt->tile_cache_max * 1048576;
405                 }
406
407         while (work && rt->tile_cache_size + space > tile_max)
408                 {
409                 ImageTile *needle;
410
411                 needle = work->data;
412                 work = work->prev;
413                 if (needle != it &&
414                     ((!needle->qd && !needle->qd2) || !rt_tile_is_visible(rt, needle))) rt_tile_remove(rt, needle);
415                 }
416 }
417
418 static void rt_tile_invalidate_all(RendererTiles *rt)
419 {
420         PixbufRenderer *pr = rt->pr;
421         GList *work;
422
423         work = rt->tiles;
424         while (work)
425                 {
426                 ImageTile *it;
427
428                 it = work->data;
429                 work = work->next;
430
431                 it->render_done = TILE_RENDER_NONE;
432                 it->render_todo = TILE_RENDER_ALL;
433                 it->blank = FALSE;
434
435                 it->w = MIN(rt->tile_width, pr->width - it->x);
436                 it->h = MIN(rt->tile_height, pr->height - it->y);
437                 }
438 }
439
440 static void rt_tile_invalidate_region(RendererTiles *rt, gint x, gint y, gint w, gint h)
441 {
442         gint x1, x2;
443         gint y1, y2;
444         GList *work;
445
446         x1 = ROUND_DOWN(x, rt->tile_width);
447         x2 = ROUND_UP(x + w, rt->tile_width);
448
449         y1 = ROUND_DOWN(y, rt->tile_height);
450         y2 = ROUND_UP(y + h, rt->tile_height);
451
452         work = rt->tiles;
453         while (work)
454                 {
455                 ImageTile *it;
456
457                 it = work->data;
458                 work = work->next;
459
460                 if (it->x < x2 && it->x + it->w > x1 &&
461                     it->y < y2 && it->y + it->h > y1)
462                         {
463                         it->render_done = TILE_RENDER_NONE;
464                         it->render_todo = TILE_RENDER_ALL;
465                         }
466                 }
467 }
468
469 static ImageTile *rt_tile_get(RendererTiles *rt, gint x, gint y, gboolean only_existing)
470 {
471         GList *work;
472
473         work = rt->tiles;
474         while (work)
475                 {
476                 ImageTile *it;
477
478                 it = work->data;
479                 if (it->x == x && it->y == y)
480                         {
481                         rt->tiles = g_list_delete_link(rt->tiles, work);
482                         rt->tiles = g_list_prepend(rt->tiles, it);
483                         return it;
484                         }
485
486                 work = work->next;
487                 }
488
489         if (only_existing) return NULL;
490
491         return rt_tile_add(rt, x, y);
492 }
493
494 static gint pixmap_calc_size(cairo_surface_t *surface)
495 {
496 //      gint w, h, d;
497
498 //      d = gdk_drawable_get_depth(pixmap);
499 //      gdk_drawable_get_size(pixmap, &w, &h);
500         return options->image.tile_size * options->image.tile_size * 4 / 8;
501 }
502
503 static void rt_hidpi_aware_draw(
504         RendererTiles *rt,
505         cairo_t *cr,
506         GdkPixbuf *pixbuf,
507         double x,
508         double y)
509 {
510 #if GTK_CHECK_VERSION(3, 10, 0)
511         cairo_surface_t *surface;
512         surface = gdk_cairo_surface_create_from_pixbuf(pixbuf, rt->hidpi_scale, NULL);
513         cairo_set_source_surface(cr, surface, x, y);
514         cairo_fill(cr);
515         cairo_surface_destroy(surface);
516 #else
517         gdk_cairo_set_source_pixbuf(cr, pixbuf, x, y);
518         cairo_fill(cr);
519 #endif
520 }
521
522 static void rt_tile_prepare(RendererTiles *rt, ImageTile *it)
523 {
524         PixbufRenderer *pr = rt->pr;
525         if (!it->surface)
526                 {
527                 cairo_surface_t *surface;
528                 guint size;
529
530                 surface = gdk_window_create_similar_surface(gtk_widget_get_window((GtkWidget *)pr),
531                                                             CAIRO_CONTENT_COLOR,
532                                                             rt->tile_width, rt->tile_height);
533
534                 size = pixmap_calc_size(surface) * rt->hidpi_scale * rt->hidpi_scale;
535                 rt_tile_free_space(rt, size, it);
536
537                 it->surface = surface;
538                 it->size += size;
539                 rt->tile_cache_size += size;
540                 }
541
542         if (!it->pixbuf)
543                 {
544                 GdkPixbuf *pixbuf;
545                 guint size;
546                 pixbuf = gdk_pixbuf_new(GDK_COLORSPACE_RGB, FALSE, 8, rt->hidpi_scale * rt->tile_width, rt->hidpi_scale * rt->tile_height);
547
548                 size = gdk_pixbuf_get_rowstride(pixbuf) * rt->tile_height * rt->hidpi_scale;
549                 rt_tile_free_space(rt, size, it);
550
551                 it->pixbuf = pixbuf;
552                 it->size += size;
553                 rt->tile_cache_size += size;
554                 }
555 }
556
557 /*
558  *-------------------------------------------------------------------
559  * overlays
560  *-------------------------------------------------------------------
561  */
562
563 static void rt_overlay_get_position(RendererTiles *rt, OverlayData *od,
564                                     gint *x, gint *y, gint *w, gint *h)
565 {
566         PixbufRenderer *pr = rt->pr;
567         gint px, py, pw, ph;
568
569         pw = gdk_pixbuf_get_width(od->pixbuf);
570         ph = gdk_pixbuf_get_height(od->pixbuf);
571         px = od->x;
572         py = od->y;
573
574         if (od->flags & OVL_RELATIVE)
575                 {
576                 if (px < 0) px = pr->viewport_width - pw + px;
577                 if (py < 0) py = pr->viewport_height - ph + py;
578                 }
579
580         if (x) *x = px;
581         if (y) *y = py;
582         if (w) *w = pw;
583         if (h) *h = ph;
584 }
585
586 static void rt_overlay_init_window(RendererTiles *rt, OverlayData *od)
587 {
588         PixbufRenderer *pr = rt->pr;
589         gint px, py, pw, ph;
590         GdkWindowAttr attributes;
591         gint attributes_mask;
592
593         rt_overlay_get_position(rt, od, &px, &py, &pw, &ph);
594
595         attributes.window_type = GDK_WINDOW_CHILD;
596         attributes.wclass = GDK_INPUT_OUTPUT;
597         attributes.width = pw;
598         attributes.height = ph;
599         attributes.event_mask = GDK_EXPOSURE_MASK;
600         attributes_mask = 0;
601
602         od->window = gdk_window_new(gtk_widget_get_window(GTK_WIDGET(pr)), &attributes, attributes_mask);
603         gdk_window_set_user_data(od->window, pr);
604         gdk_window_move(od->window, px + rt->stereo_off_x, py + rt->stereo_off_y);
605 #if !GTK_CHECK_VERSION(3,0,0)
606         gdk_window_show(od->window);
607 #endif
608 }
609
610 static void rt_overlay_draw(RendererTiles *rt, gint x, gint y, gint w, gint h,
611                             ImageTile *it)
612 {
613         PixbufRenderer *pr = rt->pr;
614         GList *work;
615
616         work = rt->overlay_list;
617         while (work)
618                 {
619                 OverlayData *od;
620                 gint px, py, pw, ph;
621                 gint rx, ry, rw, rh;
622
623                 od = work->data;
624                 work = work->next;
625
626                 if (!od->window) rt_overlay_init_window(rt, od);
627
628                 rt_overlay_get_position(rt, od, &px, &py, &pw, &ph);
629                 if (pr_clip_region(x, y, w, h, px, py, pw, ph, &rx, &ry, &rw, &rh))
630                         {
631                         if (!rt->overlay_buffer)
632                                 {
633                                 rt->overlay_buffer = gdk_window_create_similar_surface(gtk_widget_get_window((GtkWidget *)pr),
634                                                             CAIRO_CONTENT_COLOR,
635                                                             rt->tile_width, rt->tile_height);
636                                 }
637
638                         if (it)
639                                 {
640                                 cairo_t *cr;
641
642                                 cr = cairo_create(rt->overlay_buffer);
643                                 cairo_set_source_surface(cr, it->surface, (pr->x_offset + (it->x - rt->x_scroll)) - rx, (pr->y_offset + (it->y - rt->y_scroll)) - ry);
644                                 cairo_rectangle(cr, 0, 0, rw, rh);
645                                 cairo_fill_preserve(cr);
646
647                                 gdk_cairo_set_source_pixbuf(cr, od->pixbuf, px - rx, py - ry);
648                                 cairo_fill(cr);
649                                 cairo_destroy (cr);
650
651                                 cr = gdk_cairo_create(od->window);
652                                 cairo_set_source_surface(cr, rt->overlay_buffer, rx - px, ry - py);
653                                 cairo_rectangle (cr, rx - px, ry - py, rw, rh);
654                                 cairo_fill (cr);
655                                 cairo_destroy (cr);
656                                 }
657                         else
658                                 {
659                                 /* no ImageTile means region may be larger than our scratch buffer */
660                                 gint sx, sy;
661
662                                 for (sx = rx; sx < rx + rw; sx += rt->tile_width)
663                                     for (sy = ry; sy < ry + rh; sy += rt->tile_height)
664                                         {
665                                         gint sw, sh;
666                                         cairo_t *cr;
667
668                                         sw = MIN(rx + rw - sx, rt->tile_width);
669                                         sh = MIN(ry + rh - sy, rt->tile_height);
670
671                                         cr = cairo_create(rt->overlay_buffer);
672                                         cairo_set_source_rgb(cr, 0, 0, 0);
673                                         cairo_rectangle(cr, 0, 0, sw, sh);
674                                         cairo_fill_preserve(cr);
675
676                                         gdk_cairo_set_source_pixbuf(cr, od->pixbuf, px - sx, py - sy);
677                                         cairo_fill (cr);
678                                         cairo_destroy (cr);
679
680                                         cr = gdk_cairo_create(od->window);
681                                         cairo_set_source_surface(cr, rt->overlay_buffer, sx - px, sy - py);
682                                         cairo_rectangle (cr, sx - px, sy - py, sw, sh);
683                                         cairo_fill(cr);
684                                         cairo_destroy(cr);
685                                         }
686                                 }
687                         }
688                 }
689 }
690
691 static void rt_overlay_queue_draw(RendererTiles *rt, OverlayData *od, gint x1, gint y1, gint x2, gint y2)
692 {
693         PixbufRenderer *pr = rt->pr;
694         gint x, y, w, h;
695
696         rt_overlay_get_position(rt, od, &x, &y, &w, &h);
697
698         /* add borders */
699         x -= x1;
700         y -= y1;
701         w += x1 + x2;
702         h += y1 + y2;
703
704         rt_queue(rt, rt->x_scroll - pr->x_offset + x,
705                  rt->y_scroll - pr->y_offset + y,
706                  w, h,
707                  FALSE, TILE_RENDER_ALL, FALSE, FALSE);
708
709         rt_border_draw(rt, x, y, w, h);
710 }
711
712 static void rt_overlay_queue_all(RendererTiles *rt, gint x1, gint y1, gint x2, gint y2)
713 {
714         GList *work;
715
716         work = rt->overlay_list;
717         while (work)
718                 {
719                 OverlayData *od = work->data;
720                 work = work->next;
721
722                 rt_overlay_queue_draw(rt, od, x1, y1, x2, y2);
723                 }
724 }
725
726 static void rt_overlay_update_sizes(RendererTiles *rt)
727 {
728         GList *work;
729
730         work = rt->overlay_list;
731         while (work)
732                 {
733                 OverlayData *od = work->data;
734                 work = work->next;
735
736                 if (!od->window) rt_overlay_init_window(rt, od);
737
738                 if (od->flags & OVL_RELATIVE)
739                         {
740                         gint x, y, w, h;
741
742                         rt_overlay_get_position(rt, od, &x, &y, &w, &h);
743                         gdk_window_move_resize(od->window, x + rt->stereo_off_x, y + rt->stereo_off_y, w, h);
744                         }
745                 }
746 }
747
748 static OverlayData *rt_overlay_find(RendererTiles *rt, gint id)
749 {
750         GList *work;
751
752         work = rt->overlay_list;
753         while (work)
754                 {
755                 OverlayData *od = work->data;
756                 work = work->next;
757
758                 if (od->id == id) return od;
759                 }
760
761         return NULL;
762 }
763
764
765 gint renderer_tiles_overlay_add(void *renderer, GdkPixbuf *pixbuf, gint x, gint y,
766                                  OverlayRendererFlags flags)
767 {
768         RendererTiles *rt = (RendererTiles *) renderer;
769         PixbufRenderer *pr = rt->pr;
770         OverlayData *od;
771         gint id;
772
773         g_return_val_if_fail(IS_PIXBUF_RENDERER(pr), -1);
774         g_return_val_if_fail(pixbuf != NULL, -1);
775
776         id = 1;
777         while (rt_overlay_find(rt, id)) id++;
778
779         od = g_new0(OverlayData, 1);
780         od->id = id;
781         od->pixbuf = pixbuf;
782         g_object_ref(G_OBJECT(od->pixbuf));
783         od->x = x;
784         od->y = y;
785         od->flags = flags;
786
787         rt_overlay_init_window(rt, od);
788
789         rt->overlay_list = g_list_append(rt->overlay_list, od);
790
791 #if GTK_CHECK_VERSION(3,0,0)
792         gtk_widget_queue_draw(GTK_WIDGET(rt->pr));
793 #else
794         rt_overlay_queue_draw(rt, od, 0, 0, 0, 0);
795 #endif
796
797         return od->id;
798 }
799
800 static void rt_overlay_free(RendererTiles *rt, OverlayData *od)
801 {
802         rt->overlay_list = g_list_remove(rt->overlay_list, od);
803
804         if (od->pixbuf) g_object_unref(G_OBJECT(od->pixbuf));
805         if (od->window) gdk_window_destroy(od->window);
806         g_free(od);
807
808         if (!rt->overlay_list && rt->overlay_buffer)
809                 {
810                 cairo_surface_destroy(rt->overlay_buffer);
811                 rt->overlay_buffer = NULL;
812                 }
813 }
814
815 static void rt_overlay_list_clear(RendererTiles *rt)
816 {
817         while (rt->overlay_list)
818                 {
819                 OverlayData *od;
820
821                 od = rt->overlay_list->data;
822                 rt_overlay_free(rt, od);
823                 }
824 }
825
826 static void rt_overlay_list_reset_window(RendererTiles *rt)
827 {
828         GList *work;
829
830         if (rt->overlay_buffer) cairo_surface_destroy(rt->overlay_buffer);
831         rt->overlay_buffer = NULL;
832
833         work = rt->overlay_list;
834         while (work)
835                 {
836                 OverlayData *od = work->data;
837                 work = work->next;
838                 if (od->window) gdk_window_destroy(od->window);
839                 od->window = NULL;
840                 }
841 }
842
843 #if GTK_CHECK_VERSION(3,0,0)
844 void renderer_tiles_overlay_set(void *renderer, gint id, GdkPixbuf *pixbuf, gint x, gint y)
845 {
846         RendererTiles *rc = (RendererTiles *)renderer;
847         PixbufRenderer *pr = rc->pr;
848         OverlayData *od;
849
850         g_return_if_fail(IS_PIXBUF_RENDERER(pr));
851
852         od = rt_overlay_find(rc, id);
853         if (!od) return;
854
855         if (pixbuf)
856                 {
857                 g_object_ref(G_OBJECT(pixbuf));
858                 g_object_unref(G_OBJECT(od->pixbuf));
859                 od->pixbuf = pixbuf;
860                 }
861         else
862                 {
863                 rt_overlay_free(rc, od);
864                 }
865 }
866 #else
867 void renderer_tiles_overlay_set(void *renderer, gint id, GdkPixbuf *pixbuf, gint x, gint y)
868 {
869         RendererTiles *rt = (RendererTiles *) renderer;
870         PixbufRenderer *pr = rt->pr;
871         OverlayData *od;
872
873         g_return_if_fail(IS_PIXBUF_RENDERER(pr));
874
875         od = rt_overlay_find(rt, id);
876         if (!od) return;
877
878         if (pixbuf)
879                 {
880                 gint px, py, pw, ph;
881
882                 g_object_ref(G_OBJECT(pixbuf));
883                 g_object_unref(G_OBJECT(od->pixbuf));
884                 od->pixbuf = pixbuf;
885
886                 od->x = x;
887                 od->y = y;
888
889                 if (!od->window) rt_overlay_init_window(rt, od);
890
891                 rt_overlay_queue_draw(rt, od, 0, 0, 0, 0);
892                 rt_overlay_get_position(rt, od, &px, &py, &pw, &ph);
893                 gdk_window_move_resize(od->window, px + rt->stereo_off_x, py + rt->stereo_off_y, pw, ph);
894                 }
895         else
896                 {
897                 rt_overlay_queue_draw(rt, od, 0, 0, 0, 0);
898                 rt_overlay_free(rt, od);
899                 }
900 }
901 #endif
902
903 gboolean renderer_tiles_overlay_get(void *renderer, gint id, GdkPixbuf **pixbuf, gint *x, gint *y)
904 {
905         RendererTiles *rt = (RendererTiles *) renderer;
906         PixbufRenderer *pr = rt->pr;
907         OverlayData *od;
908
909         g_return_val_if_fail(IS_PIXBUF_RENDERER(pr), FALSE);
910
911         od = rt_overlay_find(rt, id);
912         if (!od) return FALSE;
913
914         if (pixbuf) *pixbuf = od->pixbuf;
915         if (x) *x = od->x;
916         if (y) *y = od->y;
917
918         return TRUE;
919 }
920
921 static void rt_hierarchy_changed_cb(GtkWidget *widget, GtkWidget *previous_toplevel, gpointer data)
922 {
923         RendererTiles *rt = data;
924         rt_overlay_list_reset_window(rt);
925 }
926
927 /*
928  *-------------------------------------------------------------------
929  * drawing
930  *-------------------------------------------------------------------
931  */
932
933 static GdkPixbuf *rt_get_spare_tile(RendererTiles *rt)
934 {
935         if (!rt->spare_tile) rt->spare_tile = gdk_pixbuf_new(GDK_COLORSPACE_RGB, FALSE, 8, rt->tile_width * rt->hidpi_scale, rt->tile_height * rt->hidpi_scale);
936         return rt->spare_tile;
937 }
938
939 #define COLOR_BYTES 3   /* rgb */
940
941 static void rt_tile_rotate_90_clockwise(RendererTiles *rt, GdkPixbuf **tile, gint x, gint y, gint w, gint h)
942 {
943         GdkPixbuf *src = *tile;
944         GdkPixbuf *dest;
945         gint srs, drs;
946         guchar *s_pix, *d_pix;
947         guchar *sp, *dp;
948         guchar *ip, *spi, *dpi;
949         gint i, j;
950         gint tw = rt->tile_width * rt->hidpi_scale;
951
952         srs = gdk_pixbuf_get_rowstride(src);
953         s_pix = gdk_pixbuf_get_pixels(src);
954         spi = s_pix + (x * COLOR_BYTES);
955
956         dest = rt_get_spare_tile(rt);
957         drs = gdk_pixbuf_get_rowstride(dest);
958         d_pix = gdk_pixbuf_get_pixels(dest);
959         dpi = d_pix + (tw - 1) * COLOR_BYTES;
960
961         for (i = y; i < y + h; i++)
962                 {
963                 sp = spi + (i * srs);
964                 ip = dpi - (i * COLOR_BYTES);
965                 for (j = x; j < x + w; j++)
966                         {
967                         dp = ip + (j * drs);
968                         memcpy(dp, sp, COLOR_BYTES);
969                         sp += COLOR_BYTES;
970                         }
971                 }
972
973         rt->spare_tile = src;
974         *tile = dest;
975 }
976
977 static void rt_tile_rotate_90_counter_clockwise(RendererTiles *rt, GdkPixbuf **tile, gint x, gint y, gint w, gint h)
978 {
979         GdkPixbuf *src = *tile;
980         GdkPixbuf *dest;
981         gint srs, drs;
982         guchar *s_pix, *d_pix;
983         guchar *sp, *dp;
984         guchar *ip, *spi, *dpi;
985         gint i, j;
986         gint th = rt->tile_height * rt->hidpi_scale;
987
988         srs = gdk_pixbuf_get_rowstride(src);
989         s_pix = gdk_pixbuf_get_pixels(src);
990         spi = s_pix + (x * COLOR_BYTES);
991
992         dest = rt_get_spare_tile(rt);
993         drs = gdk_pixbuf_get_rowstride(dest);
994         d_pix = gdk_pixbuf_get_pixels(dest);
995         dpi = d_pix + (th - 1) * drs;
996
997         for (i = y; i < y + h; i++)
998                 {
999                 sp = spi + (i * srs);
1000                 ip = dpi + (i * COLOR_BYTES);
1001                 for (j = x; j < x + w; j++)
1002                         {
1003                         dp = ip - (j * drs);
1004                         memcpy(dp, sp, COLOR_BYTES);
1005                         sp += COLOR_BYTES;
1006                         }
1007                 }
1008
1009         rt->spare_tile = src;
1010         *tile = dest;
1011 }
1012
1013 static void rt_tile_mirror_only(RendererTiles *rt, GdkPixbuf **tile, gint x, gint y, gint w, gint h)
1014 {
1015         GdkPixbuf *src = *tile;
1016         GdkPixbuf *dest;
1017         gint srs, drs;
1018         guchar *s_pix, *d_pix;
1019         guchar *sp, *dp;
1020         guchar *spi, *dpi;
1021         gint i, j;
1022
1023         gint tw = rt->tile_width * rt->hidpi_scale;
1024
1025         srs = gdk_pixbuf_get_rowstride(src);
1026         s_pix = gdk_pixbuf_get_pixels(src);
1027         spi = s_pix + (x * COLOR_BYTES);
1028
1029         dest = rt_get_spare_tile(rt);
1030         drs = gdk_pixbuf_get_rowstride(dest);
1031         d_pix = gdk_pixbuf_get_pixels(dest);
1032         dpi =  d_pix + (tw - x - 1) * COLOR_BYTES;
1033
1034         for (i = y; i < y + h; i++)
1035                 {
1036                 sp = spi + (i * srs);
1037                 dp = dpi + (i * drs);
1038                 for (j = 0; j < w; j++)
1039                         {
1040                         memcpy(dp, sp, COLOR_BYTES);
1041                         sp += COLOR_BYTES;
1042                         dp -= COLOR_BYTES;
1043                         }
1044                 }
1045
1046         rt->spare_tile = src;
1047         *tile = dest;
1048 }
1049
1050 static void rt_tile_mirror_and_flip(RendererTiles *rt, GdkPixbuf **tile, gint x, gint y, gint w, gint h)
1051 {
1052         GdkPixbuf *src = *tile;
1053         GdkPixbuf *dest;
1054         gint srs, drs;
1055         guchar *s_pix, *d_pix;
1056         guchar *sp, *dp;
1057         guchar *dpi;
1058         gint i, j;
1059         gint tw = rt->tile_width * rt->hidpi_scale;
1060         gint th = rt->tile_height * rt->hidpi_scale;
1061
1062         srs = gdk_pixbuf_get_rowstride(src);
1063         s_pix = gdk_pixbuf_get_pixels(src);
1064
1065         dest = rt_get_spare_tile(rt);
1066         drs = gdk_pixbuf_get_rowstride(dest);
1067         d_pix = gdk_pixbuf_get_pixels(dest);
1068         dpi = d_pix + (th - 1) * drs + (tw - 1) * COLOR_BYTES;
1069
1070         for (i = y; i < y + h; i++)
1071                 {
1072                 sp = s_pix + (i * srs) + (x * COLOR_BYTES);
1073                 dp = dpi - (i * drs) - (x * COLOR_BYTES);
1074                 for (j = 0; j < w; j++)
1075                         {
1076                         memcpy(dp, sp, COLOR_BYTES);
1077                         sp += COLOR_BYTES;
1078                         dp -= COLOR_BYTES;
1079                         }
1080                 }
1081
1082         rt->spare_tile = src;
1083         *tile = dest;
1084 }
1085
1086 static void rt_tile_flip_only(RendererTiles *rt, GdkPixbuf **tile, gint x, gint y, gint w, gint h)
1087 {
1088         GdkPixbuf *src = *tile;
1089         GdkPixbuf *dest;
1090         gint srs, drs;
1091         guchar *s_pix, *d_pix;
1092         guchar *sp, *dp;
1093         guchar *spi, *dpi;
1094         gint i;
1095         gint th = rt->tile_height * rt->hidpi_scale;
1096
1097         srs = gdk_pixbuf_get_rowstride(src);
1098         s_pix = gdk_pixbuf_get_pixels(src);
1099         spi = s_pix + (x * COLOR_BYTES);
1100
1101         dest = rt_get_spare_tile(rt);
1102         drs = gdk_pixbuf_get_rowstride(dest);
1103         d_pix = gdk_pixbuf_get_pixels(dest);
1104         dpi = d_pix + (th - 1) * drs + (x * COLOR_BYTES);
1105
1106         for (i = y; i < y + h; i++)
1107                 {
1108                 sp = spi + (i * srs);
1109                 dp = dpi - (i * drs);
1110                 memcpy(dp, sp, w * COLOR_BYTES);
1111                 }
1112
1113         rt->spare_tile = src;
1114         *tile = dest;
1115 }
1116
1117 static void rt_tile_apply_orientation(RendererTiles *rt, gint orientation, GdkPixbuf **pixbuf, gint x, gint y, gint w, gint h)
1118 {
1119         switch (orientation)
1120                 {
1121                 case EXIF_ORIENTATION_TOP_LEFT:
1122                         /* normal -- nothing to do */
1123                         break;
1124                 case EXIF_ORIENTATION_TOP_RIGHT:
1125                         /* mirrored */
1126                         {
1127                                 rt_tile_mirror_only(rt, pixbuf, x, y, w, h);
1128                         }
1129                         break;
1130                 case EXIF_ORIENTATION_BOTTOM_RIGHT:
1131                         /* upside down */
1132                         {
1133                                 rt_tile_mirror_and_flip(rt, pixbuf, x, y, w, h);
1134                         }
1135                         break;
1136                 case EXIF_ORIENTATION_BOTTOM_LEFT:
1137                         /* flipped */
1138                         {
1139                                 rt_tile_flip_only(rt, pixbuf, x, y, w, h);
1140                         }
1141                         break;
1142                 case EXIF_ORIENTATION_LEFT_TOP:
1143                         {
1144                                 rt_tile_flip_only(rt, pixbuf, x, y, w, h);
1145                                 rt_tile_rotate_90_clockwise(rt, pixbuf, x, rt->tile_height - y - h, w, h);
1146                         }
1147                         break;
1148                 case EXIF_ORIENTATION_RIGHT_TOP:
1149                         /* rotated -90 (270) */
1150                         {
1151                                 rt_tile_rotate_90_clockwise(rt, pixbuf, x, y, w, h);
1152                         }
1153                         break;
1154                 case EXIF_ORIENTATION_RIGHT_BOTTOM:
1155                         {
1156                                 rt_tile_flip_only(rt, pixbuf, x, y, w, h);
1157                                 rt_tile_rotate_90_counter_clockwise(rt, pixbuf, x, rt->tile_height - y - h, w, h);
1158                         }
1159                         break;
1160                 case EXIF_ORIENTATION_LEFT_BOTTOM:
1161                         /* rotated 90 */
1162                         {
1163                                 rt_tile_rotate_90_counter_clockwise(rt, pixbuf, x, y, w, h);
1164                         }
1165                         break;
1166                 default:
1167                         /* The other values are out of range */
1168                         break;
1169                 }
1170 }
1171
1172 static gboolean rt_source_tile_render(RendererTiles *rt, ImageTile *it,
1173                                       gint x, gint y, gint w, gint h,
1174                                       gboolean new_data, gboolean fast)
1175 {
1176         PixbufRenderer *pr = rt->pr;
1177         GList *list;
1178         GList *work;
1179         gboolean draw = FALSE;
1180
1181         if (pr->zoom == 1.0 || pr->scale == 1.0)
1182                 {
1183                 list = pr_source_tile_compute_region(pr, it->x + x, it->y + y, w, h, TRUE);
1184                 work = list;
1185                 while (work)
1186                         {
1187                         SourceTile *st;
1188                         gint rx, ry, rw, rh;
1189
1190                         st = work->data;
1191                         work = work->next;
1192
1193                         if (pr_clip_region(st->x, st->y, pr->source_tile_width, pr->source_tile_height,
1194                                            it->x + x, it->y + y, w, h,
1195                                            &rx, &ry, &rw, &rh))
1196                                 {
1197                                 cairo_t *cr;
1198                                 cr = cairo_create(it->surface);
1199                                 cairo_rectangle (cr, rx - it->x, ry - it->y, rw, rh);
1200
1201                                 if (st->blank)
1202                                         {
1203                                         cairo_set_source_rgb(cr, 0, 0, 0);
1204                                         cairo_fill (cr);
1205                                         }
1206                                 else /* (pr->zoom == 1.0 || pr->scale == 1.0) */
1207                                         {
1208                                         rt_hidpi_aware_draw(rt, cr, st->pixbuf, -it->x + st->x, -it->y + st->y);
1209                                         }
1210                                 cairo_destroy (cr);
1211                                 }
1212                         }
1213                 }
1214         else
1215                 {
1216                 gdouble scale_x, scale_y;
1217                 gint sx, sy, sw, sh;
1218
1219                 if (pr->image_width == 0 || pr->image_height == 0) return FALSE;
1220                 scale_x = (gdouble)pr->width / pr->image_width;
1221                 scale_y = (gdouble)pr->height / pr->image_height;
1222
1223                 sx = (gdouble)(it->x + x) / scale_x;
1224                 sy = (gdouble)(it->y + y) / scale_y;
1225                 sw = (gdouble)w / scale_x;
1226                 sh = (gdouble)h / scale_y;
1227
1228                 if (pr->width < PR_MIN_SCALE_SIZE || pr->height < PR_MIN_SCALE_SIZE) fast = TRUE;
1229
1230 #if 0
1231                 /* draws red over draw region, to check for leaks (regions not filled) */
1232                 pixbuf_set_rect_fill(it->pixbuf, x, y, w, h, 255, 0, 0, 255);
1233 #endif
1234
1235                 list = pr_source_tile_compute_region(pr, sx, sy, sw, sh, TRUE);
1236                 work = list;
1237                 while (work)
1238                         {
1239                         SourceTile *st;
1240                         gint rx, ry, rw, rh;
1241                         gint stx, sty, stw, sth;
1242
1243                         st = work->data;
1244                         work = work->next;
1245
1246                         stx = floor((gdouble)st->x * scale_x);
1247                         sty = floor((gdouble)st->y * scale_y);
1248                         stw = ceil((gdouble)(st->x + pr->source_tile_width) * scale_x) - stx;
1249                         sth = ceil((gdouble)(st->y + pr->source_tile_height) * scale_y) - sty;
1250
1251                         if (pr_clip_region(stx, sty, stw, sth,
1252                                            it->x + x, it->y + y, w, h,
1253                                            &rx, &ry, &rw, &rh))
1254                                 {
1255
1256                                 if (st->blank)
1257                                         {
1258                                         cairo_t *cr;
1259                                         cr = cairo_create(it->surface);
1260                                         cairo_rectangle (cr, rx - st->x, ry - st->y, rw, rh);
1261                                         cairo_set_source_rgb(cr, 0, 0, 0);
1262                                         cairo_fill (cr);
1263                                         cairo_destroy (cr);
1264                                         }
1265                                 else
1266                                         {
1267                                         gdouble offset_x;
1268                                         gdouble offset_y;
1269
1270                                         /* may need to use unfloored stx,sty values here */
1271                                         offset_x = (gdouble)(stx - it->x);
1272                                         offset_y = (gdouble)(sty - it->y);
1273
1274                                         gdk_pixbuf_scale(st->pixbuf, it->pixbuf, rx - it->x, ry - it->y, rw, rh,
1275                                                  (gdouble) 0.0 + offset_x,
1276                                                  (gdouble) 0.0 + offset_y,
1277                                                  scale_x, scale_y,
1278                                                  (fast) ? GDK_INTERP_NEAREST : pr->zoom_quality);
1279                                         draw = TRUE;
1280                                         }
1281                                 }
1282                         }
1283                 }
1284
1285         g_list_free(list);
1286
1287         return draw;
1288 }
1289
1290 /**
1291  * @brief 
1292  * @param has_alpha 
1293  * @param ignore_alpha 
1294  * @param src 
1295  * @param dest 
1296  * @param pb_x 
1297  * @param pb_y 
1298  * @param pb_w 
1299  * @param pb_h 
1300  * @param offset_x 
1301  * @param offset_y 
1302  * @param scale_x 
1303  * @param scale_y 
1304  * @param interp_type 
1305  * @param check_x 
1306  * @param check_y 
1307  * @param wide_image Used as a work-around for a GdkPixbuf problem. Set when image width is > 32767. Problem exhibited with gdk_pixbuf_copy_area() and GDK_INTERP_NEAREST. See #772 on GitHub Geeqie
1308  * 
1309  * 
1310  */
1311 static void rt_tile_get_region(gboolean has_alpha, gboolean ignore_alpha,
1312                                const GdkPixbuf *src, GdkPixbuf *dest,
1313                                int pb_x, int pb_y, int pb_w, int pb_h,
1314                                double offset_x, double offset_y, double scale_x, double scale_y,
1315                                GdkInterpType interp_type,
1316                                int check_x, int check_y, gboolean wide_image)
1317 {
1318         GdkPixbuf* tmppixbuf;
1319         gint srs;
1320         gint drs;
1321         gint x;
1322         gint y;
1323         gint c;
1324         guchar *psrc;
1325         guchar *pdst;
1326
1327         if (!has_alpha)
1328                 {
1329                 if (scale_x == 1.0 && scale_y == 1.0)
1330                         {
1331                         if (wide_image)
1332                                 {
1333                                 srs = gdk_pixbuf_get_rowstride(src);
1334                                 drs = gdk_pixbuf_get_rowstride(dest);
1335                                 psrc = gdk_pixbuf_get_pixels(src);
1336                                 pdst = gdk_pixbuf_get_pixels(dest);
1337                                 for (y = 0; y < pb_h; y++)
1338                                         {
1339                                         for (x = 0; x < pb_w; x++)
1340                                                 {
1341                                                 for (c = 0; c < 3; c++)
1342                                                         {
1343                                                         pdst[(y * drs) + x*3 + c] = psrc[(-(int)offset_y + pb_y + y) * srs + (-(int)offset_x + pb_x+x)*3 + c];
1344                                                         }
1345                                                 }
1346                                         }
1347                                 }
1348                         else
1349                                 {
1350                                 gdk_pixbuf_copy_area(src,
1351                                                                         -offset_x + pb_x, -offset_y + pb_y,
1352                                                                         pb_w, pb_h,
1353                                                                         dest,
1354                                                                         pb_x, pb_y);
1355                                         }
1356                         }
1357                 else
1358                         {
1359                         gdk_pixbuf_scale(src, dest,
1360                                                         pb_x, pb_y, pb_w, pb_h,
1361                                                         offset_x,
1362                                                         offset_y,
1363                                                         scale_x, scale_y,
1364                                                         (wide_image && interp_type == GDK_INTERP_NEAREST) ? GDK_INTERP_TILES : interp_type);
1365                         }
1366                 }
1367         else
1368                 {
1369                 if (ignore_alpha)
1370                         {
1371                         tmppixbuf = gdk_pixbuf_add_alpha(src, FALSE, 0, 0, 0);
1372
1373                         pixbuf_ignore_alpha_rect(tmppixbuf, 0, 0, gdk_pixbuf_get_width(src), gdk_pixbuf_get_height(src));
1374
1375                         gdk_pixbuf_composite_color(tmppixbuf, dest,
1376                                         pb_x, pb_y, pb_w, pb_h,
1377                                         offset_x,
1378                                         offset_y,
1379                                         scale_x, scale_y,
1380                                         (scale_x == 1.0 && scale_y == 1.0) ? GDK_INTERP_NEAREST : interp_type,
1381                                         255, check_x, check_y,
1382                                         PR_ALPHA_CHECK_SIZE,
1383                                         ((options->image.alpha_color_1.red << 8 & 0x00FF0000) +
1384                                         (options->image.alpha_color_1.green & 0x00FF00) +
1385                                         (options->image.alpha_color_1.blue >> 8 & 0x00FF)),
1386                                         ((options->image.alpha_color_2.red << 8 & 0x00FF0000) +
1387                                         (options->image.alpha_color_2.green & 0x00FF00) +
1388                                         (options->image.alpha_color_2.blue >> 8 & 0x00FF)));
1389                         g_object_unref(tmppixbuf);
1390                         }
1391                 else
1392                         {
1393                         gdk_pixbuf_composite_color(src, dest,
1394                                         pb_x, pb_y, pb_w, pb_h,
1395                                         offset_x,
1396                                         offset_y,
1397                                         scale_x, scale_y,
1398                                         (scale_x == 1.0 && scale_y == 1.0) ? GDK_INTERP_NEAREST : interp_type,
1399                                         255, check_x, check_y,
1400                                         PR_ALPHA_CHECK_SIZE,
1401                                         ((options->image.alpha_color_1.red << 8 & 0x00FF0000) +
1402                                         (options->image.alpha_color_1.green & 0x00FF00) +
1403                                         (options->image.alpha_color_1.blue >> 8 & 0x00FF)),
1404                                         ((options->image.alpha_color_2.red << 8 & 0x00FF0000) +
1405                                         (options->image.alpha_color_2.green & 0x00FF00) +
1406                                         (options->image.alpha_color_2.blue >> 8 & 0x00FF)));
1407                         }
1408                 }
1409 }
1410
1411
1412 static gint rt_get_orientation(RendererTiles *rt)
1413 {
1414         PixbufRenderer *pr = rt->pr;
1415
1416         gint orientation = pr->orientation;
1417         static const gint mirror[]       = {1,   2, 1, 4, 3, 6, 5, 8, 7};
1418         static const gint flip[]         = {1,   4, 3, 2, 1, 8, 7, 6, 5};
1419
1420         if (rt->stereo_mode & PR_STEREO_MIRROR) orientation = mirror[orientation];
1421         if (rt->stereo_mode & PR_STEREO_FLIP) orientation = flip[orientation];
1422         return orientation;
1423 }
1424
1425
1426 static void rt_tile_render(RendererTiles *rt, ImageTile *it,
1427                            gint x, gint y, gint w, gint h,
1428                            gboolean new_data, gboolean fast)
1429 {
1430         PixbufRenderer *pr = rt->pr;
1431         gboolean has_alpha;
1432         gboolean draw = FALSE;
1433         gint orientation = rt_get_orientation(rt);
1434         gboolean wide_image = FALSE;
1435
1436         if (it->render_todo == TILE_RENDER_NONE && it->surface && !new_data) return;
1437
1438         if (it->render_done != TILE_RENDER_ALL)
1439                 {
1440                 x = 0;
1441                 y = 0;
1442                 w = it->w;
1443                 h = it->h;
1444                 if (!fast) it->render_done = TILE_RENDER_ALL;
1445                 }
1446         else if (it->render_todo != TILE_RENDER_AREA)
1447                 {
1448                 if (!fast) it->render_todo = TILE_RENDER_NONE;
1449                 return;
1450                 }
1451
1452         if (!fast) it->render_todo = TILE_RENDER_NONE;
1453
1454         if (new_data) it->blank = FALSE;
1455
1456         rt_tile_prepare(rt, it);
1457         has_alpha = (pr->pixbuf && gdk_pixbuf_get_has_alpha(pr->pixbuf));
1458
1459         /** @FIXME checker colors for alpha should be configurable,
1460          * also should be drawn for blank = TRUE
1461          */
1462
1463         if (it->blank)
1464                 {
1465                 /* no data, do fast rect fill */
1466                 cairo_t *cr;
1467                 cr = cairo_create(it->surface);
1468                 cairo_rectangle (cr, 0, 0, it->w, it->h);
1469                 cairo_set_source_rgb(cr, 0, 0, 0);
1470                 cairo_fill (cr);
1471                 cairo_destroy (cr);
1472                 }
1473         else if (pr->source_tiles_enabled)
1474                 {
1475                 draw = rt_source_tile_render(rt, it, x, y, w, h, new_data, fast);
1476                 }
1477         else
1478                 {
1479                 gdouble scale_x, scale_y;
1480                 gdouble src_x, src_y;
1481                 gint pb_x, pb_y;
1482                 gint pb_w, pb_h;
1483
1484                 if (pr->image_width == 0 || pr->image_height == 0) return;
1485
1486                 scale_x = rt->hidpi_scale * (gdouble)pr->width / pr->image_width;
1487                 scale_y = rt->hidpi_scale * (gdouble)pr->height / pr->image_height;
1488
1489                 pr_tile_coords_map_orientation(orientation, it->x, it->y,
1490                                             pr->width, pr->height,
1491                                             rt->tile_width, rt->tile_height,
1492                                             &src_x, &src_y);
1493                 pr_tile_region_map_orientation(orientation, x, y,
1494                                             rt->tile_width, rt->tile_height,
1495                                             w, h,
1496                                             &pb_x, &pb_y,
1497                                             &pb_w, &pb_h);
1498
1499                 src_x *= rt->hidpi_scale;
1500                 src_y *= rt->hidpi_scale;
1501                 pb_x *= rt->hidpi_scale;
1502                 pb_y *= rt->hidpi_scale;
1503                 pb_w *= rt->hidpi_scale;
1504                 pb_h *= rt->hidpi_scale;
1505
1506                 switch (orientation)
1507                         {
1508                         gdouble tmp;
1509                         case EXIF_ORIENTATION_LEFT_TOP:
1510                         case EXIF_ORIENTATION_RIGHT_TOP:
1511                         case EXIF_ORIENTATION_RIGHT_BOTTOM:
1512                         case EXIF_ORIENTATION_LEFT_BOTTOM:
1513                                 tmp = scale_x;
1514                                 scale_x = scale_y;
1515                                 scale_y = tmp;
1516                                 break;
1517                         default:
1518                                 /* nothing to do */
1519                                 break;
1520                         }
1521
1522                 /* HACK: The pixbuf scalers get kinda buggy(crash) with extremely
1523                  * small sizes for anything but GDK_INTERP_NEAREST
1524                  */
1525                 if (pr->width < PR_MIN_SCALE_SIZE || pr->height < PR_MIN_SCALE_SIZE) fast = TRUE;
1526                 if (pr->image_width > 32767) wide_image = TRUE;
1527
1528                 rt_tile_get_region(has_alpha, pr->ignore_alpha,
1529                                    pr->pixbuf, it->pixbuf, pb_x, pb_y, pb_w, pb_h,
1530                                    (gdouble) 0.0 - src_x - GET_RIGHT_PIXBUF_OFFSET(rt) * scale_x,
1531                                    (gdouble) 0.0 - src_y,
1532                                    scale_x, scale_y,
1533                                    (fast) ? GDK_INTERP_NEAREST : pr->zoom_quality,
1534                                    it->x + pb_x, it->y + pb_y, wide_image);
1535                 if (rt->stereo_mode & PR_STEREO_ANAGLYPH &&
1536                     (pr->stereo_pixbuf_offset_right > 0 || pr->stereo_pixbuf_offset_left > 0))
1537                         {
1538                         GdkPixbuf *right_pb = rt_get_spare_tile(rt);
1539                         rt_tile_get_region(has_alpha, pr->ignore_alpha,
1540                                            pr->pixbuf, right_pb, pb_x, pb_y, pb_w, pb_h,
1541                                            (gdouble) 0.0 - src_x - GET_LEFT_PIXBUF_OFFSET(rt) * scale_x,
1542                                            (gdouble) 0.0 - src_y,
1543                                            scale_x, scale_y,
1544                                            (fast) ? GDK_INTERP_NEAREST : pr->zoom_quality,
1545                                            it->x + pb_x, it->y + pb_y, wide_image);
1546                         pr_create_anaglyph(rt->stereo_mode, it->pixbuf, right_pb, pb_x, pb_y, pb_w, pb_h);
1547                         /* do not care about freeing spare_tile, it will be reused */
1548                         }
1549                 rt_tile_apply_orientation(rt, orientation, &it->pixbuf, pb_x, pb_y, pb_w, pb_h);
1550                 draw = TRUE;
1551                 }
1552
1553         if (draw && it->pixbuf && !it->blank)
1554                 {
1555                 cairo_t *cr;
1556
1557                 if (pr->func_post_process && !(pr->post_process_slow && fast))
1558                         pr->func_post_process(pr, &it->pixbuf, x, y, w, h, pr->post_process_user_data);
1559
1560                 cr = cairo_create(it->surface);
1561                 cairo_rectangle (cr, x, y, w, h);
1562                 rt_hidpi_aware_draw(rt, cr, it->pixbuf, 0, 0);
1563                 cairo_destroy (cr);
1564                 }
1565 }
1566
1567
1568 static void rt_tile_expose(RendererTiles *rt, ImageTile *it,
1569                            gint x, gint y, gint w, gint h,
1570                            gboolean new_data, gboolean fast)
1571 {
1572         PixbufRenderer *pr = rt->pr;
1573         GtkWidget *box;
1574         GdkWindow *window;
1575         cairo_t *cr;
1576
1577         /* clamp to visible */
1578         if (it->x + x < rt->x_scroll)
1579                 {
1580                 w -= rt->x_scroll - it->x - x;
1581                 x = rt->x_scroll - it->x;
1582                 }
1583         if (it->x + x + w > rt->x_scroll + pr->vis_width)
1584                 {
1585                 w = rt->x_scroll + pr->vis_width - it->x - x;
1586                 }
1587         if (w < 1) return;
1588         if (it->y + y < rt->y_scroll)
1589                 {
1590                 h -= rt->y_scroll - it->y - y;
1591                 y = rt->y_scroll - it->y;
1592                 }
1593         if (it->y + y + h > rt->y_scroll + pr->vis_height)
1594                 {
1595                 h = rt->y_scroll + pr->vis_height - it->y - y;
1596                 }
1597         if (h < 1) return;
1598
1599         rt_tile_render(rt, it, x, y, w, h, new_data, fast);
1600
1601         box = GTK_WIDGET(pr);
1602         window = gtk_widget_get_window(box);
1603
1604 #if GTK_CHECK_VERSION(3,0,0)
1605         cr = cairo_create(rt->surface);
1606 #else
1607         cr = gdk_cairo_create(window);
1608 #endif
1609         cairo_set_source_surface(cr, it->surface, pr->x_offset + (it->x - rt->x_scroll) + rt->stereo_off_x, pr->y_offset + (it->y - rt->y_scroll) + rt->stereo_off_y);
1610         cairo_rectangle (cr, pr->x_offset + (it->x - rt->x_scroll) + x + rt->stereo_off_x, pr->y_offset + (it->y - rt->y_scroll) + y + rt->stereo_off_y, w, h);
1611         cairo_fill (cr);
1612         cairo_destroy (cr);
1613
1614         if (rt->overlay_list)
1615                 {
1616                 rt_overlay_draw(rt, pr->x_offset + (it->x - rt->x_scroll) + x,
1617                                 pr->y_offset + (it->y - rt->y_scroll) + y,
1618                                 w, h,
1619                                 it);
1620                 }
1621
1622 #if GTK_CHECK_VERSION(3,0,0)
1623         gtk_widget_queue_draw(GTK_WIDGET(rt->pr));
1624 #endif
1625 }
1626
1627
1628 static gboolean rt_tile_is_visible(RendererTiles *rt, ImageTile *it)
1629 {
1630         PixbufRenderer *pr = rt->pr;
1631         return (it->x + it->w >= rt->x_scroll && it->x < rt->x_scroll + pr->vis_width &&
1632                 it->y + it->h >= rt->y_scroll && it->y < rt->y_scroll + pr->vis_height);
1633 }
1634
1635 /*
1636  *-------------------------------------------------------------------
1637  * draw queue
1638  *-------------------------------------------------------------------
1639  */
1640
1641 static gint rt_get_queued_area(GList *work)
1642 {
1643         gint area = 0;
1644
1645         while (work)
1646                 {
1647                 QueueData *qd = work->data;
1648                 area += qd->w * qd->h;
1649                 work = work->next;
1650                 }
1651         return area;
1652 }
1653
1654
1655 static gboolean rt_queue_schedule_next_draw(RendererTiles *rt, gboolean force_set)
1656 {
1657         PixbufRenderer *pr = rt->pr;
1658         gfloat percent;
1659         gint visible_area = pr->vis_width * pr->vis_height;
1660
1661         if (!pr->loading)
1662                 {
1663                 /* 2pass prio */
1664                 DEBUG_2("redraw priority: 2pass");
1665                 rt->draw_idle_id = g_idle_add_full(G_PRIORITY_DEFAULT_IDLE, rt_queue_draw_idle_cb, rt, NULL);
1666                 return FALSE;
1667                 }
1668
1669         if (visible_area == 0)
1670                 {
1671                 /* not known yet */
1672                 percent = 100.0;
1673                 }
1674         else
1675                 {
1676                 percent = 100.0 * rt_get_queued_area(rt->draw_queue) / visible_area;
1677                 }
1678
1679         if (percent > 10.0)
1680                 {
1681                 /* we have enough data for starting intensive redrawing */
1682                 DEBUG_2("redraw priority: high %.2f %%", percent);
1683                 rt->draw_idle_id = g_idle_add_full(GDK_PRIORITY_REDRAW, rt_queue_draw_idle_cb, rt, NULL);
1684                 return FALSE;
1685                 }
1686
1687         if (percent < 1.0 || force_set)
1688                 {
1689                 /* queue is (almost) empty, wait  50 ms*/
1690                 DEBUG_2("redraw priority: wait %.2f %%", percent);
1691                 rt->draw_idle_id = g_timeout_add_full(G_PRIORITY_DEFAULT_IDLE, 50, rt_queue_draw_idle_cb, rt, NULL);
1692                 return FALSE;
1693                 }
1694
1695         /* keep the same priority as before */
1696         DEBUG_2("redraw priority: no change %.2f %%", percent);
1697         return TRUE;
1698 }
1699
1700
1701 static gboolean rt_queue_draw_idle_cb(gpointer data)
1702 {
1703         RendererTiles *rt = data;
1704         PixbufRenderer *pr = rt->pr;
1705         QueueData *qd;
1706         gboolean fast;
1707
1708
1709         if ((!pr->pixbuf && !pr->source_tiles_enabled) ||
1710             (!rt->draw_queue && !rt->draw_queue_2pass) ||
1711             !rt->draw_idle_id)
1712                 {
1713                 pr_render_complete_signal(pr);
1714
1715                 rt->draw_idle_id = 0;
1716                 return FALSE;
1717                 }
1718
1719         if (rt->draw_queue)
1720                 {
1721                 qd = rt->draw_queue->data;
1722                 fast = (pr->zoom_2pass && ((pr->zoom_quality != GDK_INTERP_NEAREST && pr->scale != 1.0) || pr->post_process_slow));
1723                 }
1724         else
1725                 {
1726                 if (pr->loading)
1727                         {
1728                         /* still loading, wait till done (also drops the higher priority) */
1729
1730                         return rt_queue_schedule_next_draw(rt, FALSE);
1731                         }
1732
1733                 qd = rt->draw_queue_2pass->data;
1734                 fast = FALSE;
1735                 }
1736
1737         if (gtk_widget_get_realized(GTK_WIDGET(pr)))
1738                 {
1739                 if (rt_tile_is_visible(rt, qd->it))
1740                         {
1741                         rt_tile_expose(rt, qd->it, qd->x, qd->y, qd->w, qd->h, qd->new_data, fast);
1742                         }
1743                 else if (qd->new_data)
1744                         {
1745                         /* if new pixel data, and we already have a pixmap, update the tile */
1746                         qd->it->blank = FALSE;
1747                         if (qd->it->surface && qd->it->render_done == TILE_RENDER_ALL)
1748                                 {
1749                                 rt_tile_render(rt, qd->it, qd->x, qd->y, qd->w, qd->h, qd->new_data, fast);
1750                                 }
1751                         }
1752                 }
1753
1754         if (rt->draw_queue)
1755                 {
1756                 qd->it->qd = NULL;
1757                 rt->draw_queue = g_list_remove(rt->draw_queue, qd);
1758                 if (fast)
1759                         {
1760                         if (qd->it->qd2)
1761                                 {
1762                                 rt_queue_merge(qd->it->qd2, qd);
1763                                 g_free(qd);
1764                                 }
1765                         else
1766                                 {
1767                                 qd->it->qd2 = qd;
1768                                 rt->draw_queue_2pass = g_list_append(rt->draw_queue_2pass, qd);
1769                                 }
1770                         }
1771                 else
1772                         {
1773                         g_free(qd);
1774                         }
1775                 }
1776         else
1777                 {
1778                 qd->it->qd2 = NULL;
1779                 rt->draw_queue_2pass = g_list_remove(rt->draw_queue_2pass, qd);
1780                 g_free(qd);
1781                 }
1782
1783         if (!rt->draw_queue && !rt->draw_queue_2pass)
1784                 {
1785                 pr_render_complete_signal(pr);
1786
1787                 rt->draw_idle_id = 0;
1788                 return FALSE;
1789                 }
1790
1791                 return rt_queue_schedule_next_draw(rt, FALSE);
1792 }
1793
1794 static void rt_queue_list_free(GList *list)
1795 {
1796         GList *work;
1797
1798         work = list;
1799         while (work)
1800                 {
1801                 QueueData *qd;
1802
1803                 qd = work->data;
1804                 work = work->next;
1805
1806                 qd->it->qd = NULL;
1807                 qd->it->qd2 = NULL;
1808                 g_free(qd);
1809                 }
1810
1811         g_list_free(list);
1812 }
1813
1814 static void rt_queue_clear(RendererTiles *rt)
1815 {
1816         rt_queue_list_free(rt->draw_queue);
1817         rt->draw_queue = NULL;
1818
1819         rt_queue_list_free(rt->draw_queue_2pass);
1820         rt->draw_queue_2pass = NULL;
1821
1822         if (rt->draw_idle_id)
1823                 {
1824                 g_source_remove(rt->draw_idle_id);
1825                 rt->draw_idle_id = 0;
1826                 }
1827         rt_sync_scroll(rt);
1828 }
1829
1830 static void rt_queue_merge(QueueData *parent, QueueData *qd)
1831 {
1832         if (parent->x + parent->w < qd->x + qd->w)
1833                 {
1834                 parent->w += (qd->x + qd->w) - (parent->x + parent->w);
1835                 }
1836         if (parent->x > qd->x)
1837                 {
1838                 parent->w += parent->x - qd->x;
1839                 parent->x = qd->x;
1840                 }
1841
1842         if (parent->y + parent->h < qd->y + qd->h)
1843                 {
1844                 parent->h += (qd->y + qd->h) - (parent->y + parent->h);
1845                 }
1846         if (parent->y > qd->y)
1847                 {
1848                 parent->h += parent->y - qd->y;
1849                 parent->y = qd->y;
1850                 }
1851
1852         parent->new_data |= qd->new_data;
1853 }
1854
1855 static gboolean rt_clamp_to_visible(RendererTiles *rt, gint *x, gint *y, gint *w, gint *h)
1856 {
1857         PixbufRenderer *pr = rt->pr;
1858         gint nx, ny;
1859         gint nw, nh;
1860         gint vx, vy;
1861         gint vw, vh;
1862
1863         vw = pr->vis_width;
1864         vh = pr->vis_height;
1865
1866         vx = rt->x_scroll;
1867         vy = rt->y_scroll;
1868
1869         if (*x + *w < vx || *x > vx + vw || *y + *h < vy || *y > vy + vh) return FALSE;
1870
1871         /* now clamp it */
1872         nx = CLAMP(*x, vx, vx + vw);
1873         nw = CLAMP(*w - (nx - *x), 1, vw);
1874
1875         ny = CLAMP(*y, vy, vy + vh);
1876         nh = CLAMP(*h - (ny - *y), 1, vh);
1877
1878         *x = nx;
1879         *y = ny;
1880         *w = nw;
1881         *h = nh;
1882
1883         return TRUE;
1884 }
1885
1886 static gboolean rt_queue_to_tiles(RendererTiles *rt, gint x, gint y, gint w, gint h,
1887                                   gboolean clamp, ImageRenderType render,
1888                                   gboolean new_data, gboolean only_existing)
1889 {
1890         PixbufRenderer *pr = rt->pr;
1891         gint i, j;
1892         gint x1, x2;
1893         gint y1, y2;
1894
1895         if (clamp && !rt_clamp_to_visible(rt, &x, &y, &w, &h)) return FALSE;
1896
1897         x1 = ROUND_DOWN(x, rt->tile_width);
1898         x2 = ROUND_UP(x + w, rt->tile_width);
1899
1900         y1 = ROUND_DOWN(y, rt->tile_height);
1901         y2 = ROUND_UP(y + h, rt->tile_height);
1902
1903         for (j = y1; j <= y2; j += rt->tile_height)
1904                 {
1905                 for (i = x1; i <= x2; i += rt->tile_width)
1906                         {
1907                         ImageTile *it;
1908
1909                         it = rt_tile_get(rt, i, j,
1910                                          (only_existing &&
1911                                           (i + rt->tile_width < rt->x_scroll ||
1912                                            i > rt->x_scroll + pr->vis_width ||
1913                                            j + rt->tile_height < rt->y_scroll ||
1914                                            j > rt->y_scroll + pr->vis_height)));
1915                         if (it)
1916                                 {
1917                                 QueueData *qd;
1918
1919                                 if ((render == TILE_RENDER_ALL && it->render_done != TILE_RENDER_ALL) ||
1920                                     (render == TILE_RENDER_AREA && it->render_todo != TILE_RENDER_ALL))
1921                                         {
1922                                         it->render_todo = render;
1923                                         }
1924
1925                                 qd = g_new(QueueData, 1);
1926                                 qd->it = it;
1927                                 qd->new_data = new_data;
1928
1929                                 if (i < x)
1930                                         {
1931                                         qd->x = x - i;
1932                                         }
1933                                 else
1934                                         {
1935                                         qd->x = 0;
1936                                         }
1937                                 qd->w = x + w - i - qd->x;
1938                                 if (qd->x + qd->w > rt->tile_width) qd->w = rt->tile_width - qd->x;
1939
1940                                 if (j < y)
1941                                         {
1942                                         qd->y = y - j;
1943                                         }
1944                                 else
1945                                         {
1946                                         qd->y = 0;
1947                                         }
1948                                 qd->h = y + h - j - qd->y;
1949                                 if (qd->y + qd->h > rt->tile_height) qd->h = rt->tile_height - qd->y;
1950
1951                                 if (qd->w < 1 || qd->h < 1)
1952                                         {
1953                                         g_free(qd);
1954                                         }
1955                                 else if (it->qd)
1956                                         {
1957                                         rt_queue_merge(it->qd, qd);
1958                                         g_free(qd);
1959                                         }
1960                                 else
1961                                         {
1962                                         it->qd = qd;
1963                                         rt->draw_queue = g_list_append(rt->draw_queue, qd);
1964                                         }
1965                                 }
1966                         }
1967                 }
1968
1969         return TRUE;
1970 }
1971
1972 static void rt_queue(RendererTiles *rt, gint x, gint y, gint w, gint h,
1973                      gboolean clamp, ImageRenderType render,
1974                      gboolean new_data, gboolean only_existing)
1975 {
1976         PixbufRenderer *pr = rt->pr;
1977         gint nx, ny;
1978
1979         rt_sync_scroll(rt);
1980
1981         nx = CLAMP(x, 0, pr->width - 1);
1982         ny = CLAMP(y, 0, pr->height - 1);
1983         w -= (nx - x);
1984         h -= (ny - y);
1985         w = CLAMP(w, 0, pr->width - nx);
1986         h = CLAMP(h, 0, pr->height - ny);
1987         if (w < 1 || h < 1) return;
1988
1989         if (rt_queue_to_tiles(rt, nx, ny, w, h, clamp, render, new_data, only_existing) &&
1990             ((!rt->draw_queue && !rt->draw_queue_2pass) || !rt->draw_idle_id))
1991                 {
1992                 if (rt->draw_idle_id)
1993                         {
1994                         g_source_remove(rt->draw_idle_id);
1995                         rt->draw_idle_id = 0;
1996                         }
1997                 rt_queue_schedule_next_draw(rt, TRUE);
1998                 }
1999 }
2000
2001 static void rt_scroll(void *renderer, gint x_off, gint y_off)
2002 {
2003         RendererTiles *rt = (RendererTiles *) renderer;
2004         PixbufRenderer *pr = rt->pr;
2005
2006         rt_sync_scroll(rt);
2007         if (rt->stereo_mode & PR_STEREO_MIRROR) x_off = -x_off;
2008         if (rt->stereo_mode & PR_STEREO_FLIP) y_off = -y_off;
2009
2010         gint w = pr->vis_width - abs(x_off);
2011         gint h = pr->vis_height - abs(y_off);
2012
2013         if (w < 1 || h < 1)
2014                 {
2015                 /* scrolled completely to new material */
2016                 rt_queue(rt, 0, 0, pr->width, pr->height, TRUE, TILE_RENDER_ALL, FALSE, FALSE);
2017                 return;
2018                 }
2019         else
2020                 {
2021                 gint x1, y1;
2022                 gint x2, y2;
2023                 cairo_t *cr;
2024                 cairo_surface_t *surface;
2025
2026                 if (x_off < 0)
2027                         {
2028                         x1 = abs(x_off);
2029                         x2 = 0;
2030                         }
2031                 else
2032                         {
2033                         x1 = 0;
2034                         x2 = abs(x_off);
2035                         }
2036
2037                 if (y_off < 0)
2038                         {
2039                         y1 = abs(y_off);
2040                         y2 = 0;
2041                         }
2042                 else
2043                         {
2044                         y1 = 0;
2045                         y2 = abs(y_off);
2046                         }
2047
2048 #if GTK_CHECK_VERSION(3,0,0)
2049                 cr = cairo_create(rt->surface);
2050                 surface = rt->surface;
2051 #else
2052                 GtkWidget *box;
2053                 GdkWindow *window;
2054
2055                 box = GTK_WIDGET(pr);
2056                 window = gtk_widget_get_window(box);
2057
2058                 cr = gdk_cairo_create(window);
2059                 surface = cairo_get_target(cr);
2060 #endif
2061                 /* clipping restricts the intermediate surface's size, so it's a good idea
2062                  * to use it. */
2063                 cairo_rectangle(cr, x1 + pr->x_offset + rt->stereo_off_x, y1 + pr->y_offset + rt->stereo_off_y, w, h);
2064                 cairo_clip (cr);
2065                 /* Now push a group to change the target */
2066                 cairo_push_group (cr);
2067                 cairo_set_source_surface(cr, surface, x1 - x2, y1 - y2);
2068                 cairo_paint(cr);
2069                 /* Now copy the intermediate target back */
2070                 cairo_pop_group_to_source(cr);
2071                 cairo_paint(cr);
2072                 cairo_destroy(cr);
2073
2074                 rt_overlay_queue_all(rt, x2, y2, x1, y1);
2075
2076                 w = pr->vis_width - w;
2077                 h = pr->vis_height - h;
2078
2079                 if (w > 0)
2080                         {
2081                         rt_queue(rt,
2082                                     x_off > 0 ? rt->x_scroll + (pr->vis_width - w) : rt->x_scroll, rt->y_scroll,
2083                                     w, pr->vis_height, TRUE, TILE_RENDER_ALL, FALSE, FALSE);
2084                         }
2085                 if (h > 0)
2086                         {
2087                         /** @FIXME to optimize this, remove overlap */
2088                         rt_queue(rt,
2089                                     rt->x_scroll, y_off > 0 ? rt->y_scroll + (pr->vis_height - h) : rt->y_scroll,
2090                                     pr->vis_width, h, TRUE, TILE_RENDER_ALL, FALSE, FALSE);
2091                         }
2092                 }
2093 }
2094
2095 static void renderer_area_changed(void *renderer, gint src_x, gint src_y, gint src_w, gint src_h)
2096 {
2097         RendererTiles *rt = (RendererTiles *)renderer;
2098         PixbufRenderer *pr = rt->pr;
2099         gint x, y, width, height,  x1, y1, x2, y2;
2100
2101         gint orientation = rt_get_orientation(rt);
2102         pr_coords_map_orientation_reverse(orientation,
2103                                      src_x - GET_RIGHT_PIXBUF_OFFSET(rt), src_y,
2104                                      pr->image_width, pr->image_height,
2105                                      src_w, src_h,
2106                                      &x, &y,
2107                                      &width, &height);
2108
2109         if (pr->scale != 1.0 && pr->zoom_quality != GDK_INTERP_NEAREST)
2110                 {
2111                 /* increase region when using a zoom quality that may access surrounding pixels */
2112                 y -= 1;
2113                 height += 2;
2114                 }
2115
2116         x1 = (gint)floor((gdouble)x * pr->scale);
2117         y1 = (gint)floor((gdouble)y * pr->scale * pr->aspect_ratio);
2118         x2 = (gint)ceil((gdouble)(x + width) * pr->scale);
2119         y2 = (gint)ceil((gdouble)(y + height) * pr->scale * pr->aspect_ratio);
2120
2121         rt_queue(rt, x1, y1, x2 - x1, y2 - y1, FALSE, TILE_RENDER_AREA, TRUE, TRUE);
2122 }
2123
2124 static void renderer_redraw(RendererTiles *rt, gint x, gint y, gint w, gint h,
2125                      gint clamp, ImageRenderType render, gboolean new_data, gboolean only_existing)
2126 {
2127         PixbufRenderer *pr = rt->pr;
2128
2129         x -= rt->stereo_off_x;
2130         y -= rt->stereo_off_y;
2131
2132         rt_border_draw(rt, x, y, w, h);
2133
2134         x = MAX(0, x - pr->x_offset + pr->x_scroll);
2135         y = MAX(0, y - pr->y_offset + pr->y_scroll);
2136
2137         rt_queue(rt,
2138                  x, y,
2139                  MIN(w, pr->width - x),
2140                  MIN(h, pr->height - y),
2141                  clamp, render, new_data, only_existing);
2142 }
2143
2144 static void renderer_update_pixbuf(void *renderer, gboolean lazy)
2145 {
2146         rt_queue_clear((RendererTiles *)renderer);
2147 }
2148
2149 static void renderer_update_zoom(void *renderer, gboolean lazy)
2150 {
2151         RendererTiles *rt = (RendererTiles *)renderer;
2152         PixbufRenderer *pr = rt->pr;
2153
2154         rt_tile_invalidate_all((RendererTiles *)renderer);
2155         if (!lazy)
2156                 {
2157                 renderer_redraw(renderer, 0, 0, pr->width, pr->height, TRUE, TILE_RENDER_ALL, TRUE, FALSE);
2158                 }
2159         rt_border_clear(rt);
2160 }
2161
2162 static void renderer_invalidate_region(void *renderer, gint x, gint y, gint w, gint h)
2163 {
2164         rt_tile_invalidate_region((RendererTiles *)renderer, x, y, w, h);
2165 }
2166
2167 static void renderer_update_viewport(void *renderer)
2168 {
2169         RendererTiles *rt = (RendererTiles *)renderer;
2170
2171         rt->stereo_off_x = 0;
2172         rt->stereo_off_y = 0;
2173
2174         if (rt->stereo_mode & PR_STEREO_RIGHT)
2175                 {
2176                 if (rt->stereo_mode & PR_STEREO_HORIZ)
2177                         {
2178                         rt->stereo_off_x = rt->pr->viewport_width;
2179                         }
2180                 else if (rt->stereo_mode & PR_STEREO_VERT)
2181                         {
2182                         rt->stereo_off_y = rt->pr->viewport_height;
2183                         }
2184                 else if (rt->stereo_mode & PR_STEREO_FIXED)
2185                         {
2186                         rt->stereo_off_x = rt->pr->stereo_fixed_x_right;
2187                         rt->stereo_off_y = rt->pr->stereo_fixed_y_right;
2188                         }
2189                 }
2190         else
2191                 {
2192                 if (rt->stereo_mode & PR_STEREO_FIXED)
2193                         {
2194                         rt->stereo_off_x = rt->pr->stereo_fixed_x_left;
2195                         rt->stereo_off_y = rt->pr->stereo_fixed_y_left;
2196                         }
2197                 }
2198         DEBUG_1("update size: %p  %d %d   %d %d", rt, rt->stereo_off_x, rt->stereo_off_y, rt->pr->viewport_width, rt->pr->viewport_height);
2199         rt_sync_scroll(rt);
2200         rt_overlay_update_sizes(rt);
2201         rt_border_clear(rt);
2202 }
2203
2204 static void renderer_stereo_set(void *renderer, gint stereo_mode)
2205 {
2206         RendererTiles *rt = (RendererTiles *)renderer;
2207
2208         rt->stereo_mode = stereo_mode;
2209 }
2210
2211 static void renderer_free(void *renderer)
2212 {
2213         RendererTiles *rt = (RendererTiles *)renderer;
2214         rt_queue_clear(rt);
2215         rt_tile_free_all(rt);
2216         if (rt->spare_tile) g_object_unref(rt->spare_tile);
2217         if (rt->overlay_buffer) g_object_unref(rt->overlay_buffer);
2218         rt_overlay_list_clear(rt);
2219         /* disconnect "hierarchy-changed" */
2220         g_signal_handlers_disconnect_matched(G_OBJECT(rt->pr), G_SIGNAL_MATCH_DATA,
2221                                                      0, 0, 0, NULL, rt);
2222         g_free(rt);
2223 }
2224
2225 #if GTK_CHECK_VERSION(3,0,0)
2226 static gboolean rt_realize_cb(GtkWidget *widget, gpointer data)
2227 {
2228         RendererTiles *rt = (RendererTiles *)data;
2229         cairo_t *cr;
2230
2231         if (!rt->surface)
2232                 {
2233                 rt->surface = gdk_window_create_similar_surface(gtk_widget_get_window(widget), CAIRO_CONTENT_COLOR, gtk_widget_get_allocated_width(widget), gtk_widget_get_allocated_height(widget));
2234
2235                 cr = cairo_create(rt->surface);
2236                 cairo_set_source_rgb(cr, (gdouble)options->image.border_color.red  /65535, (gdouble)options->image.border_color.green / 65535, (gdouble)options->image.border_color.blue / 65535);
2237                 cairo_paint(cr);
2238                 cairo_destroy(cr);
2239                 }
2240
2241         return FALSE;
2242 }
2243
2244 static gboolean rt_size_allocate_cb(GtkWidget *widget,  GdkRectangle *allocation, gpointer data)
2245 {
2246         RendererTiles *rt = data;
2247         cairo_t *cr;
2248         cairo_surface_t *old_surface;
2249
2250         if (gtk_widget_get_realized(GTK_WIDGET(rt->pr)))
2251                 {
2252                 old_surface = rt->surface;
2253                 rt->surface = gdk_window_create_similar_surface(gtk_widget_get_window(widget), CAIRO_CONTENT_COLOR, allocation->width, allocation->height);
2254
2255                 cr = cairo_create(rt->surface);
2256
2257                 cairo_set_source_rgb(cr, (gdouble)options->image.border_color.red / 65535, (gdouble)options->image.border_color.green / 65535, (gdouble)options->image.border_color.blue / 65535);
2258                 cairo_paint(cr);
2259                 cairo_set_source_surface(cr, old_surface, 0, 0);
2260                 cairo_paint(cr);
2261                 cairo_destroy(cr);
2262                 cairo_surface_destroy(old_surface);
2263
2264                 renderer_redraw(rt, allocation->x, allocation->y, allocation->width, allocation->height, FALSE, TILE_RENDER_ALL, FALSE, FALSE);
2265         }
2266
2267         return FALSE;
2268 }
2269
2270 static gboolean rt_draw_cb(GtkWidget *widget, cairo_t *cr, gpointer data)
2271 {
2272         RendererTiles *rt = (RendererTiles *)data;
2273         GList *work;
2274         OverlayData *od;
2275
2276         if (rt->stereo_mode & (PR_STEREO_HORIZ | PR_STEREO_VERT))
2277                 {
2278                 cairo_push_group(cr);
2279                 cairo_set_source_rgb(cr, (double)rt->pr->color.red / 65535, (double)rt->pr->color.green / 65535, (double)rt->pr->color.blue / 65535);
2280
2281                 if (rt->stereo_mode & PR_STEREO_HORIZ)
2282                         {
2283                         cairo_rectangle(cr, rt->stereo_off_x, 0, rt->pr->viewport_width, rt->pr->viewport_height);
2284                         }
2285                 else
2286                         {
2287                         cairo_rectangle(cr, 0, rt->stereo_off_y, rt->pr->viewport_width, rt->pr->viewport_height);
2288                         }
2289                 cairo_clip(cr);
2290                 cairo_paint(cr);
2291
2292                 cairo_rectangle(cr, rt->pr->x_offset + rt->stereo_off_x, rt->pr->y_offset + rt->stereo_off_y, rt->pr->vis_width, rt->pr->vis_height);
2293                 cairo_clip(cr);
2294                 cairo_set_source_surface(cr, rt->surface, 0, 0);
2295                 cairo_paint(cr);
2296
2297                 cairo_pop_group_to_source(cr);
2298                 cairo_paint(cr);
2299                 }
2300         else
2301                 {
2302                 cairo_set_source_surface(cr, rt->surface, 0, 0);
2303                 cairo_paint(cr);
2304                 }
2305
2306         work = rt->overlay_list;
2307         while (work)
2308                 {
2309                 od = work->data;
2310                 gint px, py, pw, ph;
2311                 pw = gdk_pixbuf_get_width(od->pixbuf);
2312                 ph = gdk_pixbuf_get_height(od->pixbuf);
2313                 px = od->x;
2314                 py = od->y;
2315
2316                 if (od->flags & OVL_RELATIVE)
2317                         {
2318                         if (px < 0) px = rt->pr->viewport_width - pw + px;
2319                         if (py < 0) py = rt->pr->viewport_height - ph + py;
2320                         }
2321
2322                 gdk_cairo_set_source_pixbuf(cr, od->pixbuf, px, py);
2323                 cairo_paint(cr);
2324                 work = work->next;
2325                 }
2326
2327         return FALSE;
2328 }
2329
2330 #else
2331 static gboolean rt_expose_cb(GtkWidget *widget, GdkEventExpose *event, gpointer data)
2332 {
2333         RendererTiles *rt = (RendererTiles *)data;
2334         if (gtk_widget_is_drawable(widget))
2335                 {
2336                 if (gtk_widget_get_has_window(widget))
2337                         {
2338                         if (event->window != gtk_widget_get_window(widget))
2339                                 {
2340                                 GdkRectangle area;
2341
2342                                 gdk_window_get_position(event->window, &area.x, &area.y);
2343                                 area.x += event->area.x;
2344                                 area.y += event->area.y;
2345                                 area.width = event->area.width;
2346                                 area.height = event->area.height;
2347                                 renderer_redraw(rt, area.x, area.y, area.width, area.height,
2348                                                 FALSE, TILE_RENDER_ALL, FALSE, FALSE);
2349
2350                                 }
2351                         else
2352                                 {
2353                                 renderer_redraw(rt, event->area.x, event->area.y, event->area.width, event->area.height,
2354                                                 FALSE, TILE_RENDER_ALL, FALSE, FALSE);
2355                                 }
2356                         }
2357                 }
2358
2359         return FALSE;
2360 }
2361 #endif
2362
2363
2364 RendererFuncs *renderer_tiles_new(PixbufRenderer *pr)
2365 {
2366         RendererTiles *rt = g_new0(RendererTiles, 1);
2367
2368         rt->pr = pr;
2369
2370         rt->f.area_changed = renderer_area_changed;
2371         rt->f.update_pixbuf = renderer_update_pixbuf;
2372         rt->f.free = renderer_free;
2373         rt->f.update_zoom = renderer_update_zoom;
2374         rt->f.invalidate_region = renderer_invalidate_region;
2375         rt->f.scroll = rt_scroll;
2376         rt->f.update_viewport = renderer_update_viewport;
2377
2378
2379         rt->f.overlay_add = renderer_tiles_overlay_add;
2380         rt->f.overlay_set = renderer_tiles_overlay_set;
2381         rt->f.overlay_get = renderer_tiles_overlay_get;
2382
2383         rt->f.stereo_set = renderer_stereo_set;
2384
2385         rt->tile_width = options->image.tile_size;
2386         rt->tile_height = options->image.tile_size;
2387
2388         rt->tiles = NULL;
2389         rt->tile_cache_size = 0;
2390
2391         rt->tile_cache_max = PR_CACHE_SIZE_DEFAULT;
2392
2393         rt->draw_idle_id = 0;
2394
2395         rt->stereo_mode = 0;
2396         rt->stereo_off_x = 0;
2397         rt->stereo_off_y = 0;
2398
2399 #if GTK_CHECK_VERSION(3, 10, 0)
2400         rt->hidpi_scale = gtk_widget_get_scale_factor(GTK_WIDGET(rt->pr));
2401 #else
2402         rt->hidpi_scale = 1;
2403 #endif
2404
2405         g_signal_connect(G_OBJECT(pr), "hierarchy-changed",
2406                          G_CALLBACK(rt_hierarchy_changed_cb), rt);
2407
2408 #if GTK_CHECK_VERSION(3,0,0)
2409         g_signal_connect(G_OBJECT(pr), "draw",
2410                          G_CALLBACK(rt_draw_cb), rt);
2411         g_signal_connect(G_OBJECT(pr), "realize", G_CALLBACK(rt_realize_cb), rt);
2412         g_signal_connect(G_OBJECT(pr), "size-allocate", G_CALLBACK(rt_size_allocate_cb), rt);
2413 #else
2414         g_signal_connect(G_OBJECT(pr), "expose_event",
2415                          G_CALLBACK(rt_expose_cb), rt);
2416 #endif
2417
2418         return (RendererFuncs *) rt;
2419 }
2420
2421
2422 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */