summaryrefslogtreecommitdiff
path: root/src/gallium/auxiliary/util/u_debug_describe.h
diff options
context:
space:
mode:
authorLuca Barbieri <luca@luca-barbieri.com>2010-08-18 00:36:14 +0200
committerLuca Barbieri <luca@luca-barbieri.com>2010-08-20 18:18:28 +0200
commitd46f91af68e4930b84dd066687c4d865cb54c9b3 (patch)
tree320ab1e9edc8268c1b0e76cdad88054777b2b613 /src/gallium/auxiliary/util/u_debug_describe.h
parent63d010115c7972d854e0583f8f74e8d0c3407fcd (diff)
auxiliary: add functions to describe gallium objects
Diffstat (limited to 'src/gallium/auxiliary/util/u_debug_describe.h')
-rw-r--r--src/gallium/auxiliary/util/u_debug_describe.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/util/u_debug_describe.h b/src/gallium/auxiliary/util/u_debug_describe.h
new file mode 100644
index 0000000000..cab614bdc2
--- /dev/null
+++ b/src/gallium/auxiliary/util/u_debug_describe.h
@@ -0,0 +1,10 @@
+#ifndef U_DEBUG_DESCRIBE_H_
+#define U_DEBUG_DESCRIBE_H_
+
+/* 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);
+
+#endif /* U_DEBUG_DESCRIBE_H_ */