Warning, /graphics/krita/3rdparty/ext_heif/A05-disable-scanPosLast-aarch64-asm.patch is written in an unsupported language. File is not indexed.

0001 From 17d8878491e6f634d85b95aca971d62718823e17 Mon Sep 17 00:00:00 2001
0002 From: Damiano galassi <damiog@gmail.com>
0003 Date: Sat, 9 Jul 2022 10:02:05 +0200
0004 Subject: [PATCH] Disable scanPosLast aarch64 asm because it can led to a crash
0005  on Apple Silicon.
0006 
0007 ---
0008  source/common/aarch64/asm-primitives.cpp | 2 +-
0009  1 file changed, 1 insertion(+), 1 deletion(-)
0010 
0011 diff --git a/source/common/aarch64/asm-primitives.cpp b/source/common/aarch64/asm-primitives.cpp
0012 index 0e10dae2f..ae0f0a9ec 100644
0013 --- a/source/common/aarch64/asm-primitives.cpp
0014 +++ b/source/common/aarch64/asm-primitives.cpp
0015 @@ -663,7 +663,7 @@ void setupAssemblyPrimitives(EncoderPrimitives &p, int cpuMask)
0016          p.cu[BLOCK_4x4].psy_cost_pp = PFX(psyCost_4x4_neon);
0017  
0018          p.weight_pp = PFX(weight_pp_neon);
0019 -        p.scanPosLast = PFX(scanPosLast_neon);
0020 +        //p.scanPosLast = PFX(scanPosLast_neon);
0021  #endif
0022  
0023          // quant
0024 -- 
0025 2.32.1 (Apple Git-133)
0026