aboutsummaryrefslogtreecommitdiff
path: root/src/layer_context.hh
diff options
context:
space:
mode:
authorNicolas James <nj3ahxac@gmail.com>2026-04-07 13:43:50 +1000
committerNicolas James <nj3ahxac@gmail.com>2026-04-07 13:43:50 +1000
commitce26014c2e6a0200ea90eac8ec87881a0d55e727 (patch)
tree7fe1360097b8814188e70de570faac2edee80840 /src/layer_context.hh
parenta65bdd8a0aa027c97391cea807d6d30df1c22ca4 (diff)
Remove dead code, upgrade env bools to const
Diffstat (limited to 'src/layer_context.hh')
-rw-r--r--src/layer_context.hh6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/layer_context.hh b/src/layer_context.hh
index e7b24b3..4d4444d 100644
--- a/src/layer_context.hh
+++ b/src/layer_context.hh
@@ -63,12 +63,12 @@ class LayerContext final : public Context {
static constexpr auto NVIDIA_DEVICE_NAME = "NVIDIA GeForce RTX 5090";
public:
+ const bool should_expose_reflex = false;
+ const bool should_spoof_nvidia = false;
+
std::shared_mutex mutex;
std::unordered_map<void*, std::shared_ptr<Context>> contexts;
- bool should_expose_reflex = false;
- bool should_spoof_nvidia = false;
-
public:
LayerContext();
virtual ~LayerContext();