blob: 2e765e6e89cc4150a817daffe425e331b84f76bf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#ifndef __DATA_INC
#define __DATA_INC
struct YumPbr {
float4 albedo;
float3 normal;
float3 emission;
float smoothness;
float roughness;
float roughness_perceptual;
float metallic;
float ao;
#if defined(_ANISOTROPY)
float3 binormal;
#endif
};
#endif // __DATA_INC
|