123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- /*
- * 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/Memory/SystemAllocator.h>
- #include <Atom/RHI/CommandList.h>
- #include <Atom/RHI/DeviceDrawItem.h>
- #include <Atom/RHI/ScopeProducer.h>
- #include <Atom/RPI.Public/Pass/FullscreenTrianglePass.h>
- #include <Atom/RPI.Public/Shader/Shader.h>
- #include <Atom/RPI.Public/Shader/ShaderResourceGroup.h>
- #include <Atom/Feature/ACES/AcesDisplayMapperFeatureProcessor.h>
- #include <DisplayMapper/DisplayMapperFullScreenPass.h>
- namespace AZ
- {
- namespace Render
- {
- /**
- * The Aces output transform pass.
- * This pass impelements the ACES color pipeline, which includes Reference Rendering Transform(RRT)
- * and Output Device Transform(ODT).
- */
- class AcesOutputTransformPass final
- : public DisplayMapperFullScreenPass
- {
- AZ_RPI_PASS(AcesOutputTransformPass);
- public:
- AZ_RTTI(AcesOutputTransformPass, "{705F8A80-CAF2-4A9C-BF40-2141ABD70BDC}", DisplayMapperFullScreenPass);
- AZ_CLASS_ALLOCATOR(AcesOutputTransformPass, SystemAllocator);
- //! Creates a DisplayMapperPass
- static RPI::Ptr<AcesOutputTransformPass> Create(const RPI::PassDescriptor& descriptor);
- void SetDisplayBufferFormat(RHI::Format format);
- void SetAcesParameterOverrides(const AcesParameterOverrides& acesParameterOverrides);
- private:
- explicit AcesOutputTransformPass(const RPI::PassDescriptor& descriptor);
- // Pass behavior overrides
- void InitializeInternal() override;
- // Scope producer functions...
- void CompileResources(const RHI::FrameGraphCompileContext& context) override;
- RHI::ShaderInputConstantIndex m_shaderInputColorMatIndex;
- RHI::ShaderInputConstantIndex m_shaderInputCinemaLimitsIndex;
- RHI::ShaderInputConstantIndex m_shaderInputAcesSplineParamsIndex;
- RHI::ShaderInputConstantIndex m_shaderInputFlagsIndex;
- RHI::ShaderInputConstantIndex m_shaderInputOutputModeIndex;
- RHI::ShaderInputConstantIndex m_shaderInputSurroundGammaIndex;
- RHI::ShaderInputConstantIndex m_shaderInputGammaIndex;
- AZ::Render::DisplayMapperParameters m_displayMapperParameters = {};
- RHI::Format m_displayBufferFormat = RHI::Format::Unknown;
- AcesParameterOverrides m_acesParameterOverrides;
- };
- } // namespace Render
- } // namespace AZ
|