diff options
author | Roland Scheidegger <[email protected]> | 2009-12-03 23:58:30 +0100 |
---|---|---|
committer | Roland Scheidegger <[email protected]> | 2009-12-03 23:58:30 +0100 |
commit | 4153ec547cfb7fcb26bbeb09ac9ef19fe88d3e4e (patch) | |
tree | 78ad987e0903557f9c29895bfae90ec2cf1f0dd1 /src/gallium/drivers/nouveau | |
parent | 86c8f70db10a584aa78e4d5f397ad3543fdb77d2 (diff) |
gallium: fix remaining users of pipe_reference function
Diffstat (limited to 'src/gallium/drivers/nouveau')
-rw-r--r-- | src/gallium/drivers/nouveau/nouveau_stateobj.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/drivers/nouveau/nouveau_stateobj.h b/src/gallium/drivers/nouveau/nouveau_stateobj.h index b595405357f..62990f9b6a6 100644 --- a/src/gallium/drivers/nouveau/nouveau_stateobj.h +++ b/src/gallium/drivers/nouveau/nouveau_stateobj.h @@ -48,13 +48,14 @@ so_ref(struct nouveau_stateobj *ref, struct nouveau_stateobj **pso) struct nouveau_stateobj *so = *pso; int i; - if (pipe_reference((struct pipe_reference**)pso, &ref->reference)) { + if (pipe_reference(&(*pso)->reference, &ref->reference)) { free(so->push); for (i = 0; i < so->cur_reloc; i++) nouveau_bo_ref(NULL, &so->reloc[i].bo); free(so->reloc); free(so); } + *pso = ref; } static INLINE void |