fix naming bug

This commit is contained in:
Jakob 2023-06-24 10:41:06 +02:00
parent 4c1761a6b9
commit 0e8132135b
1 changed files with 2 additions and 2 deletions

View File

@ -68,8 +68,8 @@ void main() {
color = lerp(color, fx_chroma, fx_chroma_amount);
// effect: exposure
float exposure = osc_val_1;
color = exposure(color,exposure);
float exposure_val = osc_val_1;
color = exposure(color,exposure_val);
// actually set color
gl_FragColor = color;