summaryrefslogtreecommitdiff
path: root/indra/newview/llsettingswater.h
diff options
context:
space:
mode:
authorRider Linden <rider@lindenlab.com>2017-11-27 15:17:54 -0800
committerRider Linden <rider@lindenlab.com>2017-11-27 15:17:54 -0800
commite947481d30b51e731947d85de45065d5b0c02e45 (patch)
treeec9ef04c1ba175aa6e49b96e072e24286baadff3 /indra/newview/llsettingswater.h
parent28b98374da7acf4fc2eec2a243e951d1786f33a1 (diff)
Start viewer/common split
Diffstat (limited to 'indra/newview/llsettingswater.h')
-rw-r--r--indra/newview/llsettingswater.h23
1 files changed, 16 insertions, 7 deletions
diff --git a/indra/newview/llsettingswater.h b/indra/newview/llsettingswater.h
index a62fa355de..aa60861bd4 100644
--- a/indra/newview/llsettingswater.h
+++ b/indra/newview/llsettingswater.h
@@ -203,14 +203,12 @@ public:
protected:
LLSettingsWater();
- virtual void updateSettings();
-
virtual parammapping_t getParameterMap() const;
- virtual void applySpecial(void *);
-
virtual validation_list_t getValidationList() const;
+ LLVector4 mWaterPlane;
+ F32 mWaterFogKS;
private:
static const std::string SETTING_LEGACY_BLUR_MULTIPILER;
static const std::string SETTING_LEGACY_FOG_COLOR;
@@ -224,11 +222,22 @@ private:
static const std::string SETTING_LEGACY_SCALE_BELOW;
static const std::string SETTING_LEGACY_WAVE1_DIR;
static const std::string SETTING_LEGACY_WAVE2_DIR;
+};
+
+class LLSettingsVOWater : public LLSettingsWater
+{
+public:
+ LLSettingsVOWater(const LLSD &data);
- static const F32 WATER_FOG_LIGHT_CLAMP;
+protected:
+ LLSettingsVOWater();
+
+ virtual void updateSettings();
+ virtual void applySpecial(void *);
+
+private:
+ static const F32 WATER_FOG_LIGHT_CLAMP;
- LLVector4 mWaterPlane;
- F32 mWaterFogKS;
};
#endif