diff options
author | Francisco Jerez <[email protected]> | 2010-09-28 22:51:28 +0200 |
---|---|---|
committer | Francisco Jerez <[email protected]> | 2010-10-12 04:13:22 +0200 |
commit | c25fcf5aa5beccd7731706b8f85682170a2eca56 (patch) | |
tree | b50b4623b55caeff9ab989fdef259d03c9eca5b4 /src/gallium/drivers/nouveau | |
parent | 70828aa246464d5e1ae0c32a9301c4dccfa54935 (diff) |
nouveau: Get larger push buffers.
Useful to amortize the command submission/reloc overhead (e.g. etracer
goes from 72 to 109 FPS on nv4b).
Diffstat (limited to 'src/gallium/drivers/nouveau')
-rw-r--r-- | src/gallium/drivers/nouveau/nouveau_screen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/nouveau/nouveau_screen.c b/src/gallium/drivers/nouveau/nouveau_screen.c index ebb21a6e5a3..a9426df686f 100644 --- a/src/gallium/drivers/nouveau/nouveau_screen.c +++ b/src/gallium/drivers/nouveau/nouveau_screen.c @@ -236,7 +236,7 @@ nouveau_screen_init(struct nouveau_screen *screen, struct nouveau_device *dev) int ret; ret = nouveau_channel_alloc(dev, 0xbeef0201, 0xbeef0202, - &screen->channel); + 512*1024, &screen->channel); if (ret) return ret; screen->device = dev; |