diff options
author | Corbin Simpson <[email protected]> | 2009-01-22 13:34:21 -0800 |
---|---|---|
committer | Corbin Simpson <[email protected]> | 2009-02-01 23:30:25 -0800 |
commit | ecb7f29f74c8f7456302267fe31b1de4bcc103c5 (patch) | |
tree | 1f86aac7d7a005755dc7e9a00796e43a3ea9919b /src/gallium/drivers/r300/r300_context.c | |
parent | 90a96cb2addf48b3b48c039a8dc6de9e53bfb6df (diff) |
amd/r300: Wire up GETPARAM ioctls.
Whoo, stuff is starting to look cleaner and cleaner.
Diffstat (limited to 'src/gallium/drivers/r300/r300_context.c')
-rw-r--r-- | src/gallium/drivers/r300/r300_context.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/r300/r300_context.c b/src/gallium/drivers/r300/r300_context.c index 467594ec9b6..f254b2f2a32 100644 --- a/src/gallium/drivers/r300/r300_context.c +++ b/src/gallium/drivers/r300/r300_context.c @@ -43,7 +43,7 @@ struct pipe_context* r300_create_context(struct pipe_screen* screen, r300->winsys = r300_winsys; r300->context.winsys = winsys; - r300->context.screen = r300_create_screen(winsys, r300_winsys->pci_id); + r300->context.screen = r300_create_screen(winsys, r300_winsys); r300->context.destroy = r300_destroy_context; |