From: Tapani Pälli Date: Tue, 19 Mar 2019 09:30:58 +0000 (+0200) Subject: iris: mark switch case fallthrough X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3e534489ecb0d4e042a14ac344d54b425a03848b;p=mesa.git iris: mark switch case fallthrough CID: 1444103 Signed-off-by: Tapani Pälli Reviewed-by: Lionel Landwerlin Reviewed-by: Eric Engestrom Reviewed-by: Kenneth Graunke --- 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;