diff options
author | Christoph Bumiller <[email protected]> | 2013-03-29 13:56:35 +0100 |
---|---|---|
committer | Christoph Bumiller <[email protected]> | 2013-04-03 12:54:43 +0200 |
commit | 3d2790cead7eb744341e8b1708b7a6d03524768d (patch) | |
tree | 3e078dfc33a1d8b744d820d6b4b4420ed5bc10c6 /src/gallium/auxiliary/hud/hud_private.h | |
parent | c620aad71c2fe147dd2435c27053b435801a5237 (diff) |
gallium/hud: add support for PIPE_QUERY_PIPELINE_STATISTICS
Also, renamed "pixels-rendered" to "samples-passed" because the
occlusion counter increments even if colour and depth writes are
disabled, or (on some implementations) for killed fragments that
passed the depth test when PS early_fragment_tests is set.
Diffstat (limited to 'src/gallium/auxiliary/hud/hud_private.h')
-rw-r--r-- | src/gallium/auxiliary/hud/hud_private.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/hud/hud_private.h b/src/gallium/auxiliary/hud/hud_private.h index 4c97791c635..2b7d56bb1ad 100644 --- a/src/gallium/auxiliary/hud/hud_private.h +++ b/src/gallium/auxiliary/hud/hud_private.h @@ -84,6 +84,7 @@ void hud_fps_graph_install(struct hud_pane *pane); void hud_cpu_graph_install(struct hud_pane *pane, unsigned cpu_index); void hud_pipe_query_install(struct hud_pane *pane, struct pipe_context *pipe, const char *name, unsigned query_type, + unsigned result_index, uint64_t max_value, boolean uses_byte_units); boolean hud_driver_query_install(struct hud_pane *pane, struct pipe_context *pipe, const char *name); |