diff options
author | Ben Skeggs <[email protected]> | 2008-07-08 12:51:29 +1000 |
---|---|---|
committer | Ben Skeggs <[email protected]> | 2008-07-08 12:51:29 +1000 |
commit | 06d87b44cffef9e335b9a0e70fd2aec61fcd171b (patch) | |
tree | 48cf9cf4ac65844865dbf65b5f9dd1a117895795 /src/gallium/drivers/nouveau/nouveau_stateobj.h | |
parent | 205101dafb0042ebeeab3dd50f549d8a3d3c08ce (diff) |
nv50: make use of nouveau drm 0.0.11 to get 3d going
Diffstat (limited to 'src/gallium/drivers/nouveau/nouveau_stateobj.h')
-rw-r--r-- | src/gallium/drivers/nouveau/nouveau_stateobj.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gallium/drivers/nouveau/nouveau_stateobj.h b/src/gallium/drivers/nouveau/nouveau_stateobj.h index 78b27380702..998ec2d4ad4 100644 --- a/src/gallium/drivers/nouveau/nouveau_stateobj.h +++ b/src/gallium/drivers/nouveau/nouveau_stateobj.h @@ -136,6 +136,9 @@ so_emit_reloc_markers(struct nouveau_winsys *nvws, struct nouveau_stateobj *so) struct nouveau_pushbuf *pb = nvws->channel->pushbuf; unsigned i; + if (!so) + return; + i = so->cur_reloc << 1; if (nvws->channel->pushbuf->remaining < i) nvws->push_flush(nvws, i, NULL); |