blob: c52390f9edbb6e5485e3def9825567ba76a795ea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#include "nv40_context.h"
static boolean
nv40_state_clip_validate(struct nv40_context *nv40)
{
if (nv40->render_mode == HW) {
nv40->fallback_swtnl &= ~NV40_NEW_UCP;
if (nv40->clip.nr)
nv40->fallback_swtnl |= NV40_NEW_UCP;
}
return FALSE;
}
struct nv40_state_entry nv40_state_clip = {
.validate = nv40_state_clip_validate,
.dirty = {
.pipe = NV40_NEW_UCP,
.hw = 0
}
};
|