diff options
author | Matias N. Goldberg <dark_sylinc@yahoo.com.ar> | 2024-08-24 17:39:46 -0300 |
---|---|---|
committer | Matias N. Goldberg <dark_sylinc@yahoo.com.ar> | 2024-08-24 20:52:39 -0300 |
commit | 59d0422dcd59686689d915000a800ed6c7753f00 (patch) | |
tree | 42af809efbd1bf3f8b87cee9832ca16d32a66f74 /core/config/engine.h | |
parent | e3550cb20f5d6a61befaafb7d9cbdb57b24870e4 (diff) | |
download | redot-engine-59d0422dcd59686689d915000a800ed6c7753f00.tar.gz |
Disable extra memory tracking by default
PR #90993 added several debugging utilities.
Among them, advanced memory tracking through the use of custom
allocators and VK_EXT_device_memory_report.
However as issue #95967 reveals, it is dangerous to leave it on by
default because drivers (or even the Vulkan loader) can too easily
accidentally break custom allocators by allocating memory through std
malloc but then request us to deallocate it (or viceversa).
This PR fixes the following problems:
- Adds --extra-gpu-memory-tracking cmd line argument
- Adds missing enum entries to
RenderingContextDriverVulkan::VkTrackedObjectType
- Adds RenderingDevice::get_driver_and_device_memory_report
- GDScript users can easily check via print(
RenderingServer.get_rendering_device().get_driver_and_device_memory_report()
)
- Uses get_driver_and_device_memory_report on device lost for appending
further info.
Fixes #95967
Diffstat (limited to 'core/config/engine.h')
-rw-r--r-- | core/config/engine.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/config/engine.h b/core/config/engine.h index 7e617d8773..f858eba328 100644 --- a/core/config/engine.h +++ b/core/config/engine.h @@ -72,6 +72,7 @@ private: bool abort_on_gpu_errors = false; bool use_validation_layers = false; bool generate_spirv_debug_info = false; + bool extra_gpu_memory_tracking = false; int32_t gpu_idx = -1; uint64_t _process_frames = 0; @@ -181,6 +182,7 @@ public: bool is_abort_on_gpu_errors_enabled() const; bool is_validation_layers_enabled() const; bool is_generate_spirv_debug_info_enabled() const; + bool is_extra_gpu_memory_tracking_enabled() const; int32_t get_gpu_index() const; void increment_frames_drawn(); |