您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
44 行
1.1 KiB
44 行
1.1 KiB
//
|
|
// This file was automatically generated. Please don't edit by hand.
|
|
//
|
|
|
|
#ifndef DECAL_CS_HLSL
|
|
#define DECAL_CS_HLSL
|
|
//
|
|
// UnityEngine.Experimental.Rendering.HDPipeline.Decal+DecalSurfaceData: static fields
|
|
//
|
|
#define DEBUGVIEW_DECAL_DECALSURFACEDATA_BASE_COLOR (10000)
|
|
#define DEBUGVIEW_DECAL_DECALSURFACEDATA_NORMAL_WS (10001)
|
|
|
|
//
|
|
// UnityEngine.Experimental.Rendering.HDPipeline.Decal+DBufferMaterial: static fields
|
|
//
|
|
#define DBUFFERMATERIAL_COUNT (2)
|
|
|
|
// Generated from UnityEngine.Experimental.Rendering.HDPipeline.Decal+DecalSurfaceData
|
|
// PackingRules = Exact
|
|
struct DecalSurfaceData
|
|
{
|
|
float4 baseColor;
|
|
float4 normalWS;
|
|
};
|
|
|
|
//
|
|
// Debug functions
|
|
//
|
|
void GetGeneratedDecalSurfaceDataDebug(uint paramId, DecalSurfaceData decalsurfacedata, inout float3 result, inout bool needLinearToSRGB)
|
|
{
|
|
switch (paramId)
|
|
{
|
|
case DEBUGVIEW_DECAL_DECALSURFACEDATA_BASE_COLOR:
|
|
result = decalsurfacedata.baseColor.xyz;
|
|
needLinearToSRGB = true;
|
|
break;
|
|
case DEBUGVIEW_DECAL_DECALSURFACEDATA_NORMAL_WS:
|
|
result = decalsurfacedata.normalWS.xyz;
|
|
break;
|
|
}
|
|
}
|
|
|
|
|
|
#endif
|