diff options
author | Ben Skeggs <[email protected]> | 2008-02-29 22:54:40 +1100 |
---|---|---|
committer | Ben Skeggs <[email protected]> | 2008-02-29 22:54:40 +1100 |
commit | baaae562f02563c5966b857c61b3eae7341950e3 (patch) | |
tree | 6a24ff2c1db738a3a457991b88a6d5a3064f9bc0 /src/gallium/drivers/nv30/nv30_context.c | |
parent | 84cc07dc89c0ebce4ad55b4b3684d4420a202683 (diff) |
nouveau: hand nouveau_winsys in with pipe_screen init
Diffstat (limited to 'src/gallium/drivers/nv30/nv30_context.c')
-rw-r--r-- | src/gallium/drivers/nv30/nv30_context.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/drivers/nv30/nv30_context.c b/src/gallium/drivers/nv30/nv30_context.c index b8452e23b16..522fb132269 100644 --- a/src/gallium/drivers/nv30/nv30_context.c +++ b/src/gallium/drivers/nv30/nv30_context.c @@ -265,9 +265,10 @@ nv30_init_hwctx(struct nv30_context *nv30, int rankine_class) #define NV35TCL_CHIPSET_3X_MASK 0x000001e0 struct pipe_context * -nv30_create(struct pipe_screen *screen, struct nouveau_winsys *nvws) +nv30_create(struct pipe_screen *screen) { struct pipe_winsys *pipe_winsys = screen->winsys; + struct nouveau_winsys *nvws = nv30_screen(screen)->nvws; unsigned chipset = nv30_screen(screen)->chipset; struct nv30_context *nv30; int rankine_class = 0, ret; |