projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
03cbfbd
)
iris: mark switch case fallthrough
author
Tapani Pälli
<tapani.palli@intel.com>
Tue, 19 Mar 2019 09:30:58 +0000
(11:30 +0200)
committer
Tapani Pälli
<tapani.palli@intel.com>
Wed, 20 Mar 2019 06:21:50 +0000
(08:21 +0200)
CID:
1444103
Signed-off-by: Tapani Pälli <tapani.palli@intel.com>
Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Reviewed-by: Eric Engestrom <eric.engestrom@intel.com>
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
src/gallium/drivers/iris/iris_state.c
patch
|
blob
|
history
diff --git
a/src/gallium/drivers/iris/iris_state.c
b/src/gallium/drivers/iris/iris_state.c
index bd5ee14a5f0c9a7238db766d98ec7fcc6fedcbb3..4d9f087ae28ab84572fc8d07a69f4d2dc71247c1 100644
(file)
--- 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;