engine/bin/data/shaders/common/light.h

11 lines
203 B
C

float shadowFactor( const Light light, float def );
#if PBR
#include "../common/pbr.h"
#endif
#if LAMBERT
#include "../common/lambert.h"
#endif
#if PHONG
#include "../common/phong.h"
#endif