summaryrefslogtreecommitdiffstats
path: root/core/config/engine.h
diff options
context:
space:
mode:
authorRémi Verschelde <remi@verschelde.fr>2022-01-17 13:34:23 +0100
committerGitHub <noreply@github.com>2022-01-17 13:34:23 +0100
commitd9a4ff7583c137b661c7347179a9b0f54696eef7 (patch)
treef764892d84e4d8b70f6a7ecb64c552774c0b5e45 /core/config/engine.h
parent8bdef23f7f26e085587e3dbcb5063dea2768cc88 (diff)
parentb11e619b193470050da2fd20fd4cbdb9e791e2b3 (diff)
downloadredot-engine-d9a4ff7583c137b661c7347179a9b0f54696eef7.tar.gz
Merge pull request #55020 from bruvzg/vlk_device_surface_check
Diffstat (limited to 'core/config/engine.h')
-rw-r--r--core/config/engine.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/core/config/engine.h b/core/config/engine.h
index 3ec522eafc..65ca58ba1a 100644
--- a/core/config/engine.h
+++ b/core/config/engine.h
@@ -63,6 +63,7 @@ private:
double _physics_interpolation_fraction = 0.0f;
bool abort_on_gpu_errors = false;
bool use_validation_layers = false;
+ int32_t gpu_idx = -1;
uint64_t _process_frames = 0;
bool _in_physics = false;
@@ -135,6 +136,7 @@ public:
bool is_abort_on_gpu_errors_enabled() const;
bool is_validation_layers_enabled() const;
+ int32_t get_gpu_index() const;
Engine();
virtual ~Engine() {}