diff options
author | Marek Olšák <[email protected]> | 2012-12-02 05:41:48 +0100 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2012-12-02 07:07:33 +0100 |
commit | 0222b2bd4107b9e5cabfbc06c1a6ca3eaec3cf0d (patch) | |
tree | 186419bce4bb01da5e1b8c0557b9bd6b2a32d29a /src/gallium/drivers/r300/r300_context.c | |
parent | 62cba629c09aaf236b2750785b899934b531b17a (diff) |
r300g: clear the ZB cache before clearing ZMASK or HIZ
This fixes wrong rendering in Lightsmark and
the piglit/depthstencil-render-miplevels.
I think I fixed Hyper-Z. So far every app seems to work like a charm.
Diffstat (limited to 'src/gallium/drivers/r300/r300_context.c')
-rw-r--r-- | src/gallium/drivers/r300/r300_context.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/r300/r300_context.c b/src/gallium/drivers/r300/r300_context.c index 76c2e232009..048f810b6b4 100644 --- a/src/gallium/drivers/r300/r300_context.c +++ b/src/gallium/drivers/r300/r300_context.c @@ -199,9 +199,9 @@ static boolean r300_setup_atoms(struct r300_context* r300) R300_INIT_ATOM(texture_cache_inval, 2); R300_INIT_ATOM(textures_state, 0); /* HiZ Clear */ - R300_INIT_ATOM(hiz_clear, r300->screen->caps.hiz_ram > 0 ? 4 : 0); + R300_INIT_ATOM(hiz_clear, r300->screen->caps.hiz_ram > 0 ? 6 : 0); /* zmask clear */ - R300_INIT_ATOM(zmask_clear, r300->screen->caps.zmask_ram > 0 ? 4 : 0); + R300_INIT_ATOM(zmask_clear, r300->screen->caps.zmask_ram > 0 ? 6 : 0); /* ZB (unpipelined), SU. */ R300_INIT_ATOM(query_start, 4); |