* Fixed build for non-x86 platforms.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@42791 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler
2011-09-30 20:24:39 +00:00
parent ac592b5638
commit 1144475973
+5 -1
View File
@@ -5,10 +5,12 @@
* All rights reserved. Distributed under the terms of the MIT License. * All rights reserved. Distributed under the terms of the MIT License.
*/ */
/*! API to the Anti-Grain Geometry based "Painter" drawing backend. Manages /*! API to the Anti-Grain Geometry based "Painter" drawing backend. Manages
rendering pipe-lines for stroke, fills, bitmap and text rendering. rendering pipe-lines for stroke, fills, bitmap and text rendering.
*/ */
#include "Painter.h" #include "Painter.h"
#include <new> #include <new>
@@ -154,7 +156,9 @@ detect_simd()
systemSIMD &= cpuSIMD; systemSIMD &= cpuSIMD;
} }
return systemSIMD; return systemSIMD;
#endif // __INTEL__ #else // !__INTEL__
return 0;
#endif
} }