From c9126d66fa8e535a53d45adda44c3275fa2e229f Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Thu, 11 Nov 2010 07:43:30 -0700 Subject: [PATCH] mesa: improve error message --- src/mesa/main/formats.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/mesa/main/formats.c b/src/mesa/main/formats.c index e18a9fc..46a1fe0 100644 --- a/src/mesa/main/formats.c +++ b/src/mesa/main/formats.c @@ -1428,7 +1428,8 @@ _mesa_format_to_type_and_comps(gl_format format, default: - _mesa_problem(NULL, "bad format in _mesa_format_to_type_and_comps"); + _mesa_problem(NULL, "bad format %s in _mesa_format_to_type_and_comps", + _mesa_get_format_name(format)); *datatype = 0; *comps = 1; } -- 2.7.4