From 198fa6452bf4cb7e5468263af5447932537c5314 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Sat, 22 Sep 2012 18:45:32 -0600 Subject: [PATCH] mesa: remove ASSERT_NO_FEATURE macro Was only used in one place. Reviewed-by: Ian Romanick --- src/mesa/main/api_validate.c | 2 +- src/mesa/main/mfeatures.h | 3 --- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/src/mesa/main/api_validate.c b/src/mesa/main/api_validate.c index db9d14a4cc2..6f025080038 100644 --- a/src/mesa/main/api_validate.c +++ b/src/mesa/main/api_validate.c @@ -148,7 +148,7 @@ check_valid_to_render(struct gl_context *ctx, const char *function) break; default: - ASSERT_NO_FEATURE(); + assert(!"Invalid API value in check_valid_to_render()"); } return GL_TRUE; diff --git a/src/mesa/main/mfeatures.h b/src/mesa/main/mfeatures.h index 3162a0bbf9b..829c0563bce 100644 --- a/src/mesa/main/mfeatures.h +++ b/src/mesa/main/mfeatures.h @@ -35,9 +35,6 @@ #define _HAVE_FULL_GL 1 #endif -/* assert that a feature is disabled and should never be used */ -#define ASSERT_NO_FEATURE() ASSERT(0) - #ifndef FEATURE_ES1 #define FEATURE_ES1 0 #endif -- 2.30.2