diff options
author | Steven Bennetts <steve@lindenlab.com> | 2007-01-23 19:12:31 +0000 |
---|---|---|
committer | Steven Bennetts <steve@lindenlab.com> | 2007-01-23 19:12:31 +0000 |
commit | 7f50e28b0f3905f95299f7d5d63e0fd82e103bed (patch) | |
tree | 99c01f8184cc9a5ca90484661b30a8ac6dcd60f4 /indra/newview/llfeaturemanager.h | |
parent | 47576ad1f77ecbe606fa1bd3addac610fad43dd7 (diff) |
merge -r 56842:57026 maintenance.
Diffstat (limited to 'indra/newview/llfeaturemanager.h')
-rw-r--r-- | indra/newview/llfeaturemanager.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/indra/newview/llfeaturemanager.h b/indra/newview/llfeaturemanager.h index 98f9317b01..fe37cd7638 100644 --- a/indra/newview/llfeaturemanager.h +++ b/indra/newview/llfeaturemanager.h @@ -65,9 +65,10 @@ public: void maskCurrentList(const char *name); // Mask the current feature list with the named list BOOL loadFeatureTables(); - S32 getGPUClass(); - S32 loadGPUClass(); + S32 getGPUClass() { return mGPUClass; } + std::string& getGPUString() { return mGPUString; } + void cleanupFeatureTables(); S32 getVersion() const { return mTableVersion; } @@ -83,7 +84,9 @@ public: BOOL initPCIFeatureMasks(); void applyRecommendedFeatures(); + protected: + void loadGPUClass(); void initBaseMask(); std::map<LLString, LLFeatureList *> mMaskList; @@ -91,6 +94,7 @@ protected: S32 mTableVersion; BOOL mSafe; // Reinitialize everything to the "safe" mask S32 mGPUClass; + std::string mGPUString; }; extern LLFeatureManager *gFeatureManagerp; |