Files
o3de/Gems/Atom/Feature/Common/Code/Source/PostProcess/Bloom/BloomSettings.h
T
Steve Pham 38261d0800 Shorten copyright headers by splitting into 2 lines (#2213)
* Updated all copyright headers to split the longer original copyright line into 2 shorter lines

Signed-off-by: Steve Pham <spham@amazon.com>
2021-07-16 15:25:48 -07:00

70 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
*
*/
#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, 0);
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/StartParamFunctions.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;
};
}
}