diff options
-rw-r--r-- | src/mesa/main/formats.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/mesa/main/formats.c b/src/mesa/main/formats.c index fcc8526c404..a6bec486b89 100644 --- a/src/mesa/main/formats.c +++ b/src/mesa/main/formats.c @@ -1531,8 +1531,11 @@ _mesa_format_to_type_and_comps(gl_format format, *comps = 4; return; - case MESA_FORMAT_NONE: case MESA_FORMAT_COUNT: + assert(0); + return; + + case MESA_FORMAT_NONE: /* For debug builds, warn if any formats are not handled */ #ifdef DEBUG default: |