[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [57228] trunk/blender/intern/cycles/util/ util_system.cpp: Fix build error on non-x86 architectures as pointed out by Jochen Schmitt.

Brecht Van Lommel brechtvanlommel at pandora.be
Tue Jun 4 13:21:13 CEST 2013


Revision: 57228
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=57228
Author:   blendix
Date:     2013-06-04 11:21:13 +0000 (Tue, 04 Jun 2013)
Log Message:
-----------
Fix build error on non-x86 architectures as pointed out by Jochen Schmitt.

Modified Paths:
--------------
    trunk/blender/intern/cycles/util/util_system.cpp

Modified: trunk/blender/intern/cycles/util/util_system.cpp
===================================================================
--- trunk/blender/intern/cycles/util/util_system.cpp	2013-06-04 07:41:21 UTC (rev 57227)
+++ trunk/blender/intern/cycles/util/util_system.cpp	2013-06-04 11:21:13 UTC (rev 57228)
@@ -199,11 +199,16 @@
 
 #else
 
-bool system_cpu_support_optimized()
+bool system_cpu_support_sse2()
 {
 	return false;
 }
 
+bool system_cpu_support_sse3()
+{
+	return false;
+}
+
 #endif
 
 CCL_NAMESPACE_END




More information about the Bf-blender-cvs mailing list