12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- /*
- * Copyright (c) Contributors to the Open 3D Engine Project.
- * For complete copyright and license terms please see the LICENSE at the root of this distribution.
- *
- * SPDX-License-Identifier: Apache-2.0 OR MIT
- *
- */
- #include <SampleComponentManager.h>
- namespace AtomSampleViewer
- {
- bool SampleComponentManager::IsMultiViewportSwapchainSampleSupported()
- {
- return true;
- }
- void SampleComponentManager::AdjustImGuiFontScale()
- {
- }
- const char* SampleComponentManager::GetRootPassTemplateName()
- {
- // Use Low end pipeline template for VR
- AZ::RPI::XRRenderingInterface* xrSystem = AZ::RPI::RPISystemInterface::Get()->GetXRSystem();
- if(xrSystem)
- {
- return "LowEndPipelineTemplate";
- }
- return "MainPipeline";
- }
- int SampleComponentManager::GetDefaultNumMSAASamples()
- {
- // Use sample count of 1 for VR pipelines
- AZ::RPI::XRRenderingInterface* xrSystem = AZ::RPI::RPISystemInterface::Get()->GetXRSystem();
- if (xrSystem)
- {
- return 1;
- }
- return 4;
- }
- } // namespace AtomSampleViewer
|