| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- /*
- * 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
- *
- */
- #pragma once
- #include <AzCore/RTTI/ReflectContext.h>
- #include <Atom/RHI.Reflect/ShaderResourceGroupLayoutDescriptor.h>
- #include <Atom/Feature/PostProcess/Bloom/BloomSettingsInterface.h>
- #include <Atom/RPI.Public/Image/StreamingImage.h>
- #include <PostProcess/PostProcessBase.h>
- #include <Atom/RPI.Public/View.h>
- namespace AZ
- {
- namespace Render
- {
- class PostProcessSettings;
- // The post process sub-settings class for SSAO (Screen-Space Ambient Occlusion)
- class BloomSettings final
- : public BloomSettingsInterface
- , public PostProcessBase
- {
- friend class PostProcessSettings;
- friend class PostProcessFeatureProcessor;
- public:
- AZ_RTTI(AZ::Render::BloomSettings, "{9CDC625A-0545-494E-AB37-552A19741F6A}",
- AZ::Render::BloomSettingsInterface, AZ::Render::PostProcessBase);
- AZ_CLASS_ALLOCATOR(BloomSettings, SystemAllocator);
- BloomSettings(PostProcessFeatureProcessor* featureProcessor);
- ~BloomSettings() = default;
- // BloomSettingsInterface overrides...
- void OnConfigChanged() override;
- // Applies settings from this onto target using override settings and passed alpha value for blending
- void ApplySettingsTo(BloomSettings* target, float alpha) const;
- // Generate getters and setters.
- #include <Atom/Feature/ParamMacros/StartParamFunctionsOverrideImpl.inl>
- #include <Atom/Feature/PostProcess/Bloom/BloomParams.inl>
- #include <Atom/Feature/ParamMacros/EndParams.inl>
- private:
- // Generate members...
- #include <Atom/Feature/ParamMacros/StartParamMembers.inl>
- #include <Atom/Feature/PostProcess/Bloom/BloomParams.inl>
- #include <Atom/Feature/ParamMacros/EndParams.inl>
- void Simulate(float deltaTime);
- PostProcessSettings* m_parentSettings = nullptr;
- float m_deltaTime = 0.0f;
- };
- }
- }
|