virtualx-engine/core/config
Matias N. Goldberg 59d0422dcd 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
2024-08-24 20:52:39 -03:00
..
engine.cpp Disable extra memory tracking by default 2024-08-24 20:52:39 -03:00
engine.h Disable extra memory tracking by default 2024-08-24 20:52:39 -03:00
project_settings.cpp Merge pull request #94799 from m4gr3d/memory_allocation_cleanup_and_optimizations 2024-08-16 23:45:39 +02:00
project_settings.h Allow loading custom ProjectSettings instance 2024-04-26 11:34:37 +02:00
SCsub