UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
ACESUtils.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2
3#pragma once
4
5#include "RHIFwd.h"
6
7class FRDGBuilder;
8
9namespace UE::Color::ACES
10{
11 /*
12 * Get the ACES 2.0 transform table resources.
13 *
14 * @param GraphBuilder Frame render dependency graph.
15 * @param InPeakLuminance Peak luminance value in nits (cd/m^2).
16 * @param OutReachMTable Reach M value table resource output.
17 * @param OutGamutCuspTable Gamut cusp table resource output.
18 * @param OutUpperHullGammaTable Upper hull gamma table resource output.
19 */
21 FRDGBuilder& GraphBuilder,
22 float InPeakLuminance,
26 );
27} // namespace UE::Color::ACES
UE_FORCEINLINE_HINT TSharedRef< CastToType, Mode > StaticCastSharedRef(TSharedRef< CastFromType, Mode > const &InSharedRef)
Definition SharedPointer.h:127
Definition RenderGraphBuilder.h:49
Definition RHIResources.h:3304
Definition ACESUtils.cpp:13
void GetTransformResources(FRDGBuilder &GraphBuilder, float InPeakLuminance, FRHIShaderResourceView *&OutReachMTable, FRHIShaderResourceView *&OutGamutCuspTable, FRHIShaderResourceView *&OutUpperHullGammaTable)
Definition ACESUtils.cpp:858