mesa: fix fallthrough in glformats
authorTimothy Arceri <tarceri@itsqueeze.com>
Wed, 1 Jul 2020 03:04:25 +0000 (13:04 +1000)
committerMarge Bot <eric+marge@anholt.net>
Thu, 2 Jul 2020 23:52:52 +0000 (23:52 +0000)
commit040b07c7feebac90858f7426c2c20784642d0ca5
treec75702333f2480841bccd6543d94bb535e1d7469
parent8591adea38b82f973948cd120ffd9f93eb3bd71d
mesa: fix fallthrough in glformats

Before 908f817918fb this would fallthrough to GL_INVALID_OPERATION
if the validation condition was not met. But since that change it
will now only return GL_INVALID_OPERATION if
!_mesa_has_EXT_texture_compression_bptc(ctx) is true. This seems
unintended.

Here we fix up the fallthrough and add the fallthrough comment so
this doesn't happen again.

Fixes: 908f817918fb ("mesa: expose EXT_texture_compression_bptc in GLES")
Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/3005
Reviewed-by: Marek Olšák <marek.olsak@amd.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5705>
src/mesa/main/glformats.c