diff options
author | Pedro Maia <[email protected]> | 2010-04-27 08:21:49 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2010-04-27 08:22:11 -0600 |
commit | ea373df069aa734b4f59a5fbdbc304477a3613a0 (patch) | |
tree | 9ec3eb63604786a7428bff36ef86324cb7c0d4f5 /src/gallium/drivers/nv30/nv30_context.c | |
parent | b0e2c5f8aa4d6c88dcfefc9d2b5c7fa0d29ebbd6 (diff) |
nv30/40g: fix calls to draw_create(), draw_set_rasterizer_state()
Signed-off-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/gallium/drivers/nv30/nv30_context.c')
-rw-r--r-- | src/gallium/drivers/nv30/nv30_context.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/nv30/nv30_context.c b/src/gallium/drivers/nv30/nv30_context.c index 279b74445ca..b5ce3b02386 100644 --- a/src/gallium/drivers/nv30/nv30_context.c +++ b/src/gallium/drivers/nv30/nv30_context.c @@ -76,7 +76,7 @@ nv30_create(struct pipe_screen *pscreen, void *priv) nv30_init_state_functions(nv30); /* Create, configure, and install fallback swtnl path */ - nv30->draw = draw_create(); + nv30->draw = draw_create(&nv30->pipe); draw_wide_point_threshold(nv30->draw, 9999999.0); draw_wide_line_threshold(nv30->draw, 9999999.0); draw_enable_line_stipple(nv30->draw, FALSE); |