/external/mesa3d/src/gallium/state_trackers/dri/ |
D | dri_screen.c | 66 driQueryOptionb(optionCache, "disable_blend_func_extended"); in dri_fill_st_options() 68 driQueryOptionb(optionCache, "disable_glsl_line_continuations"); in dri_fill_st_options() 70 driQueryOptionb(optionCache, "disable_shader_bit_encoding"); in dri_fill_st_options() 72 driQueryOptionb(optionCache, "force_glsl_extensions_warn"); in dri_fill_st_options() 76 driQueryOptionb(optionCache, "allow_glsl_extension_directive_midshader"); in dri_fill_st_options() 78 driQueryOptionb(optionCache, "allow_glsl_builtin_variable_redeclaration"); in dri_fill_st_options() 80 driQueryOptionb(optionCache, "allow_higher_compat_version"); in dri_fill_st_options() 81 options->glsl_zero_init = driQueryOptionb(optionCache, "glsl_zero_init"); in dri_fill_st_options() 83 driQueryOptionb(optionCache, "force_glsl_abs_sqrt"); in dri_fill_st_options() 85 driQueryOptionb(optionCache, "allow_glsl_cross_stage_interpolation_mismatch"); in dri_fill_st_options() [all …]
|
D | dri_context.c | 150 if (driQueryOptionb(&screen->dev->option_cache, "mesa_no_error")) in dri_create_context() 194 driQueryOptionb(&screen->dev->option_cache, "mesa_glthread")) { in dri_create_context()
|
D | dri2.c | 1952 *val = driQueryOptionb(&screen->dev->option_cache, var); in dri2GalliumConfigQueryb()
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
D | brw_context.c | 786 if (driQueryOptionb(options, "mesa_no_error")) in brw_process_driconf_options() 789 if (driQueryOptionb(options, "always_flush_batch")) { in brw_process_driconf_options() 794 if (driQueryOptionb(options, "always_flush_cache")) { in brw_process_driconf_options() 799 if (driQueryOptionb(options, "disable_throttling")) { in brw_process_driconf_options() 804 brw->precompile = driQueryOptionb(&brw->optionCache, "shader_precompile"); in brw_process_driconf_options() 806 if (driQueryOptionb(&brw->optionCache, "precise_trig")) in brw_process_driconf_options() 810 driQueryOptionb(options, "force_glsl_extensions_warn"); in brw_process_driconf_options() 816 driQueryOptionb(options, "disable_glsl_line_continuations"); in brw_process_driconf_options() 819 driQueryOptionb(options, "allow_glsl_extension_directive_midshader"); in brw_process_driconf_options() 822 driQueryOptionb(options, "allow_glsl_builtin_variable_redeclaration"); in brw_process_driconf_options() [all …]
|
D | intel_extensions.c | 171 !driQueryOptionb(&brw->optionCache, "disable_blend_func_extended"); in intelInitExtensions()
|
D | intel_screen.c | 2090 bool allow_rgb10_configs = driQueryOptionb(&screen->optionCache, in intel_screen_make_configs()
|
/external/mesa3d/src/mesa/drivers/dri/i915/ |
D | intel_extensions.c | 96 if (driQueryOptionb(&intel->optionCache, "fragment_shader")) in intelInitExtensions() 99 if (driQueryOptionb(&intel->optionCache, "stub_occlusion_query")) in intelInitExtensions()
|
D | intel_context.c | 534 intel->use_early_z = driQueryOptionb(&intel->optionCache, "early_z"); in intelInitContext() 539 if (driQueryOptionb(&intel->optionCache, "no_rast")) { in intelInitContext() 544 if (driQueryOptionb(&intel->optionCache, "always_flush_batch")) { in intelInitContext() 549 if (driQueryOptionb(&intel->optionCache, "always_flush_cache")) { in intelInitContext() 554 if (driQueryOptionb(&intel->optionCache, "disable_throttling")) { in intelInitContext()
|
D | intel_screen.c | 1139 bool has_fragment_shader = driQueryOptionb(&screen->optionCache, "fragment_shader"); in set_max_gl_versions() 1140 bool has_occlusion_query = driQueryOptionb(&screen->optionCache, "stub_occlusion_query"); in set_max_gl_versions()
|
/external/mesa3d/src/gallium/targets/d3dadapter9/ |
D | drm.c | 272 ctx->base.thread_submit = driQueryOptionb(&userInitOptions, "thread_submit"); in drm_create_adapter() 291 … ctx->base.discard_delayed_release = driQueryOptionb(&userInitOptions, "discard_delayed_release"); in drm_create_adapter() 296 ctx->base.tearfree_discard = driQueryOptionb(&userInitOptions, "tearfree_discard"); in drm_create_adapter()
|
/external/mesa3d/src/gallium/drivers/radeonsi/ |
D | si_pipe.c | 691 if (driQueryOptionb(config->options, in radeonsi_screen_create() 694 if (driQueryOptionb(config->options, "radeonsi_enable_sisched")) in radeonsi_screen_create() 784 driQueryOptionb(config->options, "radeonsi_assume_no_z_fights"); in radeonsi_screen_create() 786 driQueryOptionb(config->options, "radeonsi_commutative_blend_add"); in radeonsi_screen_create() 788 driQueryOptionb(config->options, "radeonsi_clear_db_cache_before_clear"); in radeonsi_screen_create()
|
/external/mesa3d/src/mesa/drivers/dri/radeon/ |
D | radeon_context.c | 190 if (driQueryOptionb(&rmesa->radeon.optionCache, "hyperz")) in r100CreateContext() 334 if (driQueryOptionb(&rmesa->radeon.optionCache, "no_rast")) { in r100CreateContext()
|
D | radeon_tex.c | 289 min = driQueryOptionb (&rmesa->radeon.optionCache, "no_neg_lod_bias") ? in radeonTexEnv()
|
/external/mesa3d/src/util/ |
D | xmlconfig.h | 122 unsigned char driQueryOptionb (const driOptionCache *cache, const char *name);
|
D | xmlconfig.c | 1076 driQueryOptionb(const driOptionCache *cache, const char *name) in driQueryOptionb() function
|
/external/mesa3d/src/mesa/drivers/dri/r200/ |
D | r200_context.c | 223 if (driQueryOptionb( &rmesa->radeon.optionCache, "hyperz")) in r200CreateContext() 384 if (driQueryOptionb(&rmesa->radeon.optionCache, "no_rast")) { in r200CreateContext()
|
D | r200_tex.c | 333 min = driQueryOptionb (&rmesa->radeon.optionCache, "no_neg_lod_bias") ? in r200TexEnv()
|
/external/mesa3d/src/mesa/drivers/dri/common/ |
D | dri_util.c | 744 *val = driQueryOptionb(&screen->optionCache, var); in dri2ConfigQueryb()
|