From bdce5fd2034dc5294d577fedc1655104178347a9 Mon Sep 17 00:00:00 2001 From: Kirill Lokotkov Date: Tue, 15 Mar 2022 10:14:59 +0300 Subject: [PATCH] =?UTF-8?q?=D0=98=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=D0=B0=20=D0=BE=D0=BF=D0=B5=D1=87=D0=B0=D1=82=D0=BA?= =?UTF-8?q?=D0=B0=20=D0=B2=206=20=D1=81=D1=82=D1=80=D0=BE=D0=BA=D0=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Hello_Window/shader.fs" | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git "a/\320\243\321\200\320\276\320\272 05. \320\250\320\265\320\271\320\264\320\265\321\200\321\213 \320\262 OpenGL/Hello_Window/shader.fs" "b/\320\243\321\200\320\276\320\272 05. \320\250\320\265\320\271\320\264\320\265\321\200\321\213 \320\262 OpenGL/Hello_Window/shader.fs" index 860a01c..885bea5 100644 --- "a/\320\243\321\200\320\276\320\272 05. \320\250\320\265\320\271\320\264\320\265\321\200\321\213 \320\262 OpenGL/Hello_Window/shader.fs" +++ "b/\320\243\321\200\320\276\320\272 05. \320\250\320\265\320\271\320\264\320\265\321\200\321\213 \320\262 OpenGL/Hello_Window/shader.fs" @@ -3,5 +3,5 @@ out vec4 FragColor; in vec3 ourColor; void main() { - FragColor = vec4(ourColor, 1.0f);" + FragColor = vec4(ourColor, 1.0f); };