diff options
Diffstat (limited to 'advanced_lighting/2.gamma_correction/shaders/light.frag')
-rw-r--r-- | advanced_lighting/2.gamma_correction/shaders/light.frag | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/advanced_lighting/2.gamma_correction/shaders/light.frag b/advanced_lighting/2.gamma_correction/shaders/light.frag new file mode 100644 index 0000000..c01da99 --- /dev/null +++ b/advanced_lighting/2.gamma_correction/shaders/light.frag @@ -0,0 +1,8 @@ +#version 330 core + +out vec4 frag_color; + +void main(void) +{ + frag_color = vec4(1.0); +} |