diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-05-26 01:02:19 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-05-26 01:02:19 +0300 |
commit | 6d22ebb4fc8da473aab7d7753b40d6ce04def6d1 (patch) | |
tree | 17948ad98259e919be8349d27b8d1d2c20f40980 /src/resources/dye/dyepalette.h | |
parent | 4a82a7a000c1b46b21ccb96029e453dd614b25b3 (diff) | |
download | plus-6d22ebb4fc8da473aab7d7753b40d6ce04def6d1.tar.gz plus-6d22ebb4fc8da473aab7d7753b40d6ce04def6d1.tar.bz2 plus-6d22ebb4fc8da473aab7d7753b40d6ce04def6d1.tar.xz plus-6d22ebb4fc8da473aab7d7753b40d6ce04def6d1.zip |
Fix compilation without simd support.
Diffstat (limited to 'src/resources/dye/dyepalette.h')
-rw-r--r-- | src/resources/dye/dyepalette.h | 55 |
1 files changed, 29 insertions, 26 deletions
diff --git a/src/resources/dye/dyepalette.h b/src/resources/dye/dyepalette.h index 06473ec69..80e5f53c2 100644 --- a/src/resources/dye/dyepalette.h +++ b/src/resources/dye/dyepalette.h @@ -73,6 +73,12 @@ class DyePalette final void replaceSColorDefault(uint32_t *restrict pixels, const int bufSize) const restrict2; + /** + * replace colors for SDL for A dye. + */ + void replaceAColorDefault(uint32_t *restrict pixels, + const int bufSize) const restrict2; + #ifdef SIMD_SUPPORTED /** * replace colors for SDL for S dye. @@ -87,18 +93,10 @@ class DyePalette final __attribute__ ((target ("avx2"))) void replaceSColorAvx2(uint32_t *restrict pixels, const int bufSize) const restrict2; -#endif // SIMD_SUPPORTED /** * replace colors for SDL for A dye. */ - void replaceAColorDefault(uint32_t *restrict pixels, - const int bufSize) const restrict2; - -#ifdef SIMD_SUPPORTED - /** - * replace colors for SDL for A dye. - */ __attribute__ ((target ("sse2"))) void replaceAColorSse2(uint32_t *restrict pixels, const int bufSize) const restrict2; @@ -119,6 +117,13 @@ class DyePalette final const int bufSize) const restrict2; #ifdef SIMD_SUPPORTED /** + * replace colors for OpenGL for A dye. + */ + __attribute__ ((target ("avx2"))) + void replaceAOGLColorAvx2(uint32_t *restrict pixels, + const int bufSize) const restrict2; + + /** * replace colors for OpenGL for S dye. */ __attribute__ ((target ("sse2"))) @@ -130,28 +135,21 @@ class DyePalette final __attribute__ ((target ("avx2"))) void replaceSOGLColorAvx2(uint32_t *restrict pixels, const int bufSize) const restrict2; -#endif // SIMD_SUPPORTED /** * replace colors for OpenGL for A dye. */ - void replaceAOGLColorDefault(uint32_t *restrict pixels, - const int bufSize) const restrict2; - -#ifdef SIMD_SUPPORTED - /** - * replace colors for OpenGL for A dye. - */ __attribute__ ((target ("sse2"))) void replaceAOGLColorSse2(uint32_t *restrict pixels, const int bufSize) const restrict2; +#endif // SIMD_SUPPORTED + /** * replace colors for OpenGL for A dye. */ - __attribute__ ((target ("avx2"))) - void replaceAOGLColorAvx2(uint32_t *restrict pixels, - const int bufSize) const restrict2; -#endif // SIMD_SUPPORTED + void replaceAOGLColorDefault(uint32_t *restrict pixels, + const int bufSize) const restrict2; + #endif // USE_OPENGL static unsigned int hexDecode(const signed char c) @@ -163,18 +161,23 @@ class DyePalette final static void initFunctions(); - static DyeFunctionPtr funcReplaceSColor; - static DyeFunctionPtr funcReplaceSColorSse2; - static DyeFunctionPtr funcReplaceSColorAvx2; +#ifdef SIMD_SUPPORTED +#ifdef USE_OPENGL static DyeFunctionPtr funcReplaceSOGLColor; static DyeFunctionPtr funcReplaceSOGLColorSse2; static DyeFunctionPtr funcReplaceSOGLColorAvx2; - static DyeFunctionPtr funcReplaceAColor; - static DyeFunctionPtr funcReplaceAColorSse2; - static DyeFunctionPtr funcReplaceAColorAvx2; static DyeFunctionPtr funcReplaceAOGLColor; static DyeFunctionPtr funcReplaceAOGLColorSse2; static DyeFunctionPtr funcReplaceAOGLColorAvx2; +#endif // USE_OPENGL + + static DyeFunctionPtr funcReplaceSColor; + static DyeFunctionPtr funcReplaceSColorSse2; + static DyeFunctionPtr funcReplaceSColorAvx2; + static DyeFunctionPtr funcReplaceAColor; + static DyeFunctionPtr funcReplaceAColorSse2; + static DyeFunctionPtr funcReplaceAColorAvx2; +#endif // SIMD_SUPPORTED #ifndef UNITTESTS private: |