diff options
author | Keith Whitwell <[email protected]> | 2009-11-04 21:35:29 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2009-11-04 21:37:07 +0000 |
commit | 951fdac566c3f2124f82aa94da08f55a10608f25 (patch) | |
tree | e3650db3e258c1296b4255311b3c5ee9a9bf3850 /src/gallium/drivers/i965/brw_context.c | |
parent | cde48bc8d1576482d7381b9b6fdce32b013e5d00 (diff) |
i965g: pull in a copy of intel_decode.c for now
With the stubbed out, non-hardware xlib winsys, trivial/clear runs and
prints a plausible command stream
Diffstat (limited to 'src/gallium/drivers/i965/brw_context.c')
-rw-r--r-- | src/gallium/drivers/i965/brw_context.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/i965/brw_context.c b/src/gallium/drivers/i965/brw_context.c index cd8963bebcb..aaf7d1834ea 100644 --- a/src/gallium/drivers/i965/brw_context.c +++ b/src/gallium/drivers/i965/brw_context.c @@ -133,7 +133,7 @@ struct pipe_context *brw_create_context(struct pipe_screen *screen) make_empty_list(&brw->query.active_head); - brw->batch = brw_batchbuffer_alloc( brw->sws ); + brw->batch = brw_batchbuffer_alloc( brw->sws, brw->chipset ); if (brw->batch == NULL) goto fail; |