mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-22 07:00:12 +01:00
i965/screen: Allow drirc to set 'allow_rgb10_configs' again.
Since setup of ALLOW_RGB10_CONFIGS was moved to i965's own
brw_config_options.xml, this was hard-coded to false and
could not be overriden by drirc. Add some parsing into
i965's private screen->optionCache to enable drirc again.
Fixes: b391fb26df ("dri_util: remove ALLOW_RGB10_CONFIGS option (v2)")
Signed-off-by: Mario Kleiner <mario.kleiner.de@gmail.com>
Cc: Marek Olšák <marek.olsak@amd.com>
Cc: Tapani Pälli <tapani.palli@intel.com>
Reviewed-by: Marek Olšák <marek.olsak@amd.com>
Reviewed-by: Tapani Pälli <tapani.palli@intel.com>
This commit is contained in:
parent
eac629deb6
commit
d67ef48580
1 changed files with 6 additions and 1 deletions
|
|
@ -2395,7 +2395,12 @@ __DRIconfig **intelInitScreen2(__DRIscreen *dri_screen)
|
|||
return NULL;
|
||||
}
|
||||
/* parse information in __driConfigOptions */
|
||||
driParseOptionInfo(&screen->optionCache, brw_config_options.xml);
|
||||
driOptionCache options;
|
||||
memset(&options, 0, sizeof(options));
|
||||
|
||||
driParseOptionInfo(&options, brw_config_options.xml);
|
||||
driParseConfigFiles(&screen->optionCache, &options, dri_screen->myNum, "i965");
|
||||
driDestroyOptionCache(&options);
|
||||
|
||||
screen->driScrnPriv = dri_screen;
|
||||
dri_screen->driverPrivate = (void *) screen;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue