14 lines
348 B
GLSL
14 lines
348 B
GLSL
#if !defined SSAO_SETTINGS_FILE
|
|
#define SSAO_SETTINGS_FILE
|
|
|
|
#define SSAO_QUALI_DEFINE 2 //[0 2 3]
|
|
#define SSAO_I 100 //[0 25 30 35 40 45 50 55 60 65 70 75 80 85 90 95 100 110 120 130 140 150 160 170 180 190 200 220 240 260 280 300]
|
|
|
|
#if SSAO_I > 0
|
|
#define SSAO_QUALI SSAO_QUALI_DEFINE
|
|
#else
|
|
#define SSAO_QUALI 0
|
|
#endif
|
|
|
|
#endif
|