diff options
author | Timothy Arceri <[email protected]> | 2018-08-15 16:56:49 +1000 |
---|---|---|
committer | Timothy Arceri <[email protected]> | 2018-08-21 09:19:02 +1000 |
commit | 797cd198ae88c9a80233ba710c47117384081428 (patch) | |
tree | 020f1bcd78f177edb12268fd58394836a05aad6c /src/mesa/drivers | |
parent | 02062ab1e152c9eff46ca9485237120656cc4d52 (diff) |
mesa: move legacy hyperz option from dri config
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/mesa/drivers')
-rw-r--r-- | src/mesa/drivers/dri/radeon/radeon_screen.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/radeon/radeon_screen.c b/src/mesa/drivers/dri/radeon/radeon_screen.c index 5637361a916..4c93404607d 100644 --- a/src/mesa/drivers/dri/radeon/radeon_screen.c +++ b/src/mesa/drivers/dri/radeon/radeon_screen.c @@ -75,6 +75,11 @@ DRI_CONF_OPT_BEGIN_V(texture_units,int,def, # min ":" # max ) \ DRI_CONF_DESC(en,"Number of texture units used") \ DRI_CONF_OPT_END +#define DRI_CONF_HYPERZ(def) \ +DRI_CONF_OPT_BEGIN_B(hyperz, def) \ + DRI_CONF_DESC(en,"Use HyperZ to boost performance") \ +DRI_CONF_OPT_END + #if defined(RADEON_R100) /* R100 */ static const __DRIconfigOptionsExtension radeon_config_options = { .base = { __DRI_CONFIG_OPTIONS, 1 }, |