Skip to content

Commit

Permalink
Disable Frame Analyzer in DCS World since it produces worse effects.
Browse files Browse the repository at this point in the history
(cherry picked from commit cde319d)
  • Loading branch information
mbucchia committed Jan 31, 2023
1 parent d4926dc commit 8f25b64
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion XR_APILAYER_NOVENDOR_toolkit/layer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,8 @@ namespace {
: 0);
// We disable the frame analyzer when using OpenComposite, because the app does not see the OpenXR
// textures anyways.
m_configManager->setDefault("disable_frame_analyzer", !m_isOpenComposite ? 0 : 1);
m_configManager->setDefault("disable_frame_analyzer",
m_isOpenComposite || m_applicationName == "DCS World");
m_configManager->setDefault("canting", 0);
m_configManager->setDefault("vrs_capture", 0);
m_configManager->setDefault("force_vprt_path", 0);
Expand Down

0 comments on commit 8f25b64

Please sign in to comment.