[Bf-blender-cvs] [93ca4eeec13] master: Cleanup: remove unused functions

Brecht Van Lommel noreply at git.blender.org
Mon Jan 16 19:41:51 CET 2023


Commit: 93ca4eeec135b2c0fe77b70cd982ed0e93e414cf
Author: Brecht Van Lommel
Date:   Mon Jan 16 19:40:25 2023 +0100
Branches: master
https://developer.blender.org/rB93ca4eeec135b2c0fe77b70cd982ed0e93e414cf

Cleanup: remove unused functions

===================================================================

M	intern/cycles/util/system.cpp

===================================================================

diff --git a/intern/cycles/util/system.cpp b/intern/cycles/util/system.cpp
index 3183ac06f26..c1c496380c5 100644
--- a/intern/cycles/util/system.cpp
+++ b/intern/cycles/util/system.cpp
@@ -204,24 +204,12 @@ bool system_cpu_support_sse2()
   return caps.sse2;
 }
 
-bool system_cpu_support_sse3()
-{
-  CPUCapabilities &caps = system_cpu_capabilities();
-  return caps.sse3;
-}
-
 bool system_cpu_support_sse41()
 {
   CPUCapabilities &caps = system_cpu_capabilities();
   return caps.sse41;
 }
 
-bool system_cpu_support_avx()
-{
-  CPUCapabilities &caps = system_cpu_capabilities();
-  return caps.avx;
-}
-
 bool system_cpu_support_avx2()
 {
   CPUCapabilities &caps = system_cpu_capabilities();
@@ -234,20 +222,11 @@ bool system_cpu_support_sse2()
   return false;
 }
 
-bool system_cpu_support_sse3()
-{
-  return false;
-}
-
 bool system_cpu_support_sse41()
 {
   return false;
 }
 
-bool system_cpu_support_avx()
-{
-  return false;
-}
 bool system_cpu_support_avx2()
 {
   return false;



More information about the Bf-blender-cvs mailing list