Rasagar/Library/PackageCache/com.unity.render-pipelines.core/Runtime/GPUDriven/OcclusionCullingDebugShaderVariables.cs
2024-08-26 23:07:20 +03:00

19 lines
596 B
C#

using System;
namespace UnityEngine.Rendering
{
[GenerateHLSL(needAccessors = false, generateCBuffer = true)]
internal unsafe struct OcclusionCullingDebugShaderVariables
{
public Vector4 _DepthSizeInOccluderPixels;
[HLSLArray(OccluderContext.k_MaxOccluderMips, typeof(ShaderGenUInt4))]
public fixed uint _OccluderMipBounds[OccluderContext.k_MaxOccluderMips * 4];
public uint _OccluderMipLayoutSizeX;
public uint _OccluderMipLayoutSizeY;
public uint _OcclusionCullingDebugPad0;
public uint _OcclusionCullingDebugPad1;
}
}