11 lines
163 B
GLSL
11 lines
163 B
GLSL
// -*-C++-*-
|
|
|
|
// This is a library of filter functions for the vertex shader
|
|
|
|
// Thorsten Renk 2017
|
|
|
|
vec3 moonlight_perception (in vec3 light) {
|
|
|
|
return light;
|
|
|
|
}
|