comparison cpudetect.c @ 12087:296582b19611

reenable SSE support for mingw
author faust3
date Thu, 01 Apr 2004 10:19:57 +0000
parents 909093c314e9
children da228f2485d9
comparison
equal deleted inserted replaced
12086:74df39a4596f 12087:296582b19611
168 gCpuCaps.has3DNow, 168 gCpuCaps.has3DNow,
169 gCpuCaps.has3DNowExt ); 169 gCpuCaps.has3DNowExt );
170 #endif 170 #endif
171 171
172 /* FIXME: Does SSE2 need more OS support, too? */ 172 /* FIXME: Does SSE2 need more OS support, too? */
173 #if defined(__linux__) || defined(__FreeBSD__) || defined(__NetBSD__) || defined(__CYGWIN__) 173 #if defined(__linux__) || defined(__FreeBSD__) || defined(__NetBSD__) || defined(__CYGWIN__) || defined(__MINGW32__)
174 if (caps->hasSSE) 174 if (caps->hasSSE)
175 check_os_katmai_support(); 175 check_os_katmai_support();
176 if (!caps->hasSSE) 176 if (!caps->hasSSE)
177 caps->hasSSE2 = 0; 177 caps->hasSSE2 = 0;
178 #else 178 #else