Updated the EnvironmentCubeMapPipeline to match recent changes to the MainPipeline.

Set the multisample state on the EnvironmentCubeMapPipeline render settings.
This commit is contained in:
dmcdiar
2021-04-18 14:57:52 -07:00
parent cc6393b074
commit 456bcb3bf9
5 changed files with 45 additions and 112 deletions
@@ -248,6 +248,9 @@ namespace AZ
AZ::RPI::RenderPipelineDescriptor environmentCubeMapPipelineDesc;
environmentCubeMapPipelineDesc.m_mainViewTagName = "MainCamera";
environmentCubeMapPipelineDesc.m_renderSettings.m_multisampleState.m_samples = 4;
environmentCubeMapPipelineDesc.m_renderSettings.m_size.m_width = RPI::EnvironmentCubeMapPass::CubeMapFaceSize;
environmentCubeMapPipelineDesc.m_renderSettings.m_size.m_height = RPI::EnvironmentCubeMapPass::CubeMapFaceSize;
// create a unique name for the pipeline
AZ::Uuid uuid = AZ::Uuid::CreateRandom();