Singularity/Library/PackageCache/com.unity.render-pipelines..../Runtime/Utilities/XRUtils.cs

23 lines
968 B
C#
Raw Permalink Normal View History

2024-05-06 14:45:45 -04:00
namespace UnityEngine.Rendering
{
/// <summary>
/// XR Utility class.
/// </summary>
public static class XRUtils
{
/// <summary>
/// Draw the XR occlusion mesh.
/// </summary>
/// <param name="cmd">Command Buffer used to draw the occlusion mesh.</param>
/// <param name="camera">Camera for which the occlusion mesh is rendered.</param>
/// <param name="stereoEnabled">True if stereo rendering is enabled.</param>
public static void DrawOcclusionMesh(CommandBuffer cmd, Camera camera, bool stereoEnabled = true) // Optional stereoEnabled is for SRP-specific stereo logic
{
if ((!XRGraphics.enabled) || (!camera.stereoEnabled) || (!stereoEnabled))
return;
UnityEngine.RectInt normalizedCamViewport = new UnityEngine.RectInt(0, 0, camera.pixelWidth, camera.pixelHeight);
cmd.DrawOcclusionMesh(normalizedCamViewport);
}
}
}