summaryrefslogtreecommitdiffstats
path: root/src/gallium/include/pipe
diff options
context:
space:
mode:
authorChristoph Bumiller <[email protected]>2011-10-20 18:03:23 +0200
committerChristoph Bumiller <[email protected]>2011-10-20 18:03:23 +0200
commit10f67c070b6af7000b31d0b08442f5ee38645344 (patch)
treede752d63ad14ce1aeb99f8eb36d2cb44d0058bce /src/gallium/include/pipe
parentc0cd9471173cd2287d74f5a536577348c789da5d (diff)
gallium: add new query types and missing documentation
Diffstat (limited to 'src/gallium/include/pipe')
-rw-r--r--src/gallium/include/pipe/p_defines.h19
1 files changed, 11 insertions, 8 deletions
diff --git a/src/gallium/include/pipe/p_defines.h b/src/gallium/include/pipe/p_defines.h
index 447df35da2a..5196591b471 100644
--- a/src/gallium/include/pipe/p_defines.h
+++ b/src/gallium/include/pipe/p_defines.h
@@ -375,14 +375,17 @@ enum pipe_transfer_usage {
* Query object types
*/
#define PIPE_QUERY_OCCLUSION_COUNTER 0
-#define PIPE_QUERY_PRIMITIVES_GENERATED 1
-#define PIPE_QUERY_PRIMITIVES_EMITTED 2
-#define PIPE_QUERY_TIME_ELAPSED 3
-#define PIPE_QUERY_SO_STATISTICS 5
-#define PIPE_QUERY_GPU_FINISHED 6
-#define PIPE_QUERY_TIMESTAMP_DISJOINT 7
-#define PIPE_QUERY_OCCLUSION_PREDICATE 8
-#define PIPE_QUERY_TYPES 9
+#define PIPE_QUERY_OCCLUSION_PREDICATE 1
+#define PIPE_QUERY_TIMESTAMP 2
+#define PIPE_QUERY_TIMESTAMP_DISJOINT 3
+#define PIPE_QUERY_TIME_ELAPSED 4
+#define PIPE_QUERY_PRIMITIVES_GENERATED 5
+#define PIPE_QUERY_PRIMITIVES_EMITTED 6
+#define PIPE_QUERY_SO_STATISTICS 7
+#define PIPE_QUERY_SO_OVERFLOW_PREDICATE 8
+#define PIPE_QUERY_GPU_FINISHED 9
+#define PIPE_QUERY_PIPELINE_STATISTICS 10
+#define PIPE_QUERY_TYPES 11
/**