blob: 7e5846805abf9d41c8bc12a3173d4153dc2ca9af (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef material_h
#define material_h
typedef struct {
char magic[4];
float metalness, roughness;
float ao;
unsigned albedo;
int albedo_tex_len;
int ao_tex_len;
int metal_tex_len;
int rough_tex_len;
int normal_tex_len;
} Material_File;
#endif
|