aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llcommon/llsys.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--linden/indra/llcommon/llsys.h12
1 files changed, 5 insertions, 7 deletions
diff --git a/linden/indra/llcommon/llsys.h b/linden/indra/llcommon/llsys.h
index 83ea081..2047d9a 100644
--- a/linden/indra/llcommon/llsys.h
+++ b/linden/indra/llcommon/llsys.h
@@ -72,18 +72,16 @@ public:
72 72
73 std::string getCPUString() const; 73 std::string getCPUString() const;
74 74
75 bool hasAltivec() const; 75 BOOL hasSSE() const { return mHasSSE; }
76 bool hasSSE() const; 76 BOOL hasSSE2() const { return mHasSSE2; }
77 bool hasSSE2() const; 77 S32 getMhz() const { return mCPUMhz; }
78 S32 getMhz() const;
79 78
80 // Family is "AMD Duron" or "Intel Pentium Pro" 79 // Family is "AMD Duron" or "Intel Pentium Pro"
81 const std::string& getFamily() const { return mFamily; } 80 const std::string& getFamily() const { return mFamily; }
82 81
83private: 82private:
84 bool mHasSSE; 83 BOOL mHasSSE;
85 bool mHasSSE2; 84 BOOL mHasSSE2;
86 bool mHasAltivec;
87 S32 mCPUMhz; 85 S32 mCPUMhz;
88 std::string mFamily; 86 std::string mFamily;
89}; 87};