Home
last modified time | relevance | path

Searched refs:driQueryOptionb (Results 1 – 18 of 18) sorted by relevance

/external/mesa3d/src/gallium/state_trackers/dri/
Ddri_screen.c66 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 …]
Ddri_context.c150 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()
Ddri2.c1952 *val = driQueryOptionb(&screen->dev->option_cache, var); in dri2GalliumConfigQueryb()
/external/mesa3d/src/mesa/drivers/dri/i965/
Dbrw_context.c786 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 …]
Dintel_extensions.c171 !driQueryOptionb(&brw->optionCache, "disable_blend_func_extended"); in intelInitExtensions()
Dintel_screen.c2090 bool allow_rgb10_configs = driQueryOptionb(&screen->optionCache, in intel_screen_make_configs()
/external/mesa3d/src/mesa/drivers/dri/i915/
Dintel_extensions.c96 if (driQueryOptionb(&intel->optionCache, "fragment_shader")) in intelInitExtensions()
99 if (driQueryOptionb(&intel->optionCache, "stub_occlusion_query")) in intelInitExtensions()
Dintel_context.c534 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()
Dintel_screen.c1139 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/
Ddrm.c272 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/
Dsi_pipe.c691 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/
Dradeon_context.c190 if (driQueryOptionb(&rmesa->radeon.optionCache, "hyperz")) in r100CreateContext()
334 if (driQueryOptionb(&rmesa->radeon.optionCache, "no_rast")) { in r100CreateContext()
Dradeon_tex.c289 min = driQueryOptionb (&rmesa->radeon.optionCache, "no_neg_lod_bias") ? in radeonTexEnv()
/external/mesa3d/src/util/
Dxmlconfig.h122 unsigned char driQueryOptionb (const driOptionCache *cache, const char *name);
Dxmlconfig.c1076 driQueryOptionb(const driOptionCache *cache, const char *name) in driQueryOptionb() function
/external/mesa3d/src/mesa/drivers/dri/r200/
Dr200_context.c223 if (driQueryOptionb( &rmesa->radeon.optionCache, "hyperz")) in r200CreateContext()
384 if (driQueryOptionb(&rmesa->radeon.optionCache, "no_rast")) { in r200CreateContext()
Dr200_tex.c333 min = driQueryOptionb (&rmesa->radeon.optionCache, "no_neg_lod_bias") ? in r200TexEnv()
/external/mesa3d/src/mesa/drivers/dri/common/
Ddri_util.c744 *val = driQueryOptionb(&screen->optionCache, var); in dri2ConfigQueryb()