Skip to content

Commit f3d7208

Browse files
Allan Sandfeld JensenMichal Klocek
Allan Sandfeld Jensen
authored and
Michal Klocek
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]> (cherry picked from commit ac5a436) Reviewed-on: https://codereview.qt-project.org/c/qt/qtwebengine-chromium/+/615565 Reviewed-by: Allan Sandfeld Jensen <[email protected]>
1 parent 1f78465 commit f3d7208

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
@@ -252,7 +252,7 @@ void ConvolveVertically_Neon(const ConvolutionFilter1D::Fixed* filter_values,
252252
accum8 = vmaxq_u8(b, accum8);
253253
} else {
254254
// Set value of alpha channels to 0xFF.
255-
accum8 = vreinterpretq_u8_u32(vorrq_u8(vreinterpretq_u32_u8(accum8),
255+
accum8 = vreinterpretq_u8_u32(vorrq_u32(vreinterpretq_u32_u8(accum8),
256256
vdupq_n_u32(0xFF000000)));
257257
}
258258

@@ -313,7 +313,7 @@ void ConvolveVertically_Neon(const ConvolutionFilter1D::Fixed* filter_values,
313313
accum8 = vmaxq_u8(b, accum8);
314314
} else {
315315
// Set value of alpha channels to 0xFF.
316-
accum8 = vreinterpretq_u8_u32(vorrq_u8(vreinterpretq_u32_u8(accum8),
316+
accum8 = vreinterpretq_u8_u32(vorrq_u32(vreinterpretq_u32_u8(accum8),
317317
vdupq_n_u32(0xFF000000)));
318318
}
319319

0 commit comments

Comments
 (0)