diff options
Diffstat (limited to '3rdparty/bgfx/examples/08-update/cs_update.sc')
-rw-r--r-- | 3rdparty/bgfx/examples/08-update/cs_update.sc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/3rdparty/bgfx/examples/08-update/cs_update.sc b/3rdparty/bgfx/examples/08-update/cs_update.sc index 4b1d5fcc725..f31283741ae 100644 --- a/3rdparty/bgfx/examples/08-update/cs_update.sc +++ b/3rdparty/bgfx/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) ); } } |