Merge pull request #8571 from tagcup/squish_sse
Detect SSE/SSE2 for libsquish.
This commit is contained in:
commit
9a40b92b8a
1 changed files with 6 additions and 0 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue