dri_util: remove ALLOW_RGB10_CONFIGS option (v2)

This is unused because it's for libGL/libEGL, not drivers.

v2: i965 was wrong, because it used dri_util instead of its own config.

Reviewed-by: Tapani Pälli <tapani.palli@intel.com>
This commit is contained in:
Marek Olšák 2018-01-08 17:58:27 +01:00
parent c259888c52
commit b391fb26df
2 changed files with 2 additions and 5 deletions

View File

@ -55,10 +55,6 @@ const char __dri2ConfigOptions[] =
DRI_CONF_SECTION_PERFORMANCE
DRI_CONF_VBLANK_MODE(DRI_CONF_VBLANK_DEF_INTERVAL_1)
DRI_CONF_SECTION_END
DRI_CONF_SECTION_MISCELLANEOUS
DRI_CONF_ALLOW_RGB10_CONFIGS("true")
DRI_CONF_SECTION_END
DRI_CONF_END;
/*****************************************************************/

View File

@ -92,6 +92,7 @@ DRI_CONF_BEGIN
DRI_CONF_SECTION_MISCELLANEOUS
DRI_CONF_GLSL_ZERO_INIT("false")
DRI_CONF_ALLOW_RGB10_CONFIGS("false")
DRI_CONF_SECTION_END
DRI_CONF_END
};
@ -2064,7 +2065,7 @@ intel_screen_make_configs(__DRIscreen *dri_screen)
num_formats = ARRAY_SIZE(formats) - 2; /* all - RGBA_ORDERING formats */
/* Shall we expose 10 bpc formats? */
bool allow_rgb10_configs = driQueryOptionb(&dri_screen->optionCache,
bool allow_rgb10_configs = driQueryOptionb(&screen->optionCache,
"allow_rgb10_configs");
/* Generate singlesample configs without accumulation buffer. */