diff options
author | Vinson Lee <[email protected]> | 2013-05-27 17:54:35 -0700 |
---|---|---|
committer | Vinson Lee <[email protected]> | 2013-05-30 23:12:32 -0700 |
commit | 171199b2b7d3de3783a3e69c5a81795f5f8b5f10 (patch) | |
tree | 0adfd599e2912b447fec1f94877540c821948929 /src/mesa/main/texformat.c | |
parent | 306f630e676eb901789dd09a0f30d7e7fa941ebe (diff) |
mesa: Add missing break statement in _mesa_choose_tex_format.
Fixes "Missing break in switch" defect reported by Coverity.
Signed-off-by: Vinson Lee <[email protected]>
Reviewed-by: Brian Paul <[email protected]>
Reviewed-by: Eric Anholt <[email protected]>
Diffstat (limited to 'src/mesa/main/texformat.c')
-rw-r--r-- | src/mesa/main/texformat.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/main/texformat.c b/src/mesa/main/texformat.c index fda5d74c1fe..0ae79ea7d08 100644 --- a/src/mesa/main/texformat.c +++ b/src/mesa/main/texformat.c @@ -218,6 +218,7 @@ _mesa_choose_tex_format(struct gl_context *ctx, GLenum target, RETURN_IF_SUPPORTED(MESA_FORMAT_Z16); RETURN_IF_SUPPORTED(MESA_FORMAT_X8_Z24); RETURN_IF_SUPPORTED(MESA_FORMAT_S8_Z24); + break; case GL_COMPRESSED_ALPHA_ARB: RETURN_IF_SUPPORTED(MESA_FORMAT_A8); |