diff options
author | Marek Olšák <[email protected]> | 2010-06-24 03:02:50 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2010-06-24 06:10:47 +0200 |
commit | 6b15a8d2afa1cdf8577d48b1f1644358f1e47b47 (patch) | |
tree | c89f23375f67c2f1cd265a86630b75999861d092 /src/gallium/drivers/r300/r300_chipset.h | |
parent | 7315300fa5a5e63c16b9e258feb4df76176b5b4b (diff) |
r300g: add "has HiZ" flag, add ZMask regs
Diffstat (limited to 'src/gallium/drivers/r300/r300_chipset.h')
-rw-r--r-- | src/gallium/drivers/r300/r300_chipset.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/drivers/r300/r300_chipset.h b/src/gallium/drivers/r300/r300_chipset.h index ab649c38573..65750f54e71 100644 --- a/src/gallium/drivers/r300/r300_chipset.h +++ b/src/gallium/drivers/r300/r300_chipset.h @@ -42,6 +42,8 @@ struct r300_capabilities { unsigned num_tex_units; /* Whether or not TCL is physically present */ boolean has_tcl; + /* Some chipsets do not have HiZ RAM. */ + boolean has_hiz; /* Whether or not this is RV350 or newer, including all r400 and r500 * chipsets. The differences compared to the oldest r300 chips are: * - Blend LTE/GTE thresholds |