| 752 | |
| 753 | #if !defined(STBI_NO_JPEG) && defined(STBI_SSE2) |
| 754 | static int stbi__sse2_available(void) |
| 755 | { |
| 756 | int info3 = stbi__cpuid3(); |
| 757 | return ((info3 >> 26) & 1) != 0; |
| 758 | } |
| 759 | #endif |
| 760 | |
| 761 | #else // assume GCC-style if not VC++ |
no test coverage detected