summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLuca Barbieri <luca@luca-barbieri.com>2010-02-23 15:05:36 +0100
committerLuca Barbieri <luca@luca-barbieri.com>2010-04-12 12:13:16 +0200
commit6558797f99b7ac9b6247d4fcfd5b926eff32d1a4 (patch)
treecc576e019a9212ffda515fc039a8f3805736ba16 /src
parentf320176b71c8f69aa811a6fefa9d23fdf924cd23 (diff)
nvfx: so->RING_3D: blend
Diffstat (limited to 'src')
-rw-r--r--src/gallium/drivers/nvfx/nvfx_state_blend.c11
1 files 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 03b6ef8117..a6a0f9b16f 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
}
};