/* * 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 #include #include #include #include #include #include #include #include #include #include namespace AZ { namespace Render { BloomSettings::BloomSettings(PostProcessFeatureProcessor* featureProcessor) : PostProcessBase(featureProcessor) { } void BloomSettings::OnConfigChanged() { m_parentSettings->OnConfigChanged(); } void BloomSettings::ApplySettingsTo(BloomSettings* target, float alpha) const { AZ_Assert(target != nullptr, "BloomSettings::ApplySettingsTo called with nullptr as argument."); // Auto-gen code to blend individual params based on their override value onto target settings #define OVERRIDE_TARGET target #define OVERRIDE_ALPHA alpha #include #include #include #undef OVERRIDE_TARGET #undef OVERRIDE_ALPHA } void BloomSettings::Simulate(float deltaTime) { m_deltaTime = deltaTime; } } // namespace Render } // namespace AZ