summaryrefslogtreecommitdiff
path: root/src/resources/dye/dyepalette.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/resources/dye/dyepalette.h')
-rw-r--r--src/resources/dye/dyepalette.h43
1 files changed, 3 insertions, 40 deletions
diff --git a/src/resources/dye/dyepalette.h b/src/resources/dye/dyepalette.h
index da165305e..4129928fa 100644
--- a/src/resources/dye/dyepalette.h
+++ b/src/resources/dye/dyepalette.h
@@ -155,53 +155,13 @@ class DyePalette final
/**
* replace colors for OpenGL for S dye.
*/
- void replaceSOGLColor(uint32_t *restrict pixels,
- 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;
-
- /**
- * 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;
/**
@@ -285,6 +245,9 @@ class DyePalette final
static DyeFunctionPtr funcReplaceSColor;
static DyeFunctionPtr funcReplaceSColorSse2;
static DyeFunctionPtr funcReplaceSColorAvx2;
+ static DyeFunctionPtr funcReplaceSOGLColor;
+ static DyeFunctionPtr funcReplaceSOGLColorSse2;
+ static DyeFunctionPtr funcReplaceSOGLColorAvx2;
#ifndef UNITTESTS
private: