diff options
author | Callum Prentice <callum@lindenlab.com> | 2010-03-04 14:33:25 -0800 |
---|---|---|
committer | Callum Prentice <callum@lindenlab.com> | 2010-03-04 14:33:25 -0800 |
commit | 88cf648176f9ce8214516f4d81d8d1cd55cede2f (patch) | |
tree | 9aac41a6c360fe826aaef02cbfd284e06f9b5770 /indra/llcommon/llsys.h | |
parent | 34c8f6f7fa728c139a0da0deaccf6fda3d228680 (diff) | |
parent | 14579a1ccab2817b019a61ffe1ac6b5edc3eb146 (diff) |
Merge with tip
Diffstat (limited to 'indra/llcommon/llsys.h')
-rw-r--r-- | indra/llcommon/llsys.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/indra/llcommon/llsys.h b/indra/llcommon/llsys.h index c2c45bec9a..aa3fdd485b 100644 --- a/indra/llcommon/llsys.h +++ b/indra/llcommon/llsys.h @@ -122,6 +122,21 @@ public: U32 getPhysicalMemoryClamped() const; ///< Memory size in clamped bytes }; +//============================================================================= +// +// CLASS LLDisplayInfo +class LL_COMMON_API LLDisplayInfo + +/*! @brief Class to query the information about some display settings +*/ +{ +public: + LLDisplayInfo(){}; ///< Default constructor + + S32 getDisplayWidth() const; ///< display width + S32 getDisplayHeight() const; ///< display height + +}; LL_COMMON_API std::ostream& operator<<(std::ostream& s, const LLOSInfo& info); LL_COMMON_API std::ostream& operator<<(std::ostream& s, const LLCPUInfo& info); |