You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
o3de/Gems/Atom/Feature/Common/Code/Source/PostProcess/Ssao/SsaoSettings.h

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/Ssao/SsaoSettingsInterface.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 SsaoSettings final
: public SsaoSettingsInterface
, public PostProcessBase
{
friend class PostProcessSettings;
friend class PostProcessFeatureProcessor;
public:
AZ_RTTI(AZ::Render::SsaoSettings, "{6CFCBD33-7419-4BFC-A7E8-30D29373EE29}",
AZ::Render::SsaoSettingsInterface, AZ::Render::PostProcessBase);
AZ_CLASS_ALLOCATOR(SsaoSettings, SystemAllocator, 0);
SsaoSettings(PostProcessFeatureProcessor* featureProcessor);
~SsaoSettings() = default;
// SsaoSettingsInterface overrides...
void OnConfigChanged() override;
// Applies settings from this onto target using override settings and passed alpha value for blending
void ApplySettingsTo(SsaoSettings* target, float alpha) const;
// Generate getters and setters.
#include <Atom/Feature/ParamMacros/StartParamFunctionsOverrideImpl.inl>
#include <Atom/Feature/PostProcess/Ssao/SsaoParams.inl>
#include <Atom/Feature/ParamMacros/EndParams.inl>
private:
// Generate members...
#include <Atom/Feature/ParamMacros/StartParamMembers.inl>
#include <Atom/Feature/PostProcess/Ssao/SsaoParams.inl>
#include <Atom/Feature/ParamMacros/EndParams.inl>
void Simulate(float deltaTime);
PostProcessSettings* m_parentSettings = nullptr;
float m_deltaTime = 0.0f;
};
}
}