diff options
author | Takamichi Horikawa <takamichiho@gmail.com> | 2017-04-01 14:53:59 +0900 |
---|---|---|
committer | Takamichi Horikawa <takamichiho@gmail.com> | 2017-04-01 14:53:59 +0900 |
commit | 24225349831278c23c6dfc4515e071f4b27b2c41 (patch) | |
tree | 35a853f7f35a53560a5b1bcfd5eda3213990b872 /fmdsp/fmdsp.h | |
parent | 5460067b61f86843a0435ebb06a6ebb8223c3dca (diff) |
add sse2/ssse3 simd optimization
Diffstat (limited to 'fmdsp/fmdsp.h')
-rw-r--r-- | fmdsp/fmdsp.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/fmdsp/fmdsp.h b/fmdsp/fmdsp.h index a7e4aab..a8c3edc 100644 --- a/fmdsp/fmdsp.h +++ b/fmdsp/fmdsp.h @@ -59,6 +59,9 @@ void fmdsp_vramlookup_c(uint8_t *vram32, const uint8_t *vram, const uint8_t *palette, int stride); + +void fmdsp_vramlookup_neon(uint8_t *, const uint8_t *, const uint8_t *, int); +void fmdsp_vramlookup_ssse3(uint8_t *, const uint8_t *, const uint8_t *, int); #ifdef __cplusplus } #endif |