Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 791267 Details for
Bug 857708
media-gfx/gimp-2.10.32 - src_compile(): Segmentation fault in GEGL_USE_OPENCL=no GEGL_SWAP=ram /usr/bin/gegl-0.4 ../../icons/Symbolic/64/gimp-texture.png -o 64/gimp-texture.png -- <...>
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
A trivial fix for alignment bug
alignment.patch (text/plain), 706 bytes, created by
Alexander Bezrukov
on 2022-07-13 02:05:08 UTC
(
hide
)
Description:
A trivial fix for alignment bug
Filename:
MIME Type:
Creator:
Alexander Bezrukov
Created:
2022-07-13 02:05:08 UTC
Size:
706 bytes
patch
obsolete
>Fix alignment of vector of floats in babl-rgb-converter.c > >This fixes https://bugs.gentoo.org/857708 > > >Signed-off-by: Alexander Bezrukov <phmagic@mail.ru> > >diff -ur a/babl/base/babl-rgb-converter.c b/babl/base/babl-rgb-converter.c >--- a/babl/base/babl-rgb-converter.c 2022-07-13 04:20:08.191785228 +0300 >+++ b/babl/base/babl-rgb-converter.c 2022-07-13 04:28:38.907988086 +0300 >@@ -306,7 +306,8 @@ > uint8_t *rgb_in_u8 = (void*)src_char; > uint8_t *rgb_out_u8 = (void*)dst_char; > >- float rgba_out[4*samples]; >+ // The alignment is necessary for SIMD intrinsics in babl_matrix_mul_vectorff_buf4_sse2() >+ float __attribute__ ((aligned (16))) rgba_out[4*samples]; > > for (i = 0; i < samples; i++) > {
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 857708
:
791123
|
791126
| 791267