diff options
Diffstat (limited to 'src/resources/dye/dyepalette.h')
-rw-r--r-- | src/resources/dye/dyepalette.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/src/resources/dye/dyepalette.h b/src/resources/dye/dyepalette.h index ede36eb6d..3eefb4d2c 100644 --- a/src/resources/dye/dyepalette.h +++ b/src/resources/dye/dyepalette.h @@ -204,13 +204,45 @@ class DyePalette final void replaceSOGLColorSimd(uint32_t *restrict pixels, const int bufSize) const restrict2; + /** + * replace colors for OpenGL for S dye. + */ + FUNCTION_SIMD_DEFAULT + void replaceSOGLColorSse2(uint32_t *restrict pixels, + const int bufSize) const restrict2; + + /** + * replace colors for OpenGL for S dye. + */ + FUNCTION_SIMD_DEFAULT + void replaceSOGLColorAvx2(uint32_t *restrict pixels, + const int bufSize) const restrict2; + #ifdef SIMD_SUPPORTED /** * replace colors for OpenGL for S dye. */ + __attribute__ ((target ("sse2"))) + void replaceSOGLColorSimd(uint32_t *restrict pixels, + const int bufSize) const restrict2; + /** + * replace colors for OpenGL for S dye. + */ __attribute__ ((target ("avx2"))) void replaceSOGLColorSimd(uint32_t *restrict pixels, const int bufSize) const restrict2; + /** + * replace colors for OpenGL for S dye. + */ + __attribute__ ((target ("sse2"))) + void replaceSOGLColorSse2(uint32_t *restrict pixels, + const int bufSize) const restrict2; + /** + * replace colors for OpenGL for S dye. + */ + __attribute__ ((target ("avx2"))) + void replaceSOGLColorAvx2(uint32_t *restrict pixels, + const int bufSize) const restrict2; #endif // SIMD_SUPPORTED /** |