summaryrefslogtreecommitdiffstats
path: root/src/gallium/state_trackers/nine/query9.c
diff options
context:
space:
mode:
authorPatrick Rudolph <[email protected]>2016-03-09 15:15:46 +0100
committerAxel Davy <[email protected]>2016-05-18 23:37:14 +0200
commitf45b9894e50f64197f8a3708359896a870e9089d (patch)
treea7c07bcb2f16734b01b4c9f9c853cf0cb7936605 /src/gallium/state_trackers/nine/query9.c
parentf3fa7e3068512dde55c3f4d7c2b599ab1d7fe67f (diff)
st/nine: Improve logging
Add missing DBG calls in dtors. Signed-off-by: Patrick Rudolph <[email protected]> Reviewed-by: Axel Davy <[email protected]>
Diffstat (limited to 'src/gallium/state_trackers/nine/query9.c')
-rw-r--r--src/gallium/state_trackers/nine/query9.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/state_trackers/nine/query9.c b/src/gallium/state_trackers/nine/query9.c
index 39ac831ba77..dd7f03d389e 100644
--- a/src/gallium/state_trackers/nine/query9.c
+++ b/src/gallium/state_trackers/nine/query9.c
@@ -134,6 +134,8 @@ NineQuery9_dtor( struct NineQuery9 *This )
{
struct pipe_context *pipe = This->base.device->pipe;
+ DBG("This=%p\n", This);
+
if (This->pq) {
if (This->state == NINE_QUERY_STATE_RUNNING)
pipe->end_query(pipe, This->pq);