您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
40 行
1.6 KiB
40 行
1.6 KiB
using UnityEngine.Rendering;
|
|
|
|
namespace UnityEngine.Experimental.Rendering.HDPipeline
|
|
{
|
|
public partial class Decal
|
|
{
|
|
// Main structure that store the user data (i.e user input of master node in material graph)
|
|
[GenerateHLSL(PackingRules.Exact, false, true, 10000)]
|
|
public struct DecalSurfaceData
|
|
{
|
|
[SurfaceDataAttributes("Base Color", false, true)]
|
|
public Vector4 baseColor;
|
|
[SurfaceDataAttributes("Normal", true)]
|
|
public Vector4 normalWS;
|
|
};
|
|
|
|
[GenerateHLSL(PackingRules.Exact)]
|
|
public enum DBufferMaterial
|
|
{
|
|
// Note: This count doesn't include the velocity buffer. On shader and csharp side the velocity buffer will be added by the framework
|
|
Count = 2
|
|
};
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// DBuffer management
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// should this be combined into common class shared with Lit.cs???
|
|
static public int GetMaterialDBufferCount() { return (int)DBufferMaterial.Count; }
|
|
|
|
static RenderTextureFormat[] m_RTFormat = { RenderTextureFormat.ARGB32, RenderTextureFormat.ARGB32};
|
|
static RenderTextureReadWrite[] m_RTReadWrite = { RenderTextureReadWrite.sRGB, RenderTextureReadWrite.Linear};
|
|
|
|
static public void GetMaterialDBufferDescription(out RenderTextureFormat[] RTFormat, out RenderTextureReadWrite[] RTReadWrite)
|
|
{
|
|
RTFormat = m_RTFormat;
|
|
RTReadWrite = m_RTReadWrite;
|
|
}
|
|
}
|
|
}
|