Веб-сайт самохостера Lotigara

summaryrefslogtreecommitdiff
path: root/source/client/StarClientApplication.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/client/StarClientApplication.hpp')
-rw-r--r--source/client/StarClientApplication.hpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/source/client/StarClientApplication.hpp b/source/client/StarClientApplication.hpp
index 86b50a3..2fcddb7 100644
--- a/source/client/StarClientApplication.hpp
+++ b/source/client/StarClientApplication.hpp
@@ -19,8 +19,9 @@ STAR_CLASS(Voice);
class ClientApplication : public Application {
public:
- void setPostProcessGroupEnabled(String group, bool enabled, Maybe<bool> save);
- bool postProcessGroupEnabled(String group);
+ void setPostProcessLayerPasses(String const& layer, unsigned const& passes);
+ void setPostProcessGroupEnabled(String const& group, bool const& enabled, Maybe<bool> const& save);
+ bool postProcessGroupEnabled(String const& group);
Json postProcessGroups();
protected:
@@ -116,6 +117,7 @@ private:
StringMap<PostProcessGroup> m_postProcessGroups;
List<PostProcessLayer> m_postProcessLayers;
+ StringMap<size_t> m_labelledPostProcessLayers;
// Valid if main app state == SinglePlayer
UniverseServerPtr m_universeServer;