summaryrefslogtreecommitdiff
path: root/src/gallium/auxiliary/util/u_debug_describe.h
blob: 33587ec8791a7fe40d6d459fec8f528aeecd3cf4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef U_DEBUG_DESCRIBE_H_
#define U_DEBUG_DESCRIBE_H_

#ifdef __cplusplus
extern "C" {
#endif

struct pipe_reference;
struct pipe_resource;
struct pipe_surface;
struct pipe_sampler_view;

/* a 256-byte buffer is necessary and sufficient */
void debug_describe_reference(char* buf, const struct pipe_reference*ptr);
void debug_describe_resource(char* buf, const struct pipe_resource *ptr);
void debug_describe_surface(char* buf, const struct pipe_surface *ptr);
void debug_describe_sampler_view(char* buf, const struct pipe_sampler_view *ptr);

#ifdef __cplusplus
}
#endif

#endif /* U_DEBUG_DESCRIBE_H_ */