diff options
author | Ben Skeggs <skeggsb@gmail.com> | 2007-12-09 21:44:46 +1100 |
---|---|---|
committer | Ben Skeggs <skeggsb@gmail.com> | 2007-12-09 21:44:46 +1100 |
commit | f58f4e0f0ecc6c7079ef52f4a417707843507fab (patch) | |
tree | 06b2914da5be97537ae76e424ea60a41609bf3ab /src/mesa/pipe | |
parent | 62bbf8db873716c56ca089dbba59d1d3980563b5 (diff) |
nouveau: relocs are per-pushbuf, not per-channel
Diffstat (limited to 'src/mesa/pipe')
-rw-r--r-- | src/mesa/pipe/nouveau/nouveau_winsys.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/pipe/nouveau/nouveau_winsys.h b/src/mesa/pipe/nouveau/nouveau_winsys.h index ce1744c2ee..4525f7113c 100644 --- a/src/mesa/pipe/nouveau/nouveau_winsys.h +++ b/src/mesa/pipe/nouveau/nouveau_winsys.h @@ -25,7 +25,7 @@ struct nouveau_winsys { /*XXX: this is crappy, and bound to be slow.. however, it's nice and * simple, it'll do for the moment*/ uint32_t *(*begin_ring)(struct nouveau_grobj *, int mthd, int size); - void (*out_reloc)(struct nouveau_channel *, void *ptr, + int (*out_reloc)(struct nouveau_channel *, void *ptr, struct nouveau_bo *, uint32_t data, uint32_t flags, uint32_t vor, uint32_t tor); void (*fire_ring)(struct nouveau_channel *); |