Rasagar/Library/PackageCache/com.unity.render-pipelines.core/Runtime/PostProcessing/LensFlareOcclusionPermutation.cs

10 lines
172 B
C#
Raw Normal View History

2024-08-26 13:07:20 -07:00
namespace UnityEngine.Rendering
{
[GenerateHLSL]
internal enum LensFlareOcclusionPermutation
{
Depth = (1 << 0),
FogOpacity = (1 << 2),
}
}