Module: Mesa Branch: master Commit: 331b0120d16445dd8d5b8d049946ae7845fb714b URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=331b0120d16445dd8d5b8d049946ae7845fb714b
Author: Ian Romanick <[email protected]> Date: Tue Nov 11 10:20:49 2014 +0000 mesa: Use unreachable instead of assert in check_valid_to_render This is generally the prefered style these days. Signed-off-by: Ian Romanick <[email protected]> Reviewed-by: Kenneth Graunke <[email protected]> --- src/mesa/main/api_validate.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mesa/main/api_validate.c b/src/mesa/main/api_validate.c index 181a61d..304d576 100644 --- a/src/mesa/main/api_validate.c +++ b/src/mesa/main/api_validate.c @@ -113,7 +113,7 @@ check_valid_to_render(struct gl_context *ctx, const char *function) break; default: - assert(!"Invalid API value in check_valid_to_render()"); + unreachable("Invalid API value in check_valid_to_render()"); } return GL_TRUE; _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
