mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-13 20:40:14 +01:00
in _mesa_problem() include version number in error message
This commit is contained in:
parent
765f1a12c6
commit
d4aaa68979
1 changed files with 4 additions and 3 deletions
|
|
@ -32,7 +32,7 @@
|
|||
|
||||
/*
|
||||
* Mesa 3-D graphics library
|
||||
* Version: 6.1
|
||||
* Version: 6.2
|
||||
*
|
||||
* Copyright (C) 1999-2004 Brian Paul All Rights Reserved.
|
||||
*
|
||||
|
|
@ -58,6 +58,7 @@
|
|||
|
||||
#include "imports.h"
|
||||
#include "context.h"
|
||||
#include "version.h"
|
||||
|
||||
|
||||
#define MAXSTRING 4000 /* for vsnprintf() */
|
||||
|
|
@ -905,10 +906,10 @@ _mesa_problem( const GLcontext *ctx, const char *fmtString, ... )
|
|||
va_end( args );
|
||||
|
||||
#if defined(XFree86LOADER) && defined(IN_MODULE)
|
||||
xf86fprintf(stderr, "Mesa implementation error: %s\n", str);
|
||||
xf86fprintf(stderr, "Mesa %s implementation error: %s\n", MESA_VERSION_STRING, str);
|
||||
xf86fprintf(stderr, "Please report to the DRI project at dri.sourceforge.net\n");
|
||||
#else
|
||||
fprintf(stderr, "Mesa implementation error: %s\n", str);
|
||||
fprintf(stderr, "Mesa %s implementation error: %s\n", MESA_VERSION_STRING, str);
|
||||
fprintf(stderr, "Please report to the Mesa bug database at www.mesa3d.org\n" );
|
||||
#endif
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue