diff options
author | Timothy Arceri <[email protected]> | 2018-08-15 17:19:36 +1000 |
---|---|---|
committer | Timothy Arceri <[email protected]> | 2018-08-20 13:53:59 +1000 |
commit | fb277f504ee562e76a8a38ca7a591d3749db3867 (patch) | |
tree | 83d6286b03bacd1511a3ef431460997aed786713 /src/mesa/drivers/dri/radeon | |
parent | c470db706a19b37d4944c07b107345e5d1473a4f (diff) |
mesa: move legacy dri config option texture_blend_quality
Reviewed-by: Ian Romanick <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/radeon')
-rw-r--r-- | src/mesa/drivers/dri/radeon/radeon_screen.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/radeon/radeon_screen.c b/src/mesa/drivers/dri/radeon/radeon_screen.c index 438844aac0c..468cbd53595 100644 --- a/src/mesa/drivers/dri/radeon/radeon_screen.c +++ b/src/mesa/drivers/dri/radeon/radeon_screen.c @@ -97,6 +97,12 @@ DRI_CONF_END }; #elif defined(RADEON_R200) + +#define DRI_CONF_TEXTURE_BLEND_QUALITY(def,range) \ +DRI_CONF_OPT_BEGIN_V(texture_blend_quality,float,def,range) \ + DRI_CONF_DESC(en,"Texture filtering quality vs. speed, AKA “brilinear” texture filtering") \ +DRI_CONF_OPT_END + static const __DRIconfigOptionsExtension radeon_config_options = { .base = { __DRI_CONFIG_OPTIONS, 1 }, .xml = |