blob: 11175bce7a5d984ac81965e889e553a4067d3229 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#ifndef __NOUVEAU_LOCAL_H__
#define __NOUVEAU_LOCAL_H__
#include "pipe/p_compiler.h"
#include "nouveau_winsys_pipe.h"
#include <stdio.h>
/* Debug output */
#define NOUVEAU_MSG(fmt, args...) do { \
fprintf(stdout, "nouveau: "fmt, ##args); \
fflush(stdout); \
} while(0)
#define NOUVEAU_ERR(fmt, args...) do { \
fprintf(stderr, "%s:%d - "fmt, __func__, __LINE__, ##args); \
fflush(stderr); \
} while(0)
#endif
|