mirror of
https://github.com/w23/xash3d-fwgs
synced 2024-12-15 05:29:51 +01:00
21 lines
331 B
C
21 lines
331 B
C
#pragma once
|
|
|
|
#include "xash3d_types.h"
|
|
|
|
typedef struct {
|
|
int tex_base_color;
|
|
int tex_roughness;
|
|
int tex_metalness;
|
|
int tex_normalmap;
|
|
|
|
vec3_t base_color;
|
|
float roughness;
|
|
float metalness;
|
|
|
|
qboolean set;
|
|
} xvk_material_t;
|
|
|
|
void XVK_ReloadMaterials( void );
|
|
|
|
xvk_material_t* XVK_GetMaterialForTextureIndex( int tex_index );
|