Home
last modified time | relevance | path

Searched refs:option_cache (Results 1 – 8 of 8) sorted by relevance

/third_party/mesa3d/src/gallium/auxiliary/pipe-loader/
Dpipe_loader.c81 driDestroyOptionCache(&(*dev)->option_cache); in pipe_loader_base_release()
133 if (!dev->option_cache.info) { in pipe_loader_config_options()
134 driParseConfigFiles(&dev->option_cache, &dev->option_info, 0, in pipe_loader_config_options()
169 config.options = &dev->option_cache; in pipe_loader_create_screen_vk()
Dpipe_loader.h70 driOptionCache option_cache; member
/third_party/mesa3d/src/gallium/frontends/wgl/
Dstw_device.c114 driParseConfigFiles(&stw_dev->option_cache, &stw_dev->option_info, 0, in init_options()
117 u_driconf_fill_st_options(&stw_dev->st_options, &stw_dev->option_cache); in init_options()
238 driDestroyOptionCache(&stw_dev->option_cache); in stw_cleanup()
Dstw_device.h89 driOptionCache option_cache; member
/third_party/mesa3d/src/gallium/frontends/dri/
Ddri_context.c66 const struct driOptionCache *optionCache = &screen->dev->option_cache; in dri_create_context()
161 driQueryOptionb(&screen->dev->option_cache, "mesa_no_error")) in dri_create_context()
209 driQueryOptionb(&screen->dev->option_cache, "mesa_glthread")) { in dri_create_context()
Ddri_screen.c64 const struct driOptionCache *optionCache = &screen->dev->option_cache; in dri_init_options()
456 if (driQueryOptionb(&screen->dev->option_cache, "always_have_depth_buffer")) { in dri_fill_in_modes()
467 allow_rgb10 = driQueryOptionb(&screen->dev->option_cache, "allow_rgb10_configs"); in dri_fill_in_modes()
814 screen->pp_enabled[i] = driQueryOptioni(&screen->dev->option_cache, in dri_postprocessing_init()
Ddri2.c959 const struct driOptionCache *optionCache = &screen->dev->option_cache; in dri2_create_image_from_winsys()
2254 if (!driCheckOption(&screen->dev->option_cache, var, DRI_BOOL)) in dri2GalliumConfigQueryb()
2257 *val = driQueryOptionb(&screen->dev->option_cache, var); in dri2GalliumConfigQueryb()
2270 if (!driCheckOption(&screen->dev->option_cache, var, DRI_INT) && in dri2GalliumConfigQueryi()
2271 !driCheckOption(&screen->dev->option_cache, var, DRI_ENUM)) in dri2GalliumConfigQueryi()
2274 *val = driQueryOptioni(&screen->dev->option_cache, var); in dri2GalliumConfigQueryi()
2287 if (!driCheckOption(&screen->dev->option_cache, var, DRI_FLOAT)) in dri2GalliumConfigQueryf()
2290 *val = driQueryOptionf(&screen->dev->option_cache, var); in dri2GalliumConfigQueryf()
2303 if (!driCheckOption(&screen->dev->option_cache, var, DRI_STRING)) in dri2GalliumConfigQuerys()
2306 *val = driQueryOptionstr(&screen->dev->option_cache, var); in dri2GalliumConfigQuerys()
Ddri_query_renderer.c106 int ov = driQueryOptioni(&screen->dev->option_cache, "override_vram_size"); in dri2_query_renderer_integer()