11 lines
203 B
C
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 |