texenvprogram: fix for ARB_draw_buffers.
[mesa.git] / src / gallium / drivers / nv30 / nv30_state_stipple.c
1 #include "nv30_context.h"
2
3 static boolean
4 nv30_state_stipple_validate(struct nv30_context *nv30)
5 {
6 struct pipe_rasterizer_state *rast = &nv30->rasterizer->pipe;
7 struct nouveau_grobj *rankine = nv30->screen->rankine;
8 struct nouveau_stateobj *so;
9
10 if (nv30->state.hw[NV30_STATE_STIPPLE] &&
11 (rast->poly_stipple_enable == 0 && nv30->state.stipple_enabled == 0))
12 return FALSE;
13
14 if (rast->poly_stipple_enable) {
15 unsigned i;
16
17 so = so_new(2, 33, 0);
18 so_method(so, rankine, NV34TCL_POLYGON_STIPPLE_ENABLE, 1);
19 so_data (so, 1);
20 so_method(so, rankine, NV34TCL_POLYGON_STIPPLE_PATTERN(0), 32);
21 for (i = 0; i < 32; i++)
22 so_data(so, nv30->stipple[i]);
23 } else {
24 so = so_new(1, 1, 0);
25 so_method(so, rankine, NV34TCL_POLYGON_STIPPLE_ENABLE, 1);
26 so_data (so, 0);
27 }
28
29 so_ref(so, &nv30->state.hw[NV30_STATE_STIPPLE]);
30 so_ref(NULL, &so);
31 return TRUE;
32 }
33
34 struct nv30_state_entry nv30_state_stipple = {
35 .validate = nv30_state_stipple_validate,
36 .dirty = {
37 .pipe = NV30_NEW_STIPPLE | NV30_NEW_RAST,
38 .hw = NV30_STATE_STIPPLE,
39 }
40 };