Firstborn/Library/PackageCache/com.unity.render-pipelines..../ShaderLibrary/Deprecated.cs
Schaken-Mods 9092858a58 updated to the latest editor
I updated everything to the latest Unity Editor. Also realized I had the wrong shaders on my hairs, those are fixed and the hairs look MUCH better!
2023-05-07 17:43:11 -05:00

20 lines
989 B
C#

// This file should be used as a container for things on its
// way to being deprecated and removed in future releases
using System;
namespace UnityEngine.Rendering.Universal
{
public static partial class ShaderInput
{
//Even when RenderingUtils.useStructuredBuffer is true we do not this structure anymore, because in shader side worldToShadowMatrix and shadowParams must be stored in arrays of different sizes
// To specify shader-side shadow matrices and shadow parameters, see code in AdditionalLightsShadowCasterPass.SetupAdditionalLightsShadowReceiverConstants
[Obsolete("ShaderInput.ShadowData was deprecated. Shadow slice matrices and per-light shadow parameters are now passed to the GPU using entries in buffers m_AdditionalLightsWorldToShadow_SSBO and m_AdditionalShadowParams_SSBO", false)]
public struct ShadowData
{
public Matrix4x4 worldToShadowMatrix;
public Vector4 shadowParams;
}
}
}