aboutsummaryrefslogtreecommitdiffstats
path: root/main/pixman/stacksize-reduction.patch
diff options
context:
space:
mode:
authorWilliam Pitcock <nenolod@dereferenced.org>2017-06-06 05:00:17 +0000
committerWilliam Pitcock <nenolod@dereferenced.org>2017-06-06 05:00:17 +0000
commit54895584e63afb61550cbd3212aa221e98ac8fc1 (patch)
tree18ee45deea3c41d62a07a21da839159229c4b524 /main/pixman/stacksize-reduction.patch
parent8bbd0858b91a5d0f5c811d41a5bf8bf9d216295d (diff)
downloadaports-54895584e63afb61550cbd3212aa221e98ac8fc1.tar.bz2
aports-54895584e63afb61550cbd3212aa221e98ac8fc1.tar.xz
main/pixman: actually add the patch
Diffstat (limited to 'main/pixman/stacksize-reduction.patch')
-rw-r--r--main/pixman/stacksize-reduction.patch35
1 files changed, 35 insertions, 0 deletions
diff --git a/main/pixman/stacksize-reduction.patch b/main/pixman/stacksize-reduction.patch
new file mode 100644
index 0000000000..38da9b3ff1
--- /dev/null
+++ b/main/pixman/stacksize-reduction.patch
@@ -0,0 +1,35 @@
+Reduce the stack footprint of pixman's function
+general_composite_rect() which allocates a large buffer
+`stack_scanline_buffer`. Make it `static __thread` instead.
+
+--- a/pixman/pixman-general.c 2015-12-27 21:37:37.000000000 +0100
++++ b/pixman/pixman-general.c 2016-05-05 12:24:47.346661080 +0200
+@@ -128,8 +128,8 @@
+ pixman_composite_info_t *info)
+ {
+ PIXMAN_COMPOSITE_ARGS (info);
+- uint8_t stack_scanline_buffer[3 * SCANLINE_BUFFER_LENGTH];
+- uint8_t *scanline_buffer = (uint8_t *) stack_scanline_buffer;
++ static __thread uint8_t static_scanline_buffer[3 * SCANLINE_BUFFER_LENGTH];
++ uint8_t *scanline_buffer = (uint8_t *) static_scanline_buffer;
+ uint8_t *src_buffer, *mask_buffer, *dest_buffer;
+ pixman_iter_t src_iter, mask_iter, dest_iter;
+ pixman_combine_32_func_t compose;
+@@ -158,7 +158,7 @@
+ if (width <= 0 || _pixman_multiply_overflows_int (width, Bpp * 3))
+ return;
+
+- if (width * Bpp * 3 > sizeof (stack_scanline_buffer) - 15 * 3)
++ if (width * Bpp * 3 > sizeof (static_scanline_buffer) - 15 * 3)
+ {
+ scanline_buffer = pixman_malloc_ab_plus_c (width, Bpp * 3, 15 * 3);
+
+@@ -232,7 +232,7 @@
+ if (dest_iter.fini)
+ dest_iter.fini (&dest_iter);
+
+- if (scanline_buffer != (uint8_t *) stack_scanline_buffer)
++ if (scanline_buffer != (uint8_t *) static_scanline_buffer)
+ free (scanline_buffer);
+ }
+