Add a missing semicolon in painting/qdrawhelper_neon.cpp
This amends f8807b8220.
Q_PROCESSOR_ARM_64 was only tested in qt5 integration.
Task-number: QTBUG-64393
Change-Id: I4471c2db3dc07e47e1825c2539c32c4d2a073396
Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
bb10
parent
9bd30943ba
commit
a71fdceae2
|
|
@ -1130,7 +1130,7 @@ static inline void convertARGBToARGB32PM_neon(uint *buffer, const uint *src, int
|
|||
} else {
|
||||
if (RGBA) {
|
||||
#if defined(Q_PROCESSOR_ARM_64)
|
||||
srcVector = vreinterpretq_u32_u8(vqtbl1q_u8(vreinterpretq_u8_u32(srcVector), rgbaMask))
|
||||
srcVector = vreinterpretq_u32_u8(vqtbl1q_u8(vreinterpretq_u8_u32(srcVector), rgbaMask));
|
||||
#else
|
||||
// no vqtbl1q_u8
|
||||
const uint8x8_t low = vtbl1_u8(vreinterpret_u8_u32(vget_low_u32(srcVector)), rgbaMask);
|
||||
|
|
|
|||
Loading…
Reference in New Issue