diff options
author | Patrice Mandin <pmandin@caramail.com> | 2008-07-03 22:42:30 +0200 |
---|---|---|
committer | Patrice Mandin <pmandin@caramail.com> | 2008-07-03 22:42:30 +0200 |
commit | 568b477b9c118e5ace831b8ecf1811da1c0961cd (patch) | |
tree | f3ddb971f72ad30332766fc0bdc730e0ac888ca0 /src/gallium/drivers/nv30/nv30_state.c | |
parent | e7e231a5116aed9f1ca685a297032a3e3e6a2433 (diff) |
nv30: Emit viewport state using state objects
Diffstat (limited to 'src/gallium/drivers/nv30/nv30_state.c')
-rw-r--r-- | src/gallium/drivers/nv30/nv30_state.c | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/src/gallium/drivers/nv30/nv30_state.c b/src/gallium/drivers/nv30/nv30_state.c index 7109deae55..e65c4b215d 100644 --- a/src/gallium/drivers/nv30/nv30_state.c +++ b/src/gallium/drivers/nv30/nv30_state.c @@ -617,15 +617,9 @@ nv30_set_viewport_state(struct pipe_context *pipe, { struct nv30_context *nv30 = nv30_context(pipe); - BEGIN_RING(rankine, NV34TCL_VIEWPORT_TRANSLATE_X, 8); - OUT_RINGf (vpt->translate[0]); - OUT_RINGf (vpt->translate[1]); - OUT_RINGf (vpt->translate[2]); - OUT_RINGf (vpt->translate[3]); - OUT_RINGf (vpt->scale[0]); - OUT_RINGf (vpt->scale[1]); - OUT_RINGf (vpt->scale[2]); - OUT_RINGf (vpt->scale[3]); + nv30->viewport = *vpt; + nv30->dirty |= NV30_NEW_VIEWPORT; + /*nv30->draw_dirty |= NV30_NEW_VIEWPORT;*/ } static void |