您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
31 行
1.1 KiB
31 行
1.1 KiB
#if URP_PRESENT
|
|
using UnityEngine.Rendering;
|
|
using UnityEngine.Rendering.Universal;
|
|
|
|
namespace UnityEngine.Perception.GroundTruth
|
|
{
|
|
class LensDistortionUrpPass : ScriptableRenderPass
|
|
{
|
|
public LensDistortionCrossPipelinePass lensDistortionCrossPipelinePass;
|
|
|
|
public LensDistortionUrpPass(Camera camera, RenderTexture targetTexture)
|
|
{
|
|
lensDistortionCrossPipelinePass = new LensDistortionCrossPipelinePass(camera, targetTexture);
|
|
ConfigureTarget(targetTexture, targetTexture.depthBuffer);
|
|
lensDistortionCrossPipelinePass.Setup();
|
|
}
|
|
|
|
public override void Execute(ScriptableRenderContext context, ref RenderingData renderingData)
|
|
{
|
|
var commandBuffer = CommandBufferPool.Get(nameof(SemanticSegmentationUrpPass));
|
|
lensDistortionCrossPipelinePass.Execute(context, commandBuffer, renderingData.cameraData.camera, renderingData.cullResults);
|
|
CommandBufferPool.Release(commandBuffer);
|
|
}
|
|
|
|
public void Cleanup()
|
|
{
|
|
lensDistortionCrossPipelinePass.Cleanup();
|
|
}
|
|
}
|
|
}
|
|
#endif
|