diff options
author | Marcin KoĆcielnicki <[email protected]> | 2009-12-28 16:23:40 +0000 |
---|---|---|
committer | Francisco Jerez <[email protected]> | 2009-12-28 18:09:26 +0100 |
commit | c84cc09d41a83caa96eca84c73284024d8d63024 (patch) | |
tree | 3b8050fea372f0568e2bb16ab250a17a2301714a /src/gallium/drivers/nv50/nv50_query.c | |
parent | b46bcd8e7b37aa2e9159e126c1cc88234a3c2790 (diff) |
nv50: Dehexify and bring up to date with new method defines.
Signed-off-by: Francisco Jerez <[email protected]>
Diffstat (limited to 'src/gallium/drivers/nv50/nv50_query.c')
-rw-r--r-- | src/gallium/drivers/nv50/nv50_query.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/nv50/nv50_query.c b/src/gallium/drivers/nv50/nv50_query.c index 268c9823f7d..5d9e18218ae 100644 --- a/src/gallium/drivers/nv50/nv50_query.c +++ b/src/gallium/drivers/nv50/nv50_query.c @@ -77,9 +77,9 @@ nv50_query_begin(struct pipe_context *pipe, struct pipe_query *pq) struct nouveau_grobj *tesla = nv50->screen->tesla; struct nv50_query *q = nv50_query(pq); - BEGIN_RING(chan, tesla, 0x1530, 1); + BEGIN_RING(chan, tesla, NV50TCL_SAMPLECNT_RESET, 1); OUT_RING (chan, 1); - BEGIN_RING(chan, tesla, 0x1514, 1); + BEGIN_RING(chan, tesla, NV50TCL_SAMPLECNT_ENABLE, 1); OUT_RING (chan, 1); q->ready = FALSE; |