diff options
author | Patrick Rudolph <[email protected]> | 2016-03-09 15:15:46 +0100 |
---|---|---|
committer | Axel Davy <[email protected]> | 2016-05-18 23:37:14 +0200 |
commit | f45b9894e50f64197f8a3708359896a870e9089d (patch) | |
tree | a7c07bcb2f16734b01b4c9f9c853cf0cb7936605 /src/gallium/state_trackers/nine/query9.c | |
parent | f3fa7e3068512dde55c3f4d7c2b599ab1d7fe67f (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.c | 2 |
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); |