UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
ExponentialHeightFogStateStreamImpl.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2
3#pragma once
4
7
8#define UE_API RENDERER_API
9
10class FSceneInterface;
12
14
15struct FExponentialHeightFogStateStreamSettings : TStateStreamSettings<IExponentialHeightFogStateStream, FExponentialHeightFogSceneProxy>
16{
17 static inline constexpr bool SkipCreatingDeletes = true;
18};
19
21
22class FExponentialHeightFogStateStreamImpl : public TStateStream<FExponentialHeightFogStateStreamSettings>
23{
24public:
26private:
27 UE_API virtual void Render_OnCreate(const FExponentialHeightFogStaticState& Ss, const FExponentialHeightFogDynamicState& Ds, FExponentialHeightFogSceneProxy*& UserData, bool IsDestroyedInSameFrame) override;
28 UE_API virtual void Render_OnUpdate(const FExponentialHeightFogStaticState& Ss, const FExponentialHeightFogDynamicState& Ds, FExponentialHeightFogSceneProxy*& UserData) override;
29 UE_API virtual void Render_OnDestroy(const FExponentialHeightFogStaticState& Ss, const FExponentialHeightFogDynamicState& Ds, FExponentialHeightFogSceneProxy*& UserData) override;
30
31 FSceneInterface& Scene;
32};
33
35
36#undef UE_API
UE_FORCEINLINE_HINT TSharedRef< CastToType, Mode > StaticCastSharedRef(TSharedRef< CastFromType, Mode > const &InSharedRef)
Definition SharedPointer.h:127
#define UE_API
Definition ExponentialHeightFogStateStreamImpl.h:8
Definition ExponentialHeightFogStateStreamImpl.h:23
Definition SceneInterface.h:106
Definition GenericStateStream.h:35
Definition ExponentialHeightFogStateStream.h:30
Definition ExponentialHeightFogStateStreamImpl.h:16
static constexpr bool SkipCreatingDeletes
Definition ExponentialHeightFogStateStreamImpl.h:17
Definition ExponentialHeightFogStateStream.h:21
Definition GenericStateStream.h:18