Add new option for recording overlays

This commit is contained in:
Megamouse 2025-03-03 23:08:40 +01:00
parent f913edede4
commit 78401f22f4

View file

@ -180,6 +180,7 @@ struct cfg_root : cfg::node
cfg::_bool disable_msl_fast_math{ this, "Disable MSL Fast Math", false };
cfg::_bool disable_async_host_memory_manager{ this, "Disable Asynchronous Memory Manager", false, true };
cfg::_enum<output_scaling_mode> output_scaling{ this, "Output Scaling Mode", output_scaling_mode::bilinear, true };
cfg::_bool record_with_overlays{ this, "Record With Overlays", true, true };
struct node_vk : cfg::node
{