Explorar el Código

Detect SSE/SSE2 for libsquish.

Ferenc Arn hace 8 años
padre
commit
b6259661ce
Se han modificado 1 ficheros con 6 adiciones y 0 borrados
  1. 6 0
      modules/squish/image_compress_squish.cpp

+ 6 - 0
modules/squish/image_compress_squish.cpp

@@ -31,6 +31,12 @@
 
 #include "print_string.h"
 
+#if defined(__SSE2__)
+#define SQUISH_USE_SSE 2
+#elif defined(__SSE__)
+#define SQUISH_USE_SSE 1
+#endif
+
 #include <squish.h>
 
 void image_compress_squish(Image *p_image) {