/* * 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 namespace AZ { namespace Render { PaniniProjectionSettings::PaniniProjectionSettings(PostProcessFeatureProcessor* featureProcessor) : PostProcessBase(featureProcessor) { } void PaniniProjectionSettings::OnConfigChanged() { m_parentSettings->OnConfigChanged(); } void PaniniProjectionSettings::ApplySettingsTo(PaniniProjectionSettings* target, float alpha) const { AZ_Assert(target != nullptr, "PaniniProjectionSettings::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 PaniniProjectionSettings::Simulate(float deltaTime) { m_deltaTime = deltaTime; } } // namespace Render } // namespace AZ