aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llcommon/llsys.h
diff options
context:
space:
mode:
authorJacek Antonelli2008-08-15 23:45:02 -0500
committerJacek Antonelli2008-08-15 23:45:02 -0500
commitd644fc64407dcd14ffcee6a0e9fbe28ee3a4e9bd (patch)
tree7ed0c2c27d717801238a2e6b5749cd5bf88c3059 /linden/indra/llcommon/llsys.h
parentSecond Life viewer sources 1.17.3.0 (diff)
downloadmeta-impy-d644fc64407dcd14ffcee6a0e9fbe28ee3a4e9bd.zip
meta-impy-d644fc64407dcd14ffcee6a0e9fbe28ee3a4e9bd.tar.gz
meta-impy-d644fc64407dcd14ffcee6a0e9fbe28ee3a4e9bd.tar.bz2
meta-impy-d644fc64407dcd14ffcee6a0e9fbe28ee3a4e9bd.tar.xz
Second Life viewer sources 1.18.0.6
Diffstat (limited to 'linden/indra/llcommon/llsys.h')
-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};