You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

17 lines
545 B

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;
}
}