mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-06-19 14:58:32 +02:00
iris: Drop unneeded default switch case
Avoids clang warning about the fall-through annotation. Reviewed-by: Eric Anholt <eric@anholt.net> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/10220>
This commit is contained in:
parent
a8a88a8d39
commit
8d4c31b3c7
1 changed files with 1 additions and 2 deletions
|
|
@ -4649,9 +4649,8 @@ iris_store_derived_program_state(const struct gen_device_info *devinfo,
|
|||
break;
|
||||
case IRIS_CACHE_CS:
|
||||
iris_store_cs_state(devinfo, shader);
|
||||
case IRIS_CACHE_BLORP:
|
||||
break;
|
||||
default:
|
||||
case IRIS_CACHE_BLORP:
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue