diff options
Diffstat (limited to '3rdparty/bgfx/examples/08-update/cs_update.sc')
-rw-r--r-- | 3rdparty/bgfx/examples/08-update/cs_update.sc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/3rdparty/bgfx/examples/08-update/cs_update.sc b/3rdparty/bgfx/examples/08-update/cs_update.sc index 4b1d5fcc725..54566d8344b 100644 --- a/3rdparty/bgfx/examples/08-update/cs_update.sc +++ b/3rdparty/bgfx/examples/08-update/cs_update.sc @@ -1,6 +1,6 @@ /* * Copyright 2014 Stanlo Slasinski. All rights reserved. - * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause + * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE */ #include "bgfx_compute.sh" @@ -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) ); } } |