LumenSceneData 初始化 [1]

前置信息:

灯光从World到Scene的流程。

UE4 Lights UWorld to FScene [1]_spawnactor failed because of collision at the spaw_sh15285118586的博客-CSDN博客

 mesh从world到Scene流程,与灯光类似

void UStaticMeshComponent::CreateRenderState_Concurrent(FRegisterComponentContext* Context)
{LLM_SCOPE(ELLMTag::StaticMesh);Super::CreateRenderState_Concurrent(Context);
}

void UPrimitiveComponent::CreateRenderState_Concurrent(FRegisterComponentContext* Context)
{// Make sure cached cull distance is up-to-date if its zero and we have an LD cull distanceif( CachedMaxDrawDistance == 0.f && LDMaxDrawDistance > 0.f ){bool bNeverCull = bNeverDistanceCull || GetLODParentPrimitive();CachedMaxDrawDistance = bNeverCull ? 0.f : LDMaxDrawDistance;}Super::CreateRenderState_Concurrent(Context);UpdateBounds();// If the primitive isn't hidden and the detail mode setting allows it, add it to the scene.if (ShouldComponentAddToScene()){if (Context != nullptr){Context->AddPrimitive(this);}else{GetWorld()->Scene->AddPrimitive(this);}}// Components are either registered as static or dynamic in the streaming manager.// Static components are registered in batches the first frame the level becomes visible (or incrementally each frame when loaded but not yet visible). // The level static streaming data is never updated after this, and gets reused whenever the level becomes visible again (after being hidden).// Dynamic components, on the other hand, are updated whenever their render states change.// The following logic handles all cases where static components should fallback on the dynamic path.// It is based on a design where each component must either have bHandledByStreamingManagerAsDynamic or bAttachedToStreamingManagerAsStatic set.// If this is not the case, then the component has never been handled before.// The bIgnoreStreamingManagerUpdate flag is used to prevent handling component that are already in the update list or that don't have streaming data.if (!bIgnoreStreamingManagerUpdate && (Mobility != EComponentMobility::Static || bHandledByStreamingManagerAsDynamic || (!bAttachedToStreamingManagerAsStatic && OwnerLevelHasRegisteredStaticComponentsInStreamingManager(GetOwner())))){FStreamingManagerCollection* Collection = IStreamingManager::Get_Concurrent();if (Collection){Collection->NotifyPrimitiveUpdated_Concurrent(this);}}
}
void FScene::AddPrimitive(UPrimitiveComponent* Primitive)
{SCOPE_CYCLE_COUNTER(STAT_AddScenePrimitiveGT);SCOPED_NAMED_EVENT(FScene_AddPrimitive, FColor::Green);checkf(!Primitive->IsUnreachable(), TEXT("%s"), *Primitive->GetFullName());const float WorldTime = GetWorld()->GetTimeSeconds();// Save the world transform for next time the primitive is added to the scenefloat DeltaTime = WorldTime - Primitive->LastSubmitTime;if ( DeltaTime < -0.0001f || Primitive->LastSubmitTime < 0.0001f ){// Time was reset?Primitive->LastSubmitTime = WorldTime;}else if ( DeltaTime > 0.0001f ){// First call for the new frame?Primitive->LastSubmitTime = WorldTime;}checkf(!Primitive->SceneProxy, TEXT("Primitive has already been added to the scene!"));// Create the primitive's scene proxy.FPrimitiveSceneProxy* PrimitiveSceneProxy = Primitive->CreateSceneProxy();Primitive->SceneProxy = PrimitiveSceneProxy;if(!PrimitiveSceneProxy){// Primitives which don't have a proxy are irrelevant to the scene manager.return;}// Create the primitive scene info.FPrimitiveSceneInfo* PrimitiveSceneInfo = new FPrimitiveSceneInfo(Primitive, this);PrimitiveSceneProxy->PrimitiveSceneInfo = PrimitiveSceneInfo;// Cache the primitives initial transform.FMatrix RenderMatrix = Primitive->GetRenderMatrix();FVector AttachmentRootPosition = Primitive->GetActorPositionForRenderer();struct FCreateRenderThreadParameters{FPrimitiveSceneProxy* PrimitiveSceneProxy;FMatrix RenderMatrix;FBoxSphereBounds WorldBounds;FVector AttachmentRootPosition;FBoxSphereBounds LocalBounds;};FCreateRenderThreadParameters Params ={PrimitiveSceneProxy,RenderMatrix,Primitive->Bounds,AttachmentRootPosition,Primitive->GetLocalBounds()};// Help track down primitive with bad bounds way before the it gets to the RendererensureMsgf(!Primitive->Bounds.ContainsNaN(),TEXT("Nans found on Bounds for Primitive %s: Origin %s, BoxExtent %s, SphereRadius %f"), *Primitive->GetName(), *Primitive->Bounds.Origin.ToString(), *Primitive->Bounds.BoxExtent.ToString(), Primitive->Bounds.SphereRadius);INC_DWORD_STAT_BY( STAT_GameToRendererMallocTotal, PrimitiveSceneProxy->GetMemoryFootprint() + PrimitiveSceneInfo->GetMemoryFootprint() );// Verify the primitive is validVerifyProperPIEScene(Primitive, World);// Increment the attachment counter, the primitive is about to be attached to the scene.Primitive->AttachmentCounter.Increment();// Create any RenderThreadResources required and send a command to the rendering thread to add the primitive to the scene.FScene* Scene = this;// If this primitive has a simulated previous transform, ensure that the velocity data for the scene representation is correctTOptional<FTransform> PreviousTransform = FMotionVectorSimulation::Get().GetPreviousTransform(Primitive);ENQUEUE_RENDER_COMMAND(AddPrimitiveCommand)([Params = MoveTemp(Params), Scene, PrimitiveSceneInfo, PreviousTransform = MoveTemp(PreviousTransform)](FRHICommandListImmediate& RHICmdList){FPrimitiveSceneProxy* SceneProxy = Params.PrimitiveSceneProxy;FScopeCycleCounter Context(SceneProxy->GetStatId());SceneProxy->SetTransform(Params.RenderMatrix, Params.WorldBounds, Params.LocalBounds, Params.AttachmentRootPosition);// Create any RenderThreadResources required.SceneProxy->CreateRenderThreadResources();Scene->AddPrimitiveSceneInfo_RenderThread(PrimitiveSceneInfo, PreviousTransform);});}

 AddedPrimitiveSceneInfos 会在后面创建LumenSceneData用到。

void FScene::AddPrimitiveSceneInfo_RenderThread(FPrimitiveSceneInfo* PrimitiveSceneInfo, const TOptional<FTransform>& PreviousTransform)
{check(IsInRenderingThread());check(PrimitiveSceneInfo->PackedIndex == INDEX_NONE);check(AddedPrimitiveSceneInfos.Find(PrimitiveSceneInfo) == nullptr);AddedPrimitiveSceneInfos.FindOrAdd(PrimitiveSceneInfo);if (PreviousTransform.IsSet()){OverridenPreviousTransforms.Update(PrimitiveSceneInfo, PreviousTransform.GetValue().ToMatrixWithScale());}
}

LumenSceneData创建流程

Engine/Source/Runtime/Renderer/Private/DeferredShadingRenderer.cpp

Scene->UpdateAllPrimitiveSceneInfos(GraphBuilder, true);
void FScene::UpdateAllPrimitiveSceneInfos(FRDGBuilder& GraphBuilder, bool bAsyncCreateLPIs)
{TArray<FPrimitiveSceneInfo*> AddedLocalPrimitiveSceneInfos;AddedLocalPrimitiveSceneInfos.Reserve(AddedPrimitiveSceneInfos.Num());for (FPrimitiveSceneInfo* SceneInfo : AddedPrimitiveSceneInfos){AddedLocalPrimitiveSceneInfos.Add(SceneInfo);}AddedLocalPrimitiveSceneInfos.Sort(FPrimitiveArraySortKey());while (AddedLocalPrimitiveSceneInfos.Num()){int32 StartIndex = AddedLocalPrimitiveSceneInfos.Num() - 1;for (int AddIndex = StartIndex; AddIndex < AddedLocalPrimitiveSceneInfos.Num(); AddIndex++){FPrimitiveSceneInfo* PrimitiveSceneInfo = AddedLocalPrimitiveSceneInfos[AddIndex];int32 PrimitiveIndex = PrimitiveSceneInfo->PackedIndex;FPrimitiveSceneProxy* SceneProxy = PrimitiveSceneInfo->Proxy;if (ShouldPrimitiveOutputVelocity(SceneProxy, GetShaderPlatform())){PrimitiveSceneInfo->bRegisteredWithVelocityData = true;// We must register the initial LocalToWorld with the velocity state. // In the case of a moving component with MarkRenderStateDirty() called every frame, UpdateTransform will never happen.VelocityData.UpdateTransform(PrimitiveSceneInfo, PrimitiveTransforms[PrimitiveIndex], PrimitiveTransforms[PrimitiveIndex]);}DistanceFieldSceneData.AddPrimitive(PrimitiveSceneInfo);LumenAddPrimitive(PrimitiveSceneInfo);}}
}

// Add function is a member of FScene, because it needs to add the primitive to all FLumenSceneData at once
void FScene::LumenAddPrimitive(FPrimitiveSceneInfo* InPrimitive)
{LLM_SCOPE_BYTAG(Lumen);if (DefaultLumenSceneData->bTrackAllPrimitives){const FPrimitiveSceneProxy* Proxy = InPrimitive->Proxy;bool bTrackPrimitveForLumenScene = TrackPrimitiveForLumenScene(Proxy);for (FLumenSceneDataIterator LumenSceneData = GetLumenSceneDataIterator(); LumenSceneData; ++LumenSceneData){// We copy this flag over when creating per-view lumen scene data, validate that it's still the samecheck(LumenSceneData->bTrackAllPrimitives == DefaultLumenSceneData->bTrackAllPrimitives);LumenSceneData->PrimitivesToUpdateMeshCards.Add(InPrimitive->GetIndex());if (bTrackPrimitveForLumenScene){ensure(!LumenSceneData->PendingAddOperations.Contains(InPrimitive));ensure(!LumenSceneData->PendingUpdateOperations.Contains(InPrimitive));LumenSceneData->PendingAddOperations.Add(InPrimitive);}}}
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/26532.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Kubectl 详解

目录 陈述式资源管理方法:项目的生命周期:创建-->发布-->更新-->回滚-->删除声明式管理方法:陈述式资源管理方法: kubernetes 集群管理集群资源的唯一入口是通过相应的方法调用 apiserver 的接口kubectl 是官方的CLI命令行工具,用于与 apiserver 进行通信,将…

基于YOLOv7的密集场景行人检测识别分析系统

密集场景下YOLO系列模型的精度如何&#xff1f;本文的主要目的就是想要基于密集场景基于YOLOv7模型开发构建人流计数系统&#xff0c;简单看下效果图&#xff1a; 这里实验部分使用到的数据集为VSCrowd数据集。 实例数据如下所示&#xff1a; 下载到本地解压缩后如下所示&…

webpack 静态模块打包工具

webpack 为什么? 把静态模块内容&#xff0c;压缩&#xff0c;整合&#xff0c;转译等(前端工程化) 把less/sass转成css代码把ES6 降级成ES5支持多种模块文件类型&#xff0c;多种模块标准语法 vite 为什么不直接学习vite 而学习webpack 因为很多项目还是基于webpack来进…

js 判断对象为数组.html

<!DOCTYPE html> <html lang"en"> <head> <meta charset"UTF-8" /> <title>数组判断</title> </head> <body> <script> function isArray(obj) { /* 判断对象 obj 是否是数组。*/ return typeof o…

vue加载大量数据优化

在Vue中加载大量数据并形成列表时&#xff0c;可以通过以下方法来优化性能&#xff1a; 分页加载&#xff1a;不要一次性加载所有的数据&#xff0c;而是分批加载数据&#xff0c;每次只加载当前页需要显示的数据量。可以使用第三方库如vue-infinite-loading来实现无限滚动加载…

找免费商用的图片素材就上这6个网站。

分享6个免费商用的高清图片素材库&#xff0c;你想要找到这里都能找到&#xff0c;赶紧收藏起来吧~ 菜鸟图库 https://www.sucai999.com/pic.html?vNTYwNDUx 网站主要是为新手设计师提供免费素材的&#xff0c;素材的质量都很高&#xff0c;类别也很多&#xff0c;像平面、UI…

Git Submodule 更新子库失败 fatal: Unable to fetch in submodule path

编辑本地目录 .git/config 文件 在 [submodule “Assets/CommonModule”] 项下 加入 fetch refs/heads/:refs/remotes/origin/

常规VUE项目优化实践,跟着做就对了!

总结&#xff1a; 主要优化方式&#xff1a; imagemin优化打包大小&#xff08;96M->50M&#xff09;&#xff0c;但是以打包速度为代价&#xff0c;通过在构建过程中压缩图片来实现&#xff0c;可根据需求开启。字体压缩&#xff1a;目前项目内引用为思源字体&#xff0c…

认识所有权

专栏简介&#xff1a;本专栏作为Rust语言的入门级的文章&#xff0c;目的是为了分享关于Rust语言的编程技巧和知识。对于Rust语言&#xff0c;虽然历史没有C、和python历史悠远&#xff0c;但是它的优点可以说是非常的多&#xff0c;既继承了C运行速度&#xff0c;还拥有了Java…

C++——文件操作

一、文本文件 C中输入输出是通过流对象进行操作&#xff0c;对于文件来说写文件就是将内容从程序输出到文件&#xff0c;需要用到写文件流ofstream&#xff1b;而读文件就是将内容从文件输入到程序&#xff0c;需要用到读文件流ifstream&#xff1b;这两个文件流类都包含在头文…

f1tenth的多点导航+路径规划+pursuit追踪

文章目录 一、发布起点,终点二、 记录规划轨迹点三、pursuit追踪一、发布起点,终点 pub_amcl: #!/usr/bin/env python3import rospy from geometry_msgs.msg import PoseWithCovarianceStampeddef publish_amcl_pose():# 初始化节点rospy.init_node(amcl_pose_publisher)# …

oracle的管道函数

Oracle管道函数(Pipelined Table Function)oracle管道函数 1、管道函数即是可以返回行集合&#xff08;可以使嵌套表nested table 或数组 varray&#xff09;的函数&#xff0c;我们可以像查询物理表一样查询它或者将其赋值给集合变量。 2、管道函数为并行执行&#xff0c;在…

P1257 平面上的最接近点对

题目 思路 详见加强加强版 代码 #include<bits/stdc.h> using namespace std; #define int long long const int maxn4e510; pair<int,int> a[maxn]; int n; double d1e16; pair<int,int> vl[maxn],vr[maxn]; void read() { cin>>n;for(int i1;i<…

Android性能优化—数据结构优化

优化数据结构是提高Android应用性能的重要一环。在Android开发中&#xff0c;ArrayList、LinkedList和HashMap等常用的数据结构的正确使用对APP性能的提升有着重大的影响。 一、ArrayList ArrayList内部使用的是数组&#xff0c;默认大小10&#xff0c;当数组长度不足时&…

二叉排序树(二叉查找树)

二叉排序树&#xff08;二叉查找树&#xff09;的性质&#xff1a; 若它的左子树不为空&#xff0c;则左子树上所有结点的值均小于它的根结点的值。若它的右子树不为空&#xff0c;则右子树上所有结点的值均大于它的根将诶点的值。它的左、右子树也分别为二叉排序树。 对二叉…

[Docker实现测试部署CI/CD----自由风格的CI操作[中间架构](4)]

目录 10、自由风格的CI操作&#xff08;中间架构&#xff09;中间架构图创建web项目Idea提交项目到远程仓库提交代码到本地库提交代码到远程库从jenkins拉取代码新建任务jenkins集成gitlab立即构建 将项目打为jar包Jenkins 配置 mvn 命令重新构建 代码质量检测jenkins将代码推送…

Java on Azure Tooling 6月更新|标准消费和专用计划及本地存储账户(Azurite)支持

作者&#xff1a;Jialuo Gan - Program Manager, Developer Division at Microsoft 排版&#xff1a;Alan Wang 大家好&#xff0c;欢迎阅读 Java on Azure 工具的六月更新。在本次更新中&#xff0c;我们将介绍 Azure Spring Apps 标准消费和专用计划支持以及本地存储账户&…

对作用域、作用域链的理解

全局作用域和函数作用域 全局作用域 最外层函数和最外层函数外面定义的变量拥有全局作用域 所有未定义直接赋值的变量自动声明为全局作用域 所有 window 对象的属性拥有全局作用域 全局作用域有很大的弊端&#xff0c;过多的全局作用域变量会污染全局命名空 间&#xff0c;容…

黑马大数据学习笔记5-案例

目录 需求分析背景介绍目标需求数据内容DBeaver连接到Hive建库建表加载数据 ETL数据清洗数据问题需求实现查看结果扩展 指标计算需求需求指标统计 可视化展示BIFineBI的介绍及安装FineBI配置数据源及数据准备 可视化展示 P73~77 https://www.bilibili.com/video/BV1WY4y197g7?…