Browse Source

Added two new options: def_max_anisotropy and no_neg_lod_bias. The latter one

is for disabling faked "anisotropy" in e.g. FlightGear.
tags/R300_DRIVER_0
Felix Kuehling 22 years ago
parent
commit
dbfe7ae848
1 changed files with 12 additions and 0 deletions
  1. 12
    0
      src/mesa/drivers/dri/common/xmlpool.h

+ 12
- 0
src/mesa/drivers/dri/common/xmlpool.h View File

DRI_CONF_DESC_END \ DRI_CONF_DESC_END \
DRI_CONF_OPT_END DRI_CONF_OPT_END


#define DRI_CONF_DEF_MAX_ANISOTROPY(def,range) \
DRI_CONF_OPT_BEGIN_V(def_max_anisotropy,float,def,range) \
DRI_CONF_DESC(en,"Default maximum value for anisotropic texture filtering") \
DRI_CONF_DESC(de,"Standard Maximalwert für anisotropische Texturfilterung") \
DRI_CONF_OPT_END

#define DRI_CONF_NO_NEG_LOD_BIAS(def) \
DRI_CONF_OPT_BEGIN(no_neg_lod_bias,bool,def) \
DRI_CONF_DESC(en,"Forbid negative texture LOD bias") \
DRI_CONF_DESC(de,"Verbiete negativen Textur-LOD-Bias") \
DRI_CONF_OPT_END

#define DRI_CONF_COLOR_REDUCTION_ROUND 0 #define DRI_CONF_COLOR_REDUCTION_ROUND 0
#define DRI_CONF_COLOR_REDUCTION_DITHER 1 #define DRI_CONF_COLOR_REDUCTION_DITHER 1
#define DRI_CONF_COLOR_REDUCTION(def) \ #define DRI_CONF_COLOR_REDUCTION(def) \

Loading…
Cancel
Save