From: Ilia Mirkin Date: Fri, 24 Apr 2015 23:33:05 +0000 (-0400) Subject: mesa: the function name appears to have a gl prefix already X-Git-Tag: upstream/17.1.0~19233 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=dfb274af4c6e0991fa20af1606e45bea6f947fed;p=platform%2Fupstream%2Fmesa.git mesa: the function name appears to have a gl prefix already Currently we're producing errors like User error: GL_INVALID_OPERATION in glglDeleteProgramsARB(invalid call) And noop_warn appears to be called with the full function name. Don't prepend a gl prefix. Signed-off-by: Ilia Mirkin Reviewed-by: Brian Paul --- diff --git a/src/mesa/main/context.c b/src/mesa/main/context.c index f36fb8d..4aaf8b1 100644 --- a/src/mesa/main/context.c +++ b/src/mesa/main/context.c @@ -894,14 +894,14 @@ update_default_objects(struct gl_context *ctx) * If there's no current OpenGL context for the calling thread, we can * print a message to stderr. * - * \param name the name of the OpenGL function, without the "gl" prefix + * \param name the name of the OpenGL function */ static void nop_handler(const char *name) { GET_CURRENT_CONTEXT(ctx); if (ctx) { - _mesa_error(ctx, GL_INVALID_OPERATION, "gl%s(invalid call)", name); + _mesa_error(ctx, GL_INVALID_OPERATION, "%s(invalid call)", name); } #if defined(DEBUG) else if (getenv("MESA_DEBUG") || getenv("LIBGL_DEBUG")) {