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.
15 lines
486 B
15 lines
486 B
namespace UnityEngine.Rendering.HighDefinition
|
|
{
|
|
[GenerateHLSL(needAccessors = false, generateCBuffer = true)]
|
|
unsafe struct ShaderVariablesAmbientOcclusion
|
|
{
|
|
public Vector4 _AOBufferSize;
|
|
public Vector4 _AOParams0;
|
|
public Vector4 _AOParams1;
|
|
public Vector4 _AOParams2;
|
|
public Vector4 _AOParams3;
|
|
public Vector4 _AOParams4;
|
|
public Vector4 _FirstTwoDepthMipOffsets;
|
|
public Vector4 _AODepthToViewParams;
|
|
}
|
|
}
|