You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
369 B
19 lines
369 B
#ifndef BUILTIN_SURFACE_DATA_INCLUDED
|
|
#define BUILTIN_SURFACE_DATA_INCLUDED
|
|
|
|
// Must match BuiltIn ShaderGraph master node
|
|
struct SurfaceData
|
|
{
|
|
half3 albedo;
|
|
half3 specular;
|
|
half metallic;
|
|
half smoothness;
|
|
half3 normalTS;
|
|
half3 emission;
|
|
half occlusion;
|
|
half alpha;
|
|
half clearCoatMask;
|
|
half clearCoatSmoothness;
|
|
};
|
|
|
|
#endif
|