summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/nv30/nv30_state_blend.c
blob: 64cf9ae93a0a6018262be11a7b715900acc145b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#include "nv30_context.h"

static boolean
nv30_state_blend_validate(struct nv30_context *nv30)
{
	so_ref(nv30->blend->so, &nv30->state.hw[NV30_STATE_BLEND]);
	return TRUE;
}

struct nv30_state_entry nv30_state_blend = {
	.validate = nv30_state_blend_validate,
	.dirty = {
		.pipe = NV30_NEW_BLEND,
		.hw = NV30_STATE_BLEND
	}
};

static boolean
nv30_state_blend_colour_validate(struct nv30_context *nv30)
{
	struct nouveau_stateobj *so = so_new(2, 0);
	struct pipe_blend_color *bcol = &nv30->blend_colour;

	so_method(so, nv30->screen->rankine, NV34TCL_BLEND_COLOR, 1);
	so_data  (so, ((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, &nv30->state.hw[NV30_STATE_BCOL]);
	so_ref(NULL, &so);
	return TRUE;
}

struct nv30_state_entry nv30_state_blend_colour = {
	.validate = nv30_state_blend_colour_validate,
	.dirty = {
		.pipe = NV30_NEW_BCOL,
		.hw = NV30_STATE_BCOL
	}
};