2015-05-17 20:54:41 +00:00
|
|
|
// Copyright (c) 2015- PPSSPP Project.
|
|
|
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, version 2.0 or later versions.
|
|
|
|
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License 2.0 for more details.
|
|
|
|
|
|
|
|
// A copy of the GPL 2.0 should have been included with the program.
|
|
|
|
// If not, see http://www.gnu.org/licenses/
|
|
|
|
|
|
|
|
// Official git repository and contact information can be found at
|
|
|
|
// https://github.com/hrydgard/ppsspp and http://www.ppsspp.org/.
|
|
|
|
|
|
|
|
#include <arm_neon.h>
|
|
|
|
#include "ColorConvNEON.h"
|
|
|
|
#include "Common.h"
|
|
|
|
#include "CPUDetect.h"
|
|
|
|
|
2015-05-23 17:33:24 +00:00
|
|
|
#if !defined(ARM) && !defined(ARM64)
|
|
|
|
#error Should not be compiled on non-ARM.
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// TODO: More NEON color conversion funcs.
|
|
|
|
|
|
|
|
void ConvertRGBA5551ToABGR1555NEON(u16 *dst, const u16 *src, const u32 numPixels) {
|
|
|
|
const uint16x8_t maskB = vdupq_n_u16(0x003E);
|
|
|
|
const uint16x8_t maskG = vdupq_n_u16(0x07C0);
|
|
|
|
|
|
|
|
u32 simdable = (numPixels / 8) * 8;
|
|
|
|
const u16 *srcp = src;
|
|
|
|
u16 *dstp = dst;
|
|
|
|
for (u32 i = 0; i < simdable; i += 8) {
|
|
|
|
uint16x8_t c = vld1q_u16(srcp);
|
|
|
|
|
|
|
|
const uint16x8_t a = vshrq_n_u16(c, 15);
|
|
|
|
const uint16x8_t b = vandq_u16(vshrq_n_u16(c, 9), maskB);
|
|
|
|
const uint16x8_t g = vandq_u16(vshlq_n_u16(c, 1), maskG);
|
|
|
|
const uint16x8_t r = vshlq_n_u16(c, 11);
|
|
|
|
|
|
|
|
uint16x8_t res = vorrq_u16(vorrq_u16(r, g), vorrq_u16(b, a));
|
|
|
|
vst1q_u16(dstp, res);
|
|
|
|
|
|
|
|
srcp += 8;
|
|
|
|
dstp += 8;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Finish off the rest, if there were any outside the simdable range.
|
|
|
|
if (numPixels > simdable) {
|
|
|
|
// Note that we've already moved srcp/dstp forward.
|
|
|
|
ConvertRGBA5551ToABGR1555Basic(dst, src, numPixels - simdable);
|
|
|
|
}
|
|
|
|
}
|