Skip to content

Commit ac5a436

Browse files
author
Allan Sandfeld Jensen
committed
[fixup] Legalize SSE/NEON intrinsics
Change-Id: Id92df88b8128d97d519f43dbadc54c285deefe1e Reviewed-on: https://codereview.qt-project.org/c/qt/qtwebengine-chromium/+/614730 Reviewed-by: Peter Varga <[email protected]>
1 parent a11160e commit ac5a436

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

chromium/skia/ext/convolver_neon.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ void ConvolveVertically_Neon(const ConvolutionFilter1D::Fixed* filter_values,
257257
accum8 = vmaxq_u8(b, accum8);
258258
} else {
259259
// Set value of alpha channels to 0xFF.
260-
accum8 = vreinterpretq_u8_u32(vorrq_u8(vreinterpretq_u32_u8(accum8),
260+
accum8 = vreinterpretq_u8_u32(vorrq_u32(vreinterpretq_u32_u8(accum8),
261261
vdupq_n_u32(0xFF000000)));
262262
}
263263

@@ -318,7 +318,7 @@ void ConvolveVertically_Neon(const ConvolutionFilter1D::Fixed* filter_values,
318318
accum8 = vmaxq_u8(b, accum8);
319319
} else {
320320
// Set value of alpha channels to 0xFF.
321-
accum8 = vreinterpretq_u8_u32(vorrq_u8(vreinterpretq_u32_u8(accum8),
321+
accum8 = vreinterpretq_u8_u32(vorrq_u32(vreinterpretq_u32_u8(accum8),
322322
vdupq_n_u32(0xFF000000)));
323323
}
324324

0 commit comments

Comments
 (0)