StellarXipher/Library/PackageCache/com.unity.render-pipelines.core@1f7e2d13edc7/Runtime/GPUDriven/InstanceOcclusionCullerShaderVariables.cs
2025-02-06 17:03:40 -05:00

18 lines
545 B
C#

using System;
namespace UnityEngine.Rendering
{
[GenerateHLSL(needAccessors = false, generateCBuffer = true)]
internal unsafe struct InstanceOcclusionCullerShaderVariables
{
public uint _DrawInfoAllocIndex;
public uint _DrawInfoCount;
public uint _InstanceInfoAllocIndex;
public uint _InstanceInfoCount;
public int _BoundingSphereInstanceDataAddress;
public int _DebugCounterIndex;
public int _InstanceMultiplierShift;
public int _InstanceOcclusionCullerPad0;
}
}