From 3e534489ecb0d4e042a14ac344d54b425a03848b Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tapani=20P=C3=A4lli?= Date: Tue, 19 Mar 2019 11:30:58 +0200 Subject: [PATCH] iris: mark switch case fallthrough MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit CID: 1444103 Signed-off-by: Tapani Pälli Reviewed-by: Lionel Landwerlin Reviewed-by: Eric Engestrom Reviewed-by: Kenneth Graunke --- src/gallium/drivers/iris/iris_state.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/gallium/drivers/iris/iris_state.c b/src/gallium/drivers/iris/iris_state.c index bd5ee14a5f0..4d9f087ae28 100644 --- a/src/gallium/drivers/iris/iris_state.c +++ b/src/gallium/drivers/iris/iris_state.c @@ -2704,9 +2704,9 @@ iris_create_vertex_elements(struct pipe_context *ctx, VFCOMP_STORE_SRC, VFCOMP_STORE_SRC }; switch (isl_format_get_num_channels(fmt.fmt)) { - case 0: comp[0] = VFCOMP_STORE_0; - case 1: comp[1] = VFCOMP_STORE_0; - case 2: comp[2] = VFCOMP_STORE_0; + case 0: comp[0] = VFCOMP_STORE_0; /* fallthrough */ + case 1: comp[1] = VFCOMP_STORE_0; /* fallthrough */ + case 2: comp[2] = VFCOMP_STORE_0; /* fallthrough */ case 3: comp[3] = isl_format_has_int_channel(fmt.fmt) ? VFCOMP_STORE_1_INT : VFCOMP_STORE_1_FP; -- 2.30.2