UnityGame/Library/PackageCache/com.unity.render-pipelines.universal-config/Runtime/ShaderConfig.cs

26 lines
988 B
C#
Raw Permalink Normal View History

2024-10-27 10:53:47 +03:00
//-----------------------------------------------------------------------------
// Configuration
//-----------------------------------------------------------------------------
using System;
namespace UnityEngine.Rendering.Universal
{
/// <summary>
/// Project-wide shader configuration options.
/// </summary>
/// <remarks>This enum will generate the proper shader defines.</remarks>
///<seealso cref="ShaderConfig"/>
[GenerateHLSL]
public static class ShaderOptions
{
/// <summary>Max number of lights supported on mobile with OpenGL 3.0 and below.</summary>
public const int k_MaxVisibleLightCountLowEndMobile = 16;
/// <summary>Max number of lights supported on mobile, OpenGL, and WebGPU platforms.</summary>
public const int k_MaxVisibleLightCountMobile = 32;
/// <summary>Max number of lights supported on desktop platforms.</summary>
public const int k_MaxVisibleLightCountDesktop = 256;
};
}