You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
2.1 KiB
C++
63 lines
2.1 KiB
C++
/*
|
|
* 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 <Atom/RPI.Public/RenderPipeline.h>
|
|
#include <Atom_Feature_Traits_Platform.h>
|
|
#include <DiffuseGlobalIllumination/DiffuseProbeGridVisualizationCompositePass.h>
|
|
#include <DiffuseGlobalIllumination/DiffuseProbeGridFeatureProcessor.h>
|
|
|
|
namespace AZ
|
|
{
|
|
namespace Render
|
|
{
|
|
RPI::Ptr<DiffuseProbeGridVisualizationCompositePass> DiffuseProbeGridVisualizationCompositePass::Create(const RPI::PassDescriptor& descriptor)
|
|
{
|
|
RPI::Ptr<DiffuseProbeGridVisualizationCompositePass> pass = aznew DiffuseProbeGridVisualizationCompositePass(descriptor);
|
|
return AZStd::move(pass);
|
|
}
|
|
|
|
DiffuseProbeGridVisualizationCompositePass::DiffuseProbeGridVisualizationCompositePass(const RPI::PassDescriptor& descriptor)
|
|
: RPI::FullscreenTrianglePass(descriptor)
|
|
{
|
|
if (!AZ_TRAIT_DIFFUSE_GI_PASSES_SUPPORTED)
|
|
{
|
|
SetEnabled(false);
|
|
}
|
|
}
|
|
|
|
bool DiffuseProbeGridVisualizationCompositePass::IsEnabled() const
|
|
{
|
|
if (!FullscreenTrianglePass::IsEnabled())
|
|
{
|
|
return false;
|
|
}
|
|
|
|
RPI::Scene* scene = m_pipeline->GetScene();
|
|
if (!scene)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
DiffuseProbeGridFeatureProcessor* diffuseProbeGridFeatureProcessor = scene->GetFeatureProcessor<DiffuseProbeGridFeatureProcessor>();
|
|
if (diffuseProbeGridFeatureProcessor)
|
|
{
|
|
for (auto& diffuseProbeGrid : diffuseProbeGridFeatureProcessor->GetVisibleProbeGrids())
|
|
{
|
|
if (diffuseProbeGrid->GetVisualizationEnabled())
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
} // namespace RPI
|
|
} // namespace AZ
|