| 777 | |
| 778 | #if !defined(STBI_NO_JPEG) && defined(STBI_SSE2) |
| 779 | static int stbi__sse2_available(void) { |
| 780 | int info3 = stbi__cpuid3(); |
| 781 | return ((info3 >> 26) & 1) != 0; |
| 782 | } |
| 783 | #endif |
| 784 | |
| 785 | #else // assume GCC-style if not VC++ |
no test coverage detected