Commit b6259661 by Ferenc Arn

Detect SSE/SSE2 for libsquish.

parent b6e0eaf3
......@@ -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) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment