/* * 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 #include #include #include #include #include namespace AZ { namespace Render { RPI::Ptr BloomParentPass::Create(const RPI::PassDescriptor& descriptor) { RPI::Ptr pass = aznew BloomParentPass(descriptor); return pass; } BloomParentPass::BloomParentPass(const RPI::PassDescriptor& descriptor) : RPI::ParentPass(descriptor) { } bool BloomParentPass::IsEnabled() const { if (!ParentPass::IsEnabled()) { return false; } const RPI::Scene* scene = GetScene(); if (!scene) { return false; } PostProcessFeatureProcessor* fp = scene->GetFeatureProcessor(); const RPI::ViewPtr view = GetRenderPipeline()->GetDefaultView(); if (!fp) { return false; } PostProcessSettings* postProcessSettings = fp->GetLevelSettingsFromView(view); if (!postProcessSettings) { return false; } const BloomSettings* bloomSettings = postProcessSettings->GetBloomSettings(); return (bloomSettings != nullptr) && bloomSettings->GetEnabled(); } } // namespace Render } // namespace AZ