From 6558797f99b7ac9b6247d4fcfd5b926eff32d1a4 Mon Sep 17 00:00:00 2001 From: Luca Barbieri Date: Tue, 23 Feb 2010 15:05:36 +0100 Subject: [PATCH] nvfx: so->RING_3D: blend --- src/gallium/drivers/nvfx/nvfx_state_blend.c | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/src/gallium/drivers/nvfx/nvfx_state_blend.c b/src/gallium/drivers/nvfx/nvfx_state_blend.c index 03b6ef8117d..a6a0f9b16f3 100644 --- a/src/gallium/drivers/nvfx/nvfx_state_blend.c +++ b/src/gallium/drivers/nvfx/nvfx_state_blend.c @@ -18,17 +18,15 @@ struct nvfx_state_entry nvfx_state_blend = { static boolean nvfx_state_blend_colour_validate(struct nvfx_context *nvfx) { - struct nouveau_stateobj *so = so_new(1, 1, 0); + struct nouveau_channel* chan = nvfx->screen->base.channel; struct pipe_blend_color *bcol = &nvfx->blend_colour; - so_method(so, nvfx->screen->eng3d, NV34TCL_BLEND_COLOR, 1); - so_data (so, ((float_to_ubyte(bcol->color[3]) << 24) | + WAIT_RING(chan, 2); + OUT_RING(chan, RING_3D(NV34TCL_BLEND_COLOR, 1)); + OUT_RING(chan, ((float_to_ubyte(bcol->color[3]) << 24) | (float_to_ubyte(bcol->color[0]) << 16) | (float_to_ubyte(bcol->color[1]) << 8) | (float_to_ubyte(bcol->color[2]) << 0))); - - so_ref(so, &nvfx->state.hw[NVFX_STATE_BCOL]); - so_ref(NULL, &so); return TRUE; } @@ -36,6 +34,5 @@ struct nvfx_state_entry nvfx_state_blend_colour = { .validate = nvfx_state_blend_colour_validate, .dirty = { .pipe = NVFX_NEW_BCOL, - .hw = NVFX_STATE_BCOL } }; -- 2.11.0