您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
84 行
3.5 KiB
84 行
3.5 KiB
using UnityEngine;
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// structure definition
|
|
//-----------------------------------------------------------------------------
|
|
namespace UnityEngine.Experimental.ScriptableRenderLoop
|
|
{
|
|
namespace Builtin
|
|
{
|
|
//-----------------------------------------------------------------------------
|
|
// BuiltinData
|
|
// This structure include common data that should be present in all material
|
|
// and are independent from the BSDF parametrization.
|
|
// Note: These parameters can be store in GBuffer if the writer wants
|
|
//-----------------------------------------------------------------------------
|
|
[GenerateHLSL(PackingRules.Exact, false, true, 100)]
|
|
public struct BuiltinData
|
|
{
|
|
[SurfaceDataAttributes("Opacity")]
|
|
public float opacity;
|
|
|
|
// These are lighting data.
|
|
// We would prefer to split lighting and material information but for performance reasons,
|
|
// those lighting information are fill
|
|
// at the same time than material information.
|
|
[SurfaceDataAttributes("Bake Diffuse Lighting")]
|
|
public Vector3 bakeDiffuseLighting; // This is the result of sampling lightmap/lightprobe/proxyvolume
|
|
|
|
[SurfaceDataAttributes("Emissive Color")]
|
|
public Vector3 emissiveColor;
|
|
[SurfaceDataAttributes("Emissive Intensity")]
|
|
public float emissiveIntensity;
|
|
|
|
// These is required for motion blur and temporalAA
|
|
[SurfaceDataAttributes("Velocity")]
|
|
public Vector2 velocity;
|
|
|
|
// Distortion
|
|
[SurfaceDataAttributes("Distortion")]
|
|
public Vector2 distortion;
|
|
[SurfaceDataAttributes("Distortion Blur")]
|
|
public float distortionBlur; // Define the color buffer mipmap level to use
|
|
|
|
// Depth
|
|
[SurfaceDataAttributes("Depth Offset")]
|
|
public float depthOffset; // define the depth in unity unit to add in Z forward direction
|
|
};
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// LighTransportData
|
|
// This struct is use to store information for Enlighten/Progressive light mapper. both at runtime or off line.
|
|
//-----------------------------------------------------------------------------
|
|
[GenerateHLSL(PackingRules.Exact, false, true, 120)]
|
|
public struct LighTransportData
|
|
{
|
|
public Vector3 diffuseColor;
|
|
public Vector3 emissiveColor;
|
|
};
|
|
|
|
public class RenderLoop : Object
|
|
{
|
|
public static RenderTextureFormat GetVelocityBufferFormat()
|
|
{
|
|
return RenderTextureFormat.RGHalf; // TODO: We should use 16bit normalized instead, better precision // RGInt
|
|
}
|
|
|
|
public static RenderTextureReadWrite GetVelocityBufferReadWrite()
|
|
{
|
|
return RenderTextureReadWrite.Linear;
|
|
}
|
|
|
|
public static RenderTextureFormat GetDistortionBufferFormat()
|
|
{
|
|
// TODO: // This format need to be additive blendable and include distortionBlur, blend mode different for alpha value
|
|
return RenderTextureFormat.ARGBHalf;
|
|
}
|
|
|
|
public static RenderTextureReadWrite GetDistortionBufferReadWrite()
|
|
{
|
|
return RenderTextureReadWrite.Linear;
|
|
}
|
|
}
|
|
}
|
|
}
|