Firstborn/Library/PackageCache/com.unity.shadergraph@12.1.8/Editor/Data/Interfaces/IMayRequireDepthTexture.cs
Schaken-Mods b486678290 Library -Artifacts
Library -Artifacts
2023-03-28 12:24:16 -05:00

19 lines
548 B
C#

using UnityEditor.Graphing;
namespace UnityEditor.ShaderGraph
{
interface IMayRequireDepthTexture
{
bool RequiresDepthTexture(ShaderStageCapability stageCapability = ShaderStageCapability.All);
}
static class MayRequireDepthTextureExtensions
{
public static bool RequiresDepthTexture(this MaterialSlot slot)
{
var mayRequireDepthTexture = slot as IMayRequireDepthTexture;
return mayRequireDepthTexture != null && mayRequireDepthTexture.RequiresDepthTexture();
}
}
}