* 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:
@@ -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
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user