diff options
-rw-r--r-- | src/mesa/drivers/dri/i965/intel_screen.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/intel_screen.c b/src/mesa/drivers/dri/i965/intel_screen.c index 190d8ecb115..9dbda5142e5 100644 --- a/src/mesa/drivers/dri/i965/intel_screen.c +++ b/src/mesa/drivers/dri/i965/intel_screen.c @@ -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; |