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/texture9.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/texture9.c')
-rw-r--r-- | src/gallium/state_trackers/nine/texture9.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/state_trackers/nine/texture9.c b/src/gallium/state_trackers/nine/texture9.c index 3b88e07e976..9bc8610b291 100644 --- a/src/gallium/state_trackers/nine/texture9.c +++ b/src/gallium/state_trackers/nine/texture9.c @@ -226,6 +226,8 @@ NineTexture9_dtor( struct NineTexture9 *This ) { unsigned l; + DBG("This=%p\n", This); + if (This->surfaces) { /* The surfaces should have 0 references and be unbound now. */ for (l = 0; l <= This->base.base.info.last_level; ++l) |