aboutsummaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers/common
diff options
context:
space:
mode:
authorChris Forbes <[email protected]>2014-10-11 18:19:17 +1300
committerChris Forbes <[email protected]>2014-10-18 19:09:28 +1300
commit81041c4a4a170e6bb332013085117d3fc67d517b (patch)
treef155e4170773f336789b1eb6e6f44ddb79fdb6d8 /src/mesa/drivers/common
parent4656c14e57cf31333c1db30ee58268e9f8ef9b92 (diff)
meta/msaa-blit: consider weird sample count case unreachable
Suppresses a bunch of warning noise about sample_map possibly being used uninitialized. Signed-off-by: Chris Forbes <[email protected]> Reviewed-by: Anuj Phogat <[email protected]>
Diffstat (limited to 'src/mesa/drivers/common')
-rw-r--r--src/mesa/drivers/common/meta_blit.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/drivers/common/meta_blit.c b/src/mesa/drivers/common/meta_blit.c
index c6616d93d3c..01cb532fef4 100644
--- a/src/mesa/drivers/common/meta_blit.c
+++ b/src/mesa/drivers/common/meta_blit.c
@@ -134,6 +134,7 @@ setup_glsl_msaa_blit_scaled_shader(struct gl_context *ctx,
break;
default:
_mesa_problem(ctx, "Unsupported sample count %d\n", samples);
+ unreachable("Unsupported sample count");
}
/* Create sample map string. */