From 6df4bf4a4cf31fd417b8acd903851811d52dd05f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=91=D1=80=D0=B0=D0=BD=D0=B8=D0=BC=D0=B8=D1=80=20=D0=9A?= =?UTF-8?q?=D0=B0=D1=80=D0=B0=D1=9F=D0=B8=D1=9B?= Date: Wed, 16 Jan 2019 09:24:06 -0800 Subject: [PATCH] Cleanup. --- examples/08-update/cs_update.sc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/08-update/cs_update.sc b/examples/08-update/cs_update.sc index 4b1d5fcc7..f31283741 100644 --- a/examples/08-update/cs_update.sc +++ b/examples/08-update/cs_update.sc @@ -25,6 +25,6 @@ void main() { vec3 color = colors[face]*0.75 + sin(u_time.x*4.0)*0.25; ivec3 dest = ivec3(gl_GlobalInvocationID.xy, face); - imageStore(s_texColor, dest, vec4(color,1) ); + imageStore(s_texColor, dest, vec4(color, 1.0) ); } }