st/nine: Improve logging

Add missing DBG calls in dtors.

Signed-off-by: Patrick Rudolph <siro@das-labor.org>
Reviewed-by: Axel Davy <axel.davy@ens.fr>
This commit is contained in:
Patrick Rudolph 2016-03-09 15:15:46 +01:00 committed by Axel Davy
parent f3fa7e3068
commit f45b9894e5
6 changed files with 12 additions and 0 deletions

View file

@ -118,6 +118,8 @@ NineBuffer9_ctor( struct NineBuffer9 *This,
void
NineBuffer9_dtor( struct NineBuffer9 *This )
{
DBG("This=%p\n", This);
if (This->maps) {
while (This->nmaps) {
NineBuffer9_Unlock(This);

View file

@ -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);

View file

@ -110,6 +110,8 @@ NineResource9_ctor( struct NineResource9 *This,
void
NineResource9_dtor( struct NineResource9 *This )
{
DBG("This=%p\n", This);
if (This->pdata) {
util_hash_table_foreach(This->pdata, ht_guid_delete, NULL);
util_hash_table_destroy(This->pdata);

View file

@ -175,6 +175,8 @@ NineSurface9_ctor( struct NineSurface9 *This,
void
NineSurface9_dtor( struct NineSurface9 *This )
{
DBG("This=%p\n", This);
if (This->transfer)
NineSurface9_UnlockRect(This);

View file

@ -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)

View file

@ -226,6 +226,8 @@ NineVertexDeclaration9_ctor( struct NineVertexDeclaration9 *This,
void
NineVertexDeclaration9_dtor( struct NineVertexDeclaration9 *This )
{
DBG("This=%p\n", This);
FREE(This->decls);
FREE(This->elems);
FREE(This->usage_map);