diff options
Diffstat (limited to 'src/resources/dye/dyepalette.h')
-rw-r--r-- | src/resources/dye/dyepalette.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/resources/dye/dyepalette.h b/src/resources/dye/dyepalette.h index 663f5375e..4622527fd 100644 --- a/src/resources/dye/dyepalette.h +++ b/src/resources/dye/dyepalette.h @@ -100,6 +100,28 @@ class DyePalette final const int bufSize) const restrict2; /** + * replace colors for OpenGL for S dye. + */ + void replaceSOGLColorDefault(uint32_t *restrict pixels, + const int bufSize) const restrict2; + + /** + * replace colors for OpenGL for S dye. + */ + FUNCTION_SIMD_DEFAULT + void replaceSOGLColorSimd(uint32_t *restrict pixels, + const int bufSize) const restrict2; + +#ifdef SIMD_SUPPORTED + /** + * replace colors for OpenGL for S dye. + */ + __attribute__ ((target ("avx2"))) + void replaceSOGLColorSimd(uint32_t *restrict pixels, + const int bufSize) const restrict2; +#endif // SIMD_SUPPORTED + + /** * replace colors for OpenGL for A dye. */ void replaceAOGLColor(uint32_t *restrict pixels, |