blob: a1b0100472d8dce681c2b3a4f438d87a605d0229 (
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
|
#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_new = {
.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]);
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
}
};
|