diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-01-17 13:34:23 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-17 13:34:23 +0100 |
commit | d9a4ff7583c137b661c7347179a9b0f54696eef7 (patch) | |
tree | f764892d84e4d8b70f6a7ecb64c552774c0b5e45 /core/config | |
parent | 8bdef23f7f26e085587e3dbcb5063dea2768cc88 (diff) | |
parent | b11e619b193470050da2fd20fd4cbdb9e791e2b3 (diff) |
Merge pull request #55020 from bruvzg/vlk_device_surface_check
Diffstat (limited to 'core/config')
-rw-r--r-- | core/config/engine.cpp | 4 | ||||
-rw-r--r-- | core/config/engine.h | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/core/config/engine.cpp b/core/config/engine.cpp index 0a13becf6d..d9abf5e5e9 100644 --- a/core/config/engine.cpp +++ b/core/config/engine.cpp @@ -186,6 +186,10 @@ bool Engine::is_abort_on_gpu_errors_enabled() const { return abort_on_gpu_errors; } +int32_t Engine::get_gpu_index() const { + return gpu_idx; +} + bool Engine::is_validation_layers_enabled() const { return use_validation_layers; } 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() {} |