You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
- Subresource state tracking manipulates less data by always using pointers instead of copying full states. - Offloaded pooled texture / buffer allocations to an async task. - Removed dependency between pooled resource allocations and collecting resource barriers. The 'finalize' phase now gathers both first and last barriers for a resource. - Refactors RDG allocator implementation to make things simpler. - Moved async tasks within RDG to use the setup task API. - Moved culling into the async setup queue. [CL 30774932 by zach bethel in ue5-main branch]
482 lines
18 KiB
C++
482 lines
18 KiB
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#include "RenderGraphTrace.h"
|
|
#include "RenderGraphBuilder.h"
|
|
#include "RenderGraphPrivate.h"
|
|
#include "Trace/Trace.inl"
|
|
|
|
#if RDG_ENABLE_TRACE
|
|
|
|
UE_TRACE_CHANNEL_DEFINE(RDGChannel)
|
|
|
|
UE_TRACE_EVENT_BEGIN(RDGTrace, GraphMessage)
|
|
UE_TRACE_EVENT_FIELD(UE::Trace::WideString, Name)
|
|
UE_TRACE_EVENT_FIELD(uint64, StartCycles)
|
|
UE_TRACE_EVENT_FIELD(uint64, EndCycles)
|
|
UE_TRACE_EVENT_FIELD(uint16, PassCount)
|
|
UE_TRACE_EVENT_FIELD(uint64[], TransientMemoryCommitSizes)
|
|
UE_TRACE_EVENT_FIELD(uint64[], TransientMemoryCapacities)
|
|
UE_TRACE_EVENT_FIELD(uint8[], TransientMemoryFlags)
|
|
UE_TRACE_EVENT_END()
|
|
|
|
UE_TRACE_EVENT_BEGIN(RDGTrace, GraphEndMessage)
|
|
UE_TRACE_EVENT_END()
|
|
|
|
UE_TRACE_EVENT_BEGIN(RDGTrace, PassMessage)
|
|
UE_TRACE_EVENT_FIELD(UE::Trace::WideString, Name)
|
|
UE_TRACE_EVENT_FIELD(uint64, StartCycles)
|
|
UE_TRACE_EVENT_FIELD(uint64, EndCycles)
|
|
UE_TRACE_EVENT_FIELD(uint16, Handle)
|
|
UE_TRACE_EVENT_FIELD(uint16, GraphicsForkPass)
|
|
UE_TRACE_EVENT_FIELD(uint16, GraphicsJoinPass)
|
|
UE_TRACE_EVENT_FIELD(uint16[], Textures)
|
|
UE_TRACE_EVENT_FIELD(uint16[], Buffers)
|
|
UE_TRACE_EVENT_FIELD(uint16, Flags)
|
|
UE_TRACE_EVENT_FIELD(uint16, Pipeline)
|
|
UE_TRACE_EVENT_FIELD(bool, IsCulled)
|
|
UE_TRACE_EVENT_FIELD(bool, IsAsyncComputeBegin)
|
|
UE_TRACE_EVENT_FIELD(bool, IsAsyncComputeEnd)
|
|
UE_TRACE_EVENT_FIELD(bool, SkipRenderPassBegin)
|
|
UE_TRACE_EVENT_FIELD(bool, SkipRenderPassEnd)
|
|
UE_TRACE_EVENT_FIELD(bool, IsParallelExecuteBegin)
|
|
UE_TRACE_EVENT_FIELD(bool, IsParallelExecuteEnd)
|
|
UE_TRACE_EVENT_FIELD(bool, IsParallelExecute)
|
|
UE_TRACE_EVENT_FIELD(bool, IsParallelExecuteAllowed)
|
|
UE_TRACE_EVENT_END()
|
|
|
|
UE_TRACE_EVENT_BEGIN(RDGTrace, BufferMessage)
|
|
UE_TRACE_EVENT_FIELD(UE::Trace::WideString, Name)
|
|
UE_TRACE_EVENT_FIELD(uint32, UsageFlags)
|
|
UE_TRACE_EVENT_FIELD(uint32, BytesPerElement)
|
|
UE_TRACE_EVENT_FIELD(uint32, NumElements)
|
|
UE_TRACE_EVENT_FIELD(uint16, Handle)
|
|
UE_TRACE_EVENT_FIELD(uint16, NextOwnerHandle)
|
|
UE_TRACE_EVENT_FIELD(uint16, Order)
|
|
UE_TRACE_EVENT_FIELD(uint16[], Passes)
|
|
UE_TRACE_EVENT_FIELD(uint64[], TransientAllocationOffsetMins)
|
|
UE_TRACE_EVENT_FIELD(uint64[], TransientAllocationOffsetMaxs)
|
|
UE_TRACE_EVENT_FIELD(uint16[], TransientAllocationMemoryRanges)
|
|
UE_TRACE_EVENT_FIELD(bool, IsExternal)
|
|
UE_TRACE_EVENT_FIELD(bool, IsExtracted)
|
|
UE_TRACE_EVENT_FIELD(bool, IsCulled)
|
|
UE_TRACE_EVENT_FIELD(bool, IsTrackingSkipped)
|
|
UE_TRACE_EVENT_FIELD(bool, IsTransient)
|
|
UE_TRACE_EVENT_FIELD(bool, IsTransientUntracked)
|
|
UE_TRACE_EVENT_FIELD(bool, IsTransientCacheHit)
|
|
UE_TRACE_EVENT_END()
|
|
|
|
UE_TRACE_EVENT_BEGIN(RDGTrace, TextureMessage)
|
|
UE_TRACE_EVENT_FIELD(UE::Trace::WideString, Name)
|
|
UE_TRACE_EVENT_FIELD(uint64, StartCycles)
|
|
UE_TRACE_EVENT_FIELD(uint64, EndCycles)
|
|
UE_TRACE_EVENT_FIELD(uint16, Handle)
|
|
UE_TRACE_EVENT_FIELD(uint16, NextOwnerHandle)
|
|
UE_TRACE_EVENT_FIELD(uint16, Order)
|
|
UE_TRACE_EVENT_FIELD(uint16[], Passes)
|
|
UE_TRACE_EVENT_FIELD(uint64[], TransientAllocationOffsetMins)
|
|
UE_TRACE_EVENT_FIELD(uint64[], TransientAllocationOffsetMaxs)
|
|
UE_TRACE_EVENT_FIELD(uint16[], TransientAllocationMemoryRanges)
|
|
UE_TRACE_EVENT_FIELD(uint64, SizeInBytes)
|
|
UE_TRACE_EVENT_FIELD(uint64, CreateFlags)
|
|
UE_TRACE_EVENT_FIELD(uint32, Dimension)
|
|
UE_TRACE_EVENT_FIELD(uint32, Format)
|
|
UE_TRACE_EVENT_FIELD(uint32, ExtentX)
|
|
UE_TRACE_EVENT_FIELD(uint32, ExtentY)
|
|
UE_TRACE_EVENT_FIELD(uint16, Depth)
|
|
UE_TRACE_EVENT_FIELD(uint16, ArraySize)
|
|
UE_TRACE_EVENT_FIELD(uint8, NumMips)
|
|
UE_TRACE_EVENT_FIELD(uint8, NumSamples)
|
|
UE_TRACE_EVENT_FIELD(bool, IsExternal)
|
|
UE_TRACE_EVENT_FIELD(bool, IsExtracted)
|
|
UE_TRACE_EVENT_FIELD(bool, IsCulled)
|
|
UE_TRACE_EVENT_FIELD(bool, IsTrackingSkipped)
|
|
UE_TRACE_EVENT_FIELD(bool, IsTransient)
|
|
UE_TRACE_EVENT_FIELD(bool, IsTransientUntracked)
|
|
UE_TRACE_EVENT_FIELD(bool, IsTransientCacheHit)
|
|
UE_TRACE_EVENT_END()
|
|
|
|
UE_TRACE_EVENT_BEGIN(RDGTrace, ScopeMessage)
|
|
UE_TRACE_EVENT_FIELD(UE::Trace::WideString, Name)
|
|
UE_TRACE_EVENT_FIELD(uint16, FirstPass)
|
|
UE_TRACE_EVENT_FIELD(uint16, LastPass)
|
|
UE_TRACE_EVENT_FIELD(uint16, Depth)
|
|
UE_TRACE_EVENT_END()
|
|
|
|
static_assert(sizeof(FRDGPassHandle) == sizeof(uint16), "Expected 16 bit pass handles.");
|
|
static_assert(sizeof(FRDGTextureHandle) == sizeof(uint16), "Expected 16 bit texture handles.");
|
|
static_assert(sizeof(FRDGBufferHandle) == sizeof(uint16), "Expected 16 bit buffer handles.");
|
|
|
|
FRDGTrace::FRDGTrace()
|
|
: bEnabled(UE_TRACE_CHANNELEXPR_IS_ENABLED(RDGChannel) && !IsImmediateMode())
|
|
{}
|
|
|
|
bool FRDGTrace::IsEnabled() const
|
|
{
|
|
return bEnabled;
|
|
}
|
|
|
|
void FRDGTrace::OutputGraphBegin()
|
|
{
|
|
if (!IsEnabled())
|
|
{
|
|
return;
|
|
}
|
|
|
|
GraphStartCycles = FPlatformTime::Cycles64();
|
|
}
|
|
|
|
void FRDGTrace::OutputGraphEnd(const FRDGBuilder& GraphBuilder)
|
|
{
|
|
if (!IsEnabled())
|
|
{
|
|
return;
|
|
}
|
|
|
|
TRACE_CPUPROFILER_EVENT_SCOPE(FRDGTrace::OutputGraphEnd);
|
|
|
|
const FRDGPassHandle ProloguePassHandle = GraphBuilder.GetProloguePassHandle();
|
|
|
|
const auto& Passes = GraphBuilder.Passes;
|
|
const auto& Textures = GraphBuilder.Textures;
|
|
const auto& Buffers = GraphBuilder.Buffers;
|
|
|
|
{
|
|
const TCHAR* Name = GraphBuilder.BuilderName.GetTCHAR();
|
|
|
|
TArray<uint64> TransientMemoryCommitSizes;
|
|
TArray<uint64> TransientMemoryCapacities;
|
|
TArray<uint8> TransientMemoryFlags;
|
|
|
|
TransientMemoryCommitSizes.Reserve(TransientAllocationStats.MemoryRanges.Num());
|
|
TransientMemoryCapacities.Reserve(TransientAllocationStats.MemoryRanges.Num());
|
|
TransientMemoryFlags.Reserve(TransientAllocationStats.MemoryRanges.Num());
|
|
|
|
for (const auto& MemoryRange : TransientAllocationStats.MemoryRanges)
|
|
{
|
|
TransientMemoryCommitSizes.Emplace(MemoryRange.CommitSize);
|
|
TransientMemoryCapacities.Emplace(MemoryRange.Capacity);
|
|
TransientMemoryFlags.Emplace((uint8)MemoryRange.Flags);
|
|
}
|
|
|
|
UE_TRACE_LOG(RDGTrace, GraphMessage, RDGChannel)
|
|
<< GraphMessage.Name(Name, uint16(FCString::Strlen(Name)))
|
|
<< GraphMessage.StartCycles(GraphStartCycles)
|
|
<< GraphMessage.EndCycles(FPlatformTime::Cycles64())
|
|
<< GraphMessage.PassCount(uint16(Passes.Num()))
|
|
<< GraphMessage.TransientMemoryCommitSizes(TransientMemoryCommitSizes.GetData(), (uint16)TransientMemoryCommitSizes.Num())
|
|
<< GraphMessage.TransientMemoryCapacities(TransientMemoryCapacities.GetData(), (uint16)TransientMemoryCapacities.Num())
|
|
<< GraphMessage.TransientMemoryFlags(TransientMemoryFlags.GetData(), (uint16)TransientMemoryFlags.Num());
|
|
}
|
|
|
|
for (FRDGPassHandle Handle = Passes.Begin(); Handle != Passes.End(); ++Handle)
|
|
{
|
|
const FRDGPass* Pass = Passes[Handle];
|
|
const TCHAR* Name = Pass->GetEventName().GetTCHAR();
|
|
|
|
UE_TRACE_LOG(RDGTrace, PassMessage, RDGChannel)
|
|
<< PassMessage.Name(Name, uint16(FCString::Strlen(Name)))
|
|
<< PassMessage.Handle(Handle.GetIndex())
|
|
<< PassMessage.GraphicsForkPass(Pass->GetGraphicsForkPass().GetIndexUnchecked())
|
|
<< PassMessage.GraphicsJoinPass(Pass->GetGraphicsJoinPass().GetIndexUnchecked())
|
|
<< PassMessage.Textures((const uint16*)Pass->TraceTextures.GetData(), (uint16)Pass->TraceTextures.Num())
|
|
<< PassMessage.Buffers((const uint16*)Pass->TraceBuffers.GetData(), (uint16)Pass->TraceBuffers.Num())
|
|
<< PassMessage.Flags(uint16(Pass->GetFlags()))
|
|
<< PassMessage.Pipeline(uint16(Pass->GetPipeline()))
|
|
<< PassMessage.IsCulled(Pass->bCulled != 0)
|
|
<< PassMessage.IsAsyncComputeBegin(Pass->bAsyncComputeBegin != 0)
|
|
<< PassMessage.IsAsyncComputeEnd(Pass->bAsyncComputeEnd != 0)
|
|
<< PassMessage.SkipRenderPassBegin(Pass->bSkipRenderPassBegin != 0)
|
|
<< PassMessage.SkipRenderPassEnd(Pass->bSkipRenderPassEnd != 0)
|
|
<< PassMessage.IsParallelExecuteBegin(Pass->bParallelExecuteBegin != 0)
|
|
<< PassMessage.IsParallelExecuteEnd(Pass->bParallelExecuteEnd != 0)
|
|
<< PassMessage.IsParallelExecute(Pass->bParallelExecute != 0)
|
|
<< PassMessage.IsParallelExecuteAllowed(Pass->bParallelExecuteAllowed != 0);
|
|
}
|
|
|
|
#if RDG_EVENTS
|
|
{
|
|
struct FScopeInfo
|
|
{
|
|
const TCHAR* Name{};
|
|
FRDGPassHandle FirstPass;
|
|
FRDGPassHandle LastPass;
|
|
uint16 Depth{};
|
|
};
|
|
TArray<FScopeInfo> Scopes;
|
|
TMap<const FRDGEventScope*, int32> ScopeToIndex;
|
|
int32 Depth = 0;
|
|
|
|
TRDGScopeStackHelper<FRDGEventScopeOp> ScopeStackHelper;
|
|
|
|
for (FRDGPassHandle Handle = Passes.Begin(); Handle != Passes.End(); ++Handle)
|
|
{
|
|
const auto Replay = [&](const TRDGScopeOpArray<FRDGEventScopeOp>& Ops)
|
|
{
|
|
for (int32 Index = 0; Index < Ops.Num(); ++Index)
|
|
{
|
|
FRDGEventScopeOp Op = Ops[Index];
|
|
|
|
if (Op.IsScope())
|
|
{
|
|
if (Op.IsPush())
|
|
{
|
|
ScopeToIndex.Emplace(Op.Scope, Scopes.Num());
|
|
|
|
FScopeInfo ScopeInfo;
|
|
ScopeInfo.Name = Op.Scope->Name.GetTCHAR();
|
|
ScopeInfo.FirstPass = Handle;
|
|
check(Depth >= 0 && Depth <= TNumericLimits<uint16>::Max());
|
|
ScopeInfo.Depth = static_cast<uint16>(Depth);
|
|
Scopes.Add(ScopeInfo);
|
|
|
|
Depth++;
|
|
}
|
|
else
|
|
{
|
|
FScopeInfo& ScopeInfo = Scopes[ScopeToIndex.FindChecked(Op.Scope)];
|
|
ScopeInfo.LastPass = FRDGPassHandle(Handle.GetIndex() - 1);
|
|
|
|
Depth--;
|
|
}
|
|
}
|
|
}
|
|
};
|
|
|
|
const FRDGPass* Pass = Passes[Handle];
|
|
|
|
const FRDGEventScope* ParentScope = Pass->TraceEventScope;
|
|
|
|
Replay(ScopeStackHelper.CompilePassPrologue(ParentScope, nullptr));
|
|
|
|
if (Handle == Passes.Last())
|
|
{
|
|
Replay(ScopeStackHelper.EndCompile());
|
|
}
|
|
}
|
|
|
|
check(Depth == 0);
|
|
|
|
for (const FScopeInfo& ScopeInfo : Scopes)
|
|
{
|
|
UE_TRACE_LOG(RDGTrace, ScopeMessage, RDGChannel)
|
|
<< ScopeMessage.Name(ScopeInfo.Name, uint16(FCString::Strlen(ScopeInfo.Name)))
|
|
<< ScopeMessage.FirstPass(ScopeInfo.FirstPass.GetIndexUnchecked())
|
|
<< ScopeMessage.LastPass(ScopeInfo.LastPass.GetIndexUnchecked())
|
|
<< ScopeMessage.Depth(ScopeInfo.Depth);
|
|
}
|
|
}
|
|
#endif
|
|
|
|
struct FTransientAllocation
|
|
{
|
|
TArray<uint64> OffsetMins;
|
|
TArray<uint64> OffsetMaxs;
|
|
TArray<uint16> MemoryRanges;
|
|
bool bCacheHit = false;
|
|
|
|
void Reset()
|
|
{
|
|
OffsetMins.Reset();
|
|
OffsetMaxs.Reset();
|
|
MemoryRanges.Reset();
|
|
bCacheHit = false;
|
|
}
|
|
|
|
void Fill(const FRHITransientAllocationStats& Stats, const FRHITransientResource* Resource)
|
|
{
|
|
const FRHITransientAllocationStats::FAllocationArray& Allocations = Stats.Resources.FindChecked(Resource);
|
|
|
|
for (const FRHITransientAllocationStats::FAllocation& Allocation : Allocations)
|
|
{
|
|
OffsetMins.Emplace(Allocation.OffsetMin);
|
|
OffsetMaxs.Emplace(Allocation.OffsetMax);
|
|
MemoryRanges.Emplace(Allocation.MemoryRangeIndex);
|
|
}
|
|
|
|
bCacheHit = Resource->GetAcquireCount() > 1;
|
|
}
|
|
|
|
} TransientAllocation;
|
|
|
|
for (FRDGTextureHandle Handle = Textures.Begin(); Handle != Textures.End(); ++Handle)
|
|
{
|
|
const FRDGTexture* Texture = Textures[Handle];
|
|
|
|
uint64 SizeInBytes = 0;
|
|
if (FRHITexture* TextureRHI = Texture->GetRHIUnchecked())
|
|
{
|
|
SizeInBytes = RHIComputeMemorySize(TextureRHI);
|
|
}
|
|
|
|
TransientAllocation.Reset();
|
|
|
|
if (Texture->TransientTexture)
|
|
{
|
|
const FRHITransientResource* Resource = Texture->TransientTexture;
|
|
TransientAllocation.Fill(TransientAllocationStats, Resource);
|
|
TransientAllocationStats.Resources.Remove(Resource);
|
|
}
|
|
|
|
UE_TRACE_LOG(RDGTrace, TextureMessage, RDGChannel)
|
|
<< TextureMessage.Name(Texture->Name, uint16(FCString::Strlen(Texture->Name)))
|
|
<< TextureMessage.Handle(Handle.GetIndex())
|
|
<< TextureMessage.NextOwnerHandle(Texture->NextOwner.GetIndexUnchecked())
|
|
<< TextureMessage.Order(Texture->TraceOrder)
|
|
<< TextureMessage.Passes((const uint16*)Texture->TracePasses.GetData(), (uint16)Texture->TracePasses.Num())
|
|
<< TextureMessage.TransientAllocationOffsetMins(TransientAllocation.OffsetMins.GetData(), TransientAllocation.OffsetMins.Num())
|
|
<< TextureMessage.TransientAllocationOffsetMaxs(TransientAllocation.OffsetMaxs.GetData(), TransientAllocation.OffsetMaxs.Num())
|
|
<< TextureMessage.TransientAllocationMemoryRanges(TransientAllocation.MemoryRanges.GetData(), TransientAllocation.MemoryRanges.Num())
|
|
<< TextureMessage.SizeInBytes(SizeInBytes)
|
|
<< TextureMessage.CreateFlags(uint32(Texture->Desc.Flags))
|
|
<< TextureMessage.Dimension(uint32(Texture->Desc.Dimension))
|
|
<< TextureMessage.Format(uint32(Texture->Desc.Format))
|
|
<< TextureMessage.ExtentX(Texture->Desc.Extent.X)
|
|
<< TextureMessage.ExtentY(Texture->Desc.Extent.Y)
|
|
<< TextureMessage.Depth(Texture->Desc.Depth)
|
|
<< TextureMessage.ArraySize(Texture->Desc.ArraySize)
|
|
<< TextureMessage.NumMips(Texture->Desc.NumMips)
|
|
<< TextureMessage.NumSamples(Texture->Desc.NumSamples)
|
|
<< TextureMessage.IsExternal(bool(Texture->bExternal))
|
|
<< TextureMessage.IsExtracted(bool(Texture->bExtracted))
|
|
<< TextureMessage.IsCulled(bool(Texture->ReferenceCount == 0))
|
|
<< TextureMessage.IsTrackingSkipped(EnumHasAnyFlags(Texture->Flags, ERDGTextureFlags::SkipTracking))
|
|
<< TextureMessage.IsTransient(bool(Texture->bTransient))
|
|
<< TextureMessage.IsTransientUntracked(false)
|
|
<< TextureMessage.IsTransientCacheHit(TransientAllocation.bCacheHit);
|
|
}
|
|
|
|
for (FRDGBufferHandle Handle = Buffers.Begin(); Handle != Buffers.End(); ++Handle)
|
|
{
|
|
const FRDGBuffer* Buffer = Buffers[Handle];
|
|
|
|
TransientAllocation.Reset();
|
|
|
|
if (Buffer->TransientBuffer)
|
|
{
|
|
const FRHITransientResource* Resource = Buffer->TransientBuffer;
|
|
TransientAllocation.Fill(TransientAllocationStats, Resource);
|
|
TransientAllocationStats.Resources.Remove(Resource);
|
|
}
|
|
|
|
UE_TRACE_LOG(RDGTrace, BufferMessage, RDGChannel)
|
|
<< BufferMessage.Name(Buffer->Name, uint16(FCString::Strlen(Buffer->Name)))
|
|
<< BufferMessage.Handle(Buffer->Handle.GetIndex())
|
|
<< BufferMessage.NextOwnerHandle(Buffer->NextOwner.GetIndexUnchecked())
|
|
<< BufferMessage.Order(Buffer->TraceOrder)
|
|
<< BufferMessage.Passes((const uint16*)Buffer->TracePasses.GetData(), (uint16)Buffer->TracePasses.Num())
|
|
<< BufferMessage.TransientAllocationOffsetMins(TransientAllocation.OffsetMins.GetData(), TransientAllocation.OffsetMins.Num())
|
|
<< BufferMessage.TransientAllocationOffsetMaxs(TransientAllocation.OffsetMaxs.GetData(), TransientAllocation.OffsetMaxs.Num())
|
|
<< BufferMessage.TransientAllocationMemoryRanges(TransientAllocation.MemoryRanges.GetData(), TransientAllocation.MemoryRanges.Num())
|
|
<< BufferMessage.UsageFlags(uint32(Buffer->Desc.Usage))
|
|
<< BufferMessage.BytesPerElement(Buffer->Desc.BytesPerElement)
|
|
<< BufferMessage.NumElements(Buffer->Desc.NumElements)
|
|
<< BufferMessage.IsExternal(bool(Buffer->bExternal))
|
|
<< BufferMessage.IsExtracted(bool(Buffer->bExtracted))
|
|
<< BufferMessage.IsCulled(bool(Buffer->ReferenceCount == 0))
|
|
<< BufferMessage.IsTrackingSkipped(EnumHasAnyFlags(Buffer->Flags, ERDGBufferFlags::SkipTracking))
|
|
<< BufferMessage.IsTransient(bool(Buffer->bTransient))
|
|
<< BufferMessage.IsTransientUntracked(false)
|
|
<< BufferMessage.IsTransientCacheHit(TransientAllocation.bCacheHit);
|
|
}
|
|
|
|
int32 TextureIndex = Textures.Num();
|
|
int32 BufferIndex = Buffers.Num();
|
|
|
|
for (auto KeyValue : TransientAllocationStats.Resources)
|
|
{
|
|
const FRHITransientResource* Resource = KeyValue.Key;
|
|
|
|
if (!Resource->IsAcquired())
|
|
{
|
|
continue;
|
|
}
|
|
|
|
TransientAllocation.Reset();
|
|
TransientAllocation.Fill(TransientAllocationStats, Resource);
|
|
|
|
if (Resource->GetResourceType() == ERHITransientResourceType::Texture)
|
|
{
|
|
const FRHITransientTexture* Texture = static_cast<const FRHITransientTexture*>(Resource);
|
|
|
|
UE_TRACE_LOG(RDGTrace, TextureMessage, RDGChannel)
|
|
<< TextureMessage.Name(Texture->GetName(), uint16(FCString::Strlen(Texture->GetName())))
|
|
<< TextureMessage.Handle(TextureIndex)
|
|
<< TextureMessage.TransientAllocationOffsetMins(TransientAllocation.OffsetMins.GetData(), TransientAllocation.OffsetMins.Num())
|
|
<< TextureMessage.TransientAllocationOffsetMaxs(TransientAllocation.OffsetMaxs.GetData(), TransientAllocation.OffsetMaxs.Num())
|
|
<< TextureMessage.TransientAllocationMemoryRanges(TransientAllocation.MemoryRanges.GetData(), TransientAllocation.MemoryRanges.Num())
|
|
<< TextureMessage.SizeInBytes(Resource->GetSize())
|
|
<< TextureMessage.CreateFlags(uint32(Texture->CreateInfo.Flags))
|
|
<< TextureMessage.Dimension(uint32(Texture->CreateInfo.Dimension))
|
|
<< TextureMessage.Format(uint32(Texture->CreateInfo.Format))
|
|
<< TextureMessage.ExtentX(Texture->CreateInfo.Extent.X)
|
|
<< TextureMessage.ExtentY(Texture->CreateInfo.Extent.Y)
|
|
<< TextureMessage.Depth(Texture->CreateInfo.Depth)
|
|
<< TextureMessage.ArraySize(Texture->CreateInfo.ArraySize)
|
|
<< TextureMessage.NumMips(Texture->CreateInfo.NumMips)
|
|
<< TextureMessage.NumSamples(Texture->CreateInfo.NumSamples)
|
|
<< TextureMessage.IsExternal(false)
|
|
<< TextureMessage.IsExtracted(false)
|
|
<< TextureMessage.IsCulled(false)
|
|
<< TextureMessage.IsTrackingSkipped(false)
|
|
<< TextureMessage.IsTransient(true)
|
|
<< TextureMessage.IsTransientUntracked(true)
|
|
<< TextureMessage.IsTransientCacheHit(TransientAllocation.bCacheHit);
|
|
|
|
TextureIndex++;
|
|
}
|
|
else
|
|
{
|
|
const FRHITransientBuffer* Buffer = static_cast<const FRHITransientBuffer*>(Resource);
|
|
|
|
UE_TRACE_LOG(RDGTrace, BufferMessage, RDGChannel)
|
|
<< BufferMessage.Name(Buffer->GetName(), uint16(FCString::Strlen(Buffer->GetName())))
|
|
<< BufferMessage.Handle(BufferIndex)
|
|
<< BufferMessage.TransientAllocationOffsetMins(TransientAllocation.OffsetMins.GetData(), TransientAllocation.OffsetMins.Num())
|
|
<< BufferMessage.TransientAllocationOffsetMaxs(TransientAllocation.OffsetMaxs.GetData(), TransientAllocation.OffsetMaxs.Num())
|
|
<< BufferMessage.TransientAllocationMemoryRanges(TransientAllocation.MemoryRanges.GetData(), TransientAllocation.MemoryRanges.Num())
|
|
<< BufferMessage.UsageFlags(uint32(Buffer->CreateInfo.Usage))
|
|
<< BufferMessage.BytesPerElement(Buffer->CreateInfo.Stride)
|
|
<< BufferMessage.NumElements(Buffer->CreateInfo.Size / Buffer->CreateInfo.Stride)
|
|
<< BufferMessage.IsExternal(false)
|
|
<< BufferMessage.IsExtracted(false)
|
|
<< BufferMessage.IsCulled(false)
|
|
<< BufferMessage.IsTrackingSkipped(false)
|
|
<< BufferMessage.IsTransient(true)
|
|
<< BufferMessage.IsTransientUntracked(true)
|
|
<< BufferMessage.IsTransientCacheHit(TransientAllocation.bCacheHit);
|
|
|
|
BufferIndex++;
|
|
}
|
|
}
|
|
|
|
UE_TRACE_LOG(RDGTrace, GraphEndMessage, RDGChannel);
|
|
}
|
|
|
|
void FRDGTrace::AddResource(FRDGViewableResource* Resource)
|
|
{
|
|
Resource->TraceOrder = ResourceOrder++;
|
|
}
|
|
|
|
void FRDGTrace::AddTexturePassDependency(FRDGTexture* Texture, FRDGPass* Pass)
|
|
{
|
|
if (!IsEnabled())
|
|
{
|
|
return;
|
|
}
|
|
|
|
Pass->TraceTextures.Add(Texture->Handle);
|
|
Texture->TracePasses.Add(Pass->Handle);
|
|
}
|
|
|
|
void FRDGTrace::AddBufferPassDependency(FRDGBuffer* Buffer, FRDGPass* Pass)
|
|
{
|
|
if (!IsEnabled())
|
|
{
|
|
return;
|
|
}
|
|
|
|
Pass->TraceBuffers.Add(Buffer->Handle);
|
|
Buffer->TracePasses.Add(Pass->Handle);
|
|
}
|
|
|
|
#endif |