mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-25 17:20:10 +01:00
silence p_debug.h:63: warning: ISO C forbids forward references to ‘enum’ types
This commit is contained in:
parent
5692e09be8
commit
0d80f407f1
2 changed files with 3 additions and 6 deletions
|
|
@ -413,11 +413,11 @@ char *pf_sprint_name( char *str, enum pipe_format format )
|
|||
}
|
||||
|
||||
|
||||
void debug_print_format(const char *msg, enum pipe_format fmt )
|
||||
void debug_print_format(const char *msg, unsigned fmt )
|
||||
{
|
||||
char fmtstr[80];
|
||||
|
||||
pf_sprint_name(fmtstr, fmt);
|
||||
pf_sprint_name(fmtstr, (enum pipe_format)fmt);
|
||||
|
||||
debug_printf("%s: %s\n", msg, fmtstr);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -59,9 +59,6 @@ extern "C" {
|
|||
#endif
|
||||
#endif
|
||||
|
||||
|
||||
enum pipe_format;
|
||||
|
||||
void _debug_vprintf(const char *format, va_list ap);
|
||||
|
||||
|
||||
|
|
@ -114,7 +111,7 @@ void debug_print_blob( const char *name, const void *blob, unsigned size );
|
|||
|
||||
/* Print a message along with a prettified format string
|
||||
*/
|
||||
void debug_print_format(const char *msg, enum pipe_format fmt );
|
||||
void debug_print_format(const char *msg, unsigned fmt );
|
||||
#else
|
||||
#define debug_print_blob(_name, _blob, _size) ((void)0)
|
||||
#define debug_print_format(_msg, _fmt) ((void)0)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue