From: Timothy Arceri Date: Wed, 8 Jul 2020 09:00:55 +0000 (+1000) Subject: freedreno: fix missing fallthrough comments X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=03a5b3f6d5a89a1de3352283b9dc1f45ab5a25d7;p=mesa.git freedreno: fix missing fallthrough comments Reviewed-by: Rob Clark Part-of: --- diff --git a/src/gallium/drivers/freedreno/freedreno_util.h b/src/gallium/drivers/freedreno/freedreno_util.h index 33e6f1458de..6f1442192e0 100644 --- a/src/gallium/drivers/freedreno/freedreno_util.h +++ b/src/gallium/drivers/freedreno/freedreno_util.h @@ -325,6 +325,7 @@ fd_msaa_samples(unsigned samples) switch (samples) { default: debug_assert(0); + /* fallthrough */ case 0: case 1: return MSAA_ONE; case 2: return MSAA_TWO;