mirror of
https://github.com/italicsjenga/slang-shaders.git
synced 2024-11-23 00:01:31 +11:00
13 lines
249 B
C
13 lines
249 B
C
#ifndef BLACK_LVL
|
|
#define BLACK_LVL
|
|
|
|
#pragma parameter ia_black_level "Black Level" 0.00 -0.50 0.50 0.01
|
|
|
|
vec3 black_level(vec3 in_col){
|
|
vec3 out_col = in_col;
|
|
out_col += (ia_black_level / 20.0) * (1.0 - out_col);
|
|
return out_col;
|
|
}
|
|
|
|
#endif
|