AudioSystemImplCVars.h 773 B

123456789101112131415161718192021222324252627
  1. /*
  2. * Copyright (c) Contributors to the Open 3D Engine Project.
  3. * For complete copyright and license terms please see the LICENSE at the root of this distribution.
  4. *
  5. * SPDX-License-Identifier: Apache-2.0 OR MIT
  6. *
  7. */
  8. #pragma once
  9. #include <AzCore/Console/IConsole.h>
  10. namespace Audio::Wwise::Cvars
  11. {
  12. AZ_CVAR_EXTERNED(AZ::u64, s_PrimaryMemorySize);
  13. AZ_CVAR_EXTERNED(AZ::u64, s_SecondaryMemorySize);
  14. AZ_CVAR_EXTERNED(AZ::u64, s_StreamDeviceMemorySize);
  15. AZ_CVAR_EXTERNED(AZ::u64, s_CommandQueueMemorySize);
  16. #if !defined(WWISE_RELEASE)
  17. AZ_CVAR_EXTERNED(AZ::u64, s_MonitorQueueMemorySize);
  18. AZ_CVAR_EXTERNED(bool, s_EnableCommSystem);
  19. AZ_CVAR_EXTERNED(bool, s_EnableOutputCapture);
  20. #endif // !WWISE_RELEASE
  21. } // namespace Audio::Wwise::Cvars