r300g: Add VBO dumper for SW TCL.
[mesa.git] / src / gallium / drivers / nvfx / nvfx_state_viewport.c
index 82e0e9220b080f53aa42eace400c57c928e2edd0..e983b16f321323175cec5e50d0b6e9ad10fe9aeb 100644 (file)
@@ -1,51 +1,35 @@
 #include "nvfx_context.h"
 
-static boolean
+void
 nvfx_state_viewport_validate(struct nvfx_context *nvfx)
 {
+       struct nouveau_channel *chan = nvfx->screen->base.channel;
        struct pipe_viewport_state *vpt = &nvfx->viewport;
-       struct nouveau_stateobj *so;
 
-       if (nvfx->state.hw[NVFX_STATE_VIEWPORT] &&
-           !(nvfx->dirty & NVFX_NEW_VIEWPORT))
-               return FALSE;
-
-       so = so_new(2, 9, 0);
-       so_method(so, nvfx->screen->eng3d,
-                 NV34TCL_VIEWPORT_TRANSLATE_X, 8);
+       WAIT_RING(chan, 11);
        if(nvfx->render_mode == HW) {
-               so_data  (so, fui(vpt->translate[0]));
-               so_data  (so, fui(vpt->translate[1]));
-               so_data  (so, fui(vpt->translate[2]));
-               so_data  (so, fui(vpt->translate[3]));
-               so_data  (so, fui(vpt->scale[0]));
-               so_data  (so, fui(vpt->scale[1]));
-               so_data  (so, fui(vpt->scale[2]));
-               so_data  (so, fui(vpt->scale[3]));
-               so_method(so, nvfx->screen->eng3d, 0x1d78, 1);
-               so_data  (so, 1);
+               OUT_RING(chan, RING_3D(NV34TCL_VIEWPORT_TRANSLATE_X, 8));
+               OUT_RINGf(chan, vpt->translate[0]);
+               OUT_RINGf(chan, vpt->translate[1]);
+               OUT_RINGf(chan, vpt->translate[2]);
+               OUT_RINGf(chan, vpt->translate[3]);
+               OUT_RINGf(chan, vpt->scale[0]);
+               OUT_RINGf(chan, vpt->scale[1]);
+               OUT_RINGf(chan, vpt->scale[2]);
+               OUT_RINGf(chan, vpt->scale[3]);
+               OUT_RING(chan, RING_3D(0x1d78, 1));
+               OUT_RING(chan, 1);
        } else {
-               so_data  (so, fui(0.0f));
-               so_data  (so, fui(0.0f));
-               so_data  (so, fui(0.0f));
-               so_data  (so, fui(0.0f));
-               so_data  (so, fui(1.0f));
-               so_data  (so, fui(1.0f));
-               so_data  (so, fui(1.0f));
-               so_data  (so, fui(1.0f));
-               so_method(so, nvfx->screen->eng3d, 0x1d78, 1);
-               so_data  (so, nvfx->is_nv4x ? 0x110 : 1);
+               OUT_RING(chan, RING_3D(NV34TCL_VIEWPORT_TRANSLATE_X, 8));
+               OUT_RINGf(chan, 0.0f);
+               OUT_RINGf(chan, 0.0f);
+               OUT_RINGf(chan, 0.0f);
+               OUT_RINGf(chan, 0.0f);
+               OUT_RINGf(chan, 1.0f);
+               OUT_RINGf(chan, 1.0f);
+               OUT_RINGf(chan, 1.0f);
+               OUT_RINGf(chan, 1.0f);
+               OUT_RING(chan, RING_3D(0x1d78, 1));
+               OUT_RING(chan, nvfx->is_nv4x ? 0x110 : 1);
        }
-
-       so_ref(so, &nvfx->state.hw[NVFX_STATE_VIEWPORT]);
-       so_ref(NULL, &so);
-       return TRUE;
 }
-
-struct nvfx_state_entry nvfx_state_viewport = {
-       .validate = nvfx_state_viewport_validate,
-       .dirty = {
-               .pipe = NVFX_NEW_VIEWPORT,
-               .hw = NVFX_STATE_VIEWPORT
-       }
-};