summaryrefslogtreecommitdiff
path: root/indra/newview/rlvhelper.h
diff options
context:
space:
mode:
authorRye <rye@lindenlab.com>2024-11-03 02:28:39 -0500
committerRye <rye@lindenlab.com>2024-11-04 01:30:20 -0800
commit687930d5094e85c13d5ae7967b09eb08a879b333 (patch)
treea4ce0040ecde0c8aef71f1ba6f107c5703dc1d6d /indra/newview/rlvhelper.h
parenta57d82b3a9337eb4ac00340e80749ac97392e03e (diff)
Integrate glow combine pass with other post process render passes to reduce another full screen copy
Diffstat (limited to 'indra/newview/rlvhelper.h')
-rw-r--r--indra/newview/rlvhelper.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/indra/newview/rlvhelper.h b/indra/newview/rlvhelper.h
index f241332594..f0ce35b816 100644
--- a/indra/newview/rlvhelper.h
+++ b/indra/newview/rlvhelper.h
@@ -49,12 +49,12 @@ namespace Rlv
enum EBehaviourFlags : uint32_t
{
// General behaviour flags
- Strict = 0x0001, // Behaviour has a "_sec" version
- Synonym = 0x0002, // Behaviour is a synonym of another
- Extended = 0x0004, // Behaviour is part of the RLVa extended command set
- Experimental = 0x0008, // Behaviour is part of the RLVa experimental command set
- Blocked = 0x0010, // Behaviour is blocked
- Deprecated = 0x0020, // Behaviour is deprecated
+ Strict = 0x0001, // Behaviour has a "_sec" version
+ Synonym = 0x0002, // Behaviour is a synonym of another
+ Extended = 0x0004, // Behaviour is part of the RLVa extended command set
+ Experimental = 0x0008, // Behaviour is part of the RLVa experimental command set
+ Blocked = 0x0010, // Behaviour is blocked
+ Deprecated = 0x0020, // Behaviour is deprecated
MaskGeneral = 0x0FFF,
// Force-wear specific flags
@@ -175,7 +175,7 @@ namespace Rlv
template<EBehaviour templBhvr> using ReplyHandler = CommandHandler<EParamType::Reply, templBhvr>;
// List of shared handlers
- using VersionReplyHandler = ReplyHandler<EBehaviour::Version>; // Shared between @version and @versionnew
+ using VersionReplyHandler = ReplyHandler<EBehaviour::Version>; // Shared between @version and @versionnew
//
// CommandProcessor - Templated glue class that brings BehaviourInfo, CommandHandlerBaseImpl and CommandHandler together