Home
last modified time | relevance | path

Searched refs:depthRenderTarget (Results 1 – 3 of 3) sorted by relevance

/foundation/graphic/graphic_3d/lume/Lume_3D/api/3d/ecs/components/
Dplanar_reflection_component.h59 DEFINE_PROPERTY(CORE_NS::EntityReference, depthRenderTarget, "Depth Output Target", 0,)
/foundation/graphic/graphic_3d/lume/Lume_3D/src/ecs/systems/
Drender_system.cpp810 const RenderHandle depthRenderTarget = gpuHandleMgr.GetRenderHandle(reflComp.depthRenderTarget); in UpdatePlaneReflectionTargetResolution() local
815 …RenderHandleUtil::IsValid(colorRenderTarget)) || (!RenderHandleUtil::IsValid(depthRenderTarget)) || in UpdatePlaneReflectionTargetResolution()
844 if (!EntityUtil::IsValid(reflComp.depthRenderTarget)) { in UpdatePlaneReflectionTargetResolution()
845 … reflComp.depthRenderTarget = gpuHandleMgr.GetEcs().GetEntityManager().CreateReferenceCounted(); in UpdatePlaneReflectionTargetResolution()
846 gpuHandleMgr.Create(reflComp.depthRenderTarget); in UpdatePlaneReflectionTargetResolution()
848 gpuHandleMgr.Write(reflComp.depthRenderTarget)->reference = in UpdatePlaneReflectionTargetResolution()
849 … reCreateGpuImage(gpuResourceMgr, entity.id, depthRenderTarget, newWidth, newHeight, 1u, true); in UpdatePlaneReflectionTargetResolution()
1614 reflCam.depthTarget = gpuHandleMgr_->GetRenderHandleReference(reflComponent.depthRenderTarget); in ProcessReflection()
/foundation/graphic/graphic_3d/lume/Lume_3D/src/util/
Dscene_util.cpp267 prc.depthRenderTarget = plane.depthTarget; in CreateReflectionPlaneComponent()