From 604b9975477effa6cb6d8a923a65274d046af4c0 Mon Sep 17 00:00:00 2001 From: Kaehvaman Date: Thu, 26 Dec 2024 17:25:19 +0400 Subject: [PATCH] test commit --- lab16 with raylib/resources/blur.frag | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lab16 with raylib/resources/blur.frag b/lab16 with raylib/resources/blur.frag index 6aa854a..a69b3cf 100644 --- a/lab16 with raylib/resources/blur.frag +++ b/lab16 with raylib/resources/blur.frag @@ -37,8 +37,8 @@ void main() vec4 red = vec4(1.0, 0.5, 0.5, 1.0); vec4 blue = vec4(0.0, 0.5, 0.5, 1.0); - finalColor = mix(red, blue, (sin(fragTexCoord.x * 24 + seconds * 4.0) + 1.0) / 2.0); + //finalColor = mix(red, blue, (sin(fragTexCoord.x * 24 + seconds * 4.0) + 1.0) / 2.0); - //finalColor = texelColor; + finalColor = texelColor; //finalColor = vec4((sin(fragTexCoord.x * 24 + seconds * 4.0) + 1.0) / 2.0, 0.5, 0.5, 1.0); } \ No newline at end of file