Merge branch '7.8'
[mesa.git] / src / gallium / drivers / nvfx / nvfx_state_zsa.c
1 #include "nvfx_context.h"
2
3 static boolean
4 nvfx_state_zsa_validate(struct nvfx_context *nvfx)
5 {
6 so_ref(nvfx->zsa->so,
7 &nvfx->state.hw[NVFX_STATE_ZSA]);
8 return TRUE;
9 }
10
11 struct nvfx_state_entry nvfx_state_zsa = {
12 .validate = nvfx_state_zsa_validate,
13 .dirty = {
14 .pipe = NVFX_NEW_ZSA,
15 .hw = NVFX_STATE_ZSA
16 }
17 };
18
19 static boolean
20 nvfx_state_sr_validate(struct nvfx_context *nvfx)
21 {
22 struct nouveau_stateobj *so = so_new(2, 2, 0);
23 struct pipe_stencil_ref *sr = &nvfx->stencil_ref;
24
25 so_method(so, nvfx->screen->eng3d, NV34TCL_STENCIL_FRONT_FUNC_REF, 1);
26 so_data (so, sr->ref_value[0]);
27 so_method(so, nvfx->screen->eng3d, NV34TCL_STENCIL_BACK_FUNC_REF, 1);
28 so_data (so, sr->ref_value[1]);
29
30 so_ref(so, &nvfx->state.hw[NVFX_STATE_SR]);
31 so_ref(NULL, &so);
32 return TRUE;
33 }
34
35 struct nvfx_state_entry nvfx_state_sr = {
36 .validate = nvfx_state_sr_validate,
37 .dirty = {
38 .pipe = NVFX_NEW_SR,
39 .hw = NVFX_STATE_SR
40 }
41 };