Lines Matching refs:def

72 #define DRI_CONF_OPT_B(_name, def, _desc) {                     \  argument
78 .value = { ._bool = def }, \
81 #define DRI_CONF_OPT_I(_name, def, min, max, _desc) { \ argument
88 .value = { ._int = def }, \
91 #define DRI_CONF_OPT_F(_name, def, min, max, _desc) { \ argument
98 .value = { ._float = def }, \
101 #define DRI_CONF_OPT_E(_name, def, min, max, _desc, values) { \ argument
108 .value = { ._int = def }, \
112 #define DRI_CONF_OPT_S(_name, def, _desc) { \ argument
118 .value = { ._string = #def }, \
135 #define DRI_CONF_ALWAYS_FLUSH_BATCH(def) \ argument
136 DRI_CONF_OPT_B(always_flush_batch, def, \
139 #define DRI_CONF_ALWAYS_FLUSH_CACHE(def) \ argument
140 DRI_CONF_OPT_B(always_flush_cache, def, \
143 #define DRI_CONF_DISABLE_THROTTLING(def) \ argument
144 DRI_CONF_OPT_B(disable_throttling, def, \
147 #define DRI_CONF_FORCE_GLSL_EXTENSIONS_WARN(def) \ argument
148 DRI_CONF_OPT_B(force_glsl_extensions_warn, def, \
151 #define DRI_CONF_DISABLE_BLEND_FUNC_EXTENDED(def) \ argument
152 DRI_CONF_OPT_B(disable_blend_func_extended, def, \
155 #define DRI_CONF_DISABLE_ARB_GPU_SHADER5(def) \ argument
156 DRI_CONF_OPT_B(disable_arb_gpu_shader5, def, \
159 #define DRI_CONF_DUAL_COLOR_BLEND_BY_LOCATION(def) \ argument
160 DRI_CONF_OPT_B(dual_color_blend_by_location, def, \
163 #define DRI_CONF_DISABLE_GLSL_LINE_CONTINUATIONS(def) \ argument
164 DRI_CONF_OPT_B(disable_glsl_line_continuations, def, \
167 #define DRI_CONF_DISABLE_UNIFORM_ARRAY_RESIZE(def) \ argument
168 DRI_CONF_OPT_B(disable_uniform_array_resize, def, \
174 #define DRI_CONF_ALLOW_VERTEX_TEXTURE_BIAS(def) \ argument
175 DRI_CONF_OPT_B(allow_vertex_texture_bias, def, \
178 #define DRI_CONF_FORCE_GLSL_VERSION(def) \ argument
179 DRI_CONF_OPT_I(force_glsl_version, def, 0, 999, \
182 #define DRI_CONF_ALLOW_EXTRA_PP_TOKENS(def) \ argument
183 DRI_CONF_OPT_B(allow_extra_pp_tokens, def, \
186 #define DRI_CONF_ALLOW_GLSL_EXTENSION_DIRECTIVE_MIDSHADER(def) \ argument
187 DRI_CONF_OPT_B(allow_glsl_extension_directive_midshader, def, \
190 #define DRI_CONF_ALLOW_GLSL_120_SUBSET_IN_110(def) \ argument
191 DRI_CONF_OPT_B(allow_glsl_120_subset_in_110, def, \
194 #define DRI_CONF_ALLOW_GLSL_BUILTIN_CONST_EXPRESSION(def) \ argument
195 DRI_CONF_OPT_B(allow_glsl_builtin_const_expression, def, \
198 #define DRI_CONF_ALLOW_GLSL_RELAXED_ES(def) \ argument
199 DRI_CONF_OPT_B(allow_glsl_relaxed_es, def, \
202 #define DRI_CONF_ALLOW_GLSL_BUILTIN_VARIABLE_REDECLARATION(def) \ argument
203 DRI_CONF_OPT_B(allow_glsl_builtin_variable_redeclaration, def, \
206 #define DRI_CONF_ALLOW_HIGHER_COMPAT_VERSION(def) \ argument
207 DRI_CONF_OPT_B(allow_higher_compat_version, def, \
210 #define DRI_CONF_ALLOW_GLSL_COMPAT_SHADERS(def) \ argument
211 DRI_CONF_OPT_B(allow_glsl_compat_shaders, def, \
214 #define DRI_CONF_FORCE_GLSL_ABS_SQRT(def) \ argument
215 DRI_CONF_OPT_B(force_glsl_abs_sqrt, def, \
218 #define DRI_CONF_GLSL_CORRECT_DERIVATIVES_AFTER_DISCARD(def) \ argument
219 DRI_CONF_OPT_B(glsl_correct_derivatives_after_discard, def, \
222 #define DRI_CONF_GLSL_IGNORE_WRITE_TO_READONLY_VAR(def) \ argument
223 DRI_CONF_OPT_B(glsl_ignore_write_to_readonly_var, def, \
226 #define DRI_CONF_ALLOW_GLSL_CROSS_STAGE_INTERPOLATION_MISMATCH(def) \ argument
227 DRI_CONF_OPT_B(allow_glsl_cross_stage_interpolation_mismatch, def, \
230 #define DRI_CONF_DO_DCE_BEFORE_CLIP_CULL_ANALYSIS(def) \ argument
231 DRI_CONF_OPT_B(do_dce_before_clip_cull_analysis, def, \
234 #define DRI_CONF_ALLOW_DRAW_OUT_OF_ORDER(def) \ argument
235 DRI_CONF_OPT_B(allow_draw_out_of_order, def, \
238 #define DRI_CONF_GLTHREAD_NOP_CHECK_FRAMEBUFFER_STATUS(def) \ argument
239 DRI_CONF_OPT_B(glthread_nop_check_framebuffer_status, def, \
248 #define DRI_CONF_FORCE_COMPAT_PROFILE(def) \ argument
249 DRI_CONF_OPT_B(force_compat_profile, def, \
252 #define DRI_CONF_FORCE_COMPAT_SHADERS(def) \ argument
253 DRI_CONF_OPT_B(force_compat_shaders, def, \
256 #define DRI_CONF_FORCE_DIRECT_GLX_CONTEXT(def) \ argument
257 DRI_CONF_OPT_B(force_direct_glx_context, def, \
260 #define DRI_CONF_ALLOW_INVALID_GLX_DESTROY_WINDOW(def) \ argument
261 DRI_CONF_OPT_B(allow_invalid_glx_destroy_window, def, \
264 #define DRI_CONF_KEEP_NATIVE_WINDOW_GLX_DRAWABLE(def) \ argument
265 DRI_CONF_OPT_B(keep_native_window_glx_drawable, def, \
272 #define DRI_CONF_FORCE_GL_NAMES_REUSE(def) \ argument
273 DRI_CONF_OPT_B(force_gl_names_reuse, def, "Force GL names reuse")
275 #define DRI_CONF_FORCE_GL_MAP_BUFFER_SYNCHRONIZED(def) \ argument
276 DRI_CONF_OPT_B(force_gl_map_buffer_synchronized, def, "Override GL_MAP_UNSYNCHRONIZED_BIT.")
278 #define DRI_CONF_TRANSCODE_ETC(def) \ argument
279 DRI_CONF_OPT_B(transcode_etc, def, "Transcode ETC formats to DXTC if unsupported")
281 #define DRI_CONF_TRANSCODE_ASTC(def) \ argument
282 DRI_CONF_OPT_B(transcode_astc, def, "Transcode ASTC formats to DXTC if unsupported")
296 #define DRI_CONF_FORCE_PROTECTED_CONTENT_CHECK(def) \ argument
297 DRI_CONF_OPT_B(force_protected_content_check, def, \
300 #define DRI_CONF_IGNORE_MAP_UNSYNCHRONIZED(def) \ argument
301 DRI_CONF_OPT_B(ignore_map_unsynchronized, def, \
304 #define DRI_CONF_VK_DONT_CARE_AS_LOAD(def) \ argument
305 DRI_CONF_OPT_B(vk_dont_care_as_load, def, \
308 #define DRI_CONF_LIMIT_TRIG_INPUT_RANGE(def) \ argument
309 DRI_CONF_OPT_B(limit_trig_input_range, def, \
312 #define DRI_CONF_NO_16BIT(def) \ argument
313 DRI_CONF_OPT_B(no_16bit, def, \
316 #define DRI_CONF_IGNORE_DISCARD_FRAMEBUFFER(def) \ argument
317 DRI_CONF_OPT_B(ignore_discard_framebuffer, def, \
320 #define DRI_CONF_FORCE_VK_VENDOR(def) \ argument
323 #define DRI_CONF_FAKE_SPARSE(def) \ argument
324 DRI_CONF_OPT_B(fake_sparse, def, \
332 #define DRI_CONF_PRECISE_TRIG(def) \ argument
333 DRI_CONF_OPT_B(precise_trig, def, \
336 #define DRI_CONF_PP_CELSHADE(def) \ argument
337 DRI_CONF_OPT_E(pp_celshade, def, 0, 1, \
341 #define DRI_CONF_PP_NORED(def) \ argument
342 DRI_CONF_OPT_E(pp_nored, def, 0, 1, \
346 #define DRI_CONF_PP_NOGREEN(def) \ argument
347 DRI_CONF_OPT_E(pp_nogreen, def, 0, 1, \
351 #define DRI_CONF_PP_NOBLUE(def) \ argument
352 DRI_CONF_OPT_E(pp_noblue, def, 0, 1, \
356 #define DRI_CONF_PP_JIMENEZMLAA(def,min,max) \ argument
357 DRI_CONF_OPT_I(pp_jimenezmlaa, def, min, max, \
360 #define DRI_CONF_PP_JIMENEZMLAA_COLOR(def,min,max) \ argument
361 DRI_CONF_OPT_I(pp_jimenezmlaa_color, def, min, max, \
377 #define DRI_CONF_VBLANK_MODE(def) \ argument
378 DRI_CONF_OPT_E(vblank_mode, def, 0, 3, \
385 #define DRI_CONF_ADAPTIVE_SYNC(def) \ argument
386 DRI_CONF_OPT_B(adaptive_sync,def, \
389 #define DRI_CONF_BLOCK_ON_DEPLETED_BUFFERS(def) \ argument
390 DRI_CONF_OPT_B(block_on_depleted_buffers, def, \
393 #define DRI_CONF_VK_WSI_FORCE_BGRA8_UNORM_FIRST(def) \ argument
394 DRI_CONF_OPT_B(vk_wsi_force_bgra8_unorm_first, def, \
397 #define DRI_CONF_VK_WSI_FORCE_SWAPCHAIN_TO_CURRENT_EXTENT(def) \ argument
398 DRI_CONF_OPT_B(vk_wsi_force_swapchain_to_current_extent, def, \
401 #define DRI_CONF_VK_X11_OVERRIDE_MIN_IMAGE_COUNT(def) \ argument
402 DRI_CONF_OPT_I(vk_x11_override_min_image_count, def, 0, 999, \
405 #define DRI_CONF_VK_X11_STRICT_IMAGE_COUNT(def) \ argument
406 DRI_CONF_OPT_B(vk_x11_strict_image_count, def, \
409 #define DRI_CONF_VK_X11_ENSURE_MIN_IMAGE_COUNT(def) \ argument
410 DRI_CONF_OPT_B(vk_x11_ensure_min_image_count, def, \
413 #define DRI_CONF_VK_KHR_PRESENT_WAIT(def) \ argument
414 DRI_CONF_OPT_B(vk_khr_present_wait, def, \
417 #define DRI_CONF_VK_XWAYLAND_WAIT_READY(def) \ argument
418 DRI_CONF_OPT_B(vk_xwayland_wait_ready, def, \
421 #define DRI_CONF_MESA_GLTHREAD_DRIVER(def) \ argument
422 DRI_CONF_OPT_B(mesa_glthread_driver, def, \
425 #define DRI_CONF_MESA_NO_ERROR(def) \ argument
426 DRI_CONF_OPT_B(mesa_no_error, def, \
429 #define DRI_CONF_SHADER_SPILLING_RATE(def) \ argument
430 DRI_CONF_OPT_I(shader_spilling_rate, def, 0, 100, \
437 #define DRI_CONF_ALWAYS_HAVE_DEPTH_BUFFER(def) \ argument
438 DRI_CONF_OPT_B(always_have_depth_buffer, def, \
441 #define DRI_CONF_GLSL_ZERO_INIT(def) \ argument
442 DRI_CONF_OPT_B(glsl_zero_init, def, \
445 #define DRI_CONF_VS_POSITION_ALWAYS_INVARIANT(def) \ argument
446 DRI_CONF_OPT_B(vs_position_always_invariant, def, \
449 #define DRI_CONF_VS_POSITION_ALWAYS_PRECISE(def) \ argument
450 DRI_CONF_OPT_B(vs_position_always_precise, def, \
453 #define DRI_CONF_ALLOW_RGB10_CONFIGS(def) \ argument
454 DRI_CONF_OPT_B(allow_rgb10_configs, def, \
457 #define DRI_CONF_ALLOW_RGB565_CONFIGS(def) \ argument
458 DRI_CONF_OPT_B(allow_rgb565_configs, def, \
461 #define DRI_CONF_FORCE_INTEGER_TEX_NEAREST(def) \ argument
462 DRI_CONF_OPT_B(force_integer_tex_nearest, def, \
468 #define DRI_CONF_ALLOW_MULTISAMPLED_COPYTEXIMAGE(def) \ argument
469 DRI_CONF_OPT_B(allow_multisampled_copyteximage, def, \
472 #define DRI_CONF_NO_FP16(def) \ argument
473 DRI_CONF_OPT_B(no_fp16, def, \
493 #define DRI_CONF_NINE_THROTTLE(def) \ argument
494 DRI_CONF_OPT_I(throttle_value, def, 0, 0, \
497 #define DRI_CONF_NINE_THREADSUBMIT(def) \ argument
498 DRI_CONF_OPT_B(thread_submit, def, \
501 #define DRI_CONF_NINE_OVERRIDEVENDOR(def) \ argument
502 DRI_CONF_OPT_I(override_vendorid, def, 0, 0, \
505 #define DRI_CONF_NINE_ALLOWDISCARDDELAYEDRELEASE(def) \ argument
506 DRI_CONF_OPT_B(discard_delayed_release, def, \
509 #define DRI_CONF_NINE_TEARFREEDISCARD(def) \ argument
510 DRI_CONF_OPT_B(tearfree_discard, def, \
513 #define DRI_CONF_NINE_CSMT(def) \ argument
514 DRI_CONF_OPT_I(csmt_force, def, 0, 0, \
517 #define DRI_CONF_NINE_DYNAMICTEXTUREWORKAROUND(def) \ argument
518 DRI_CONF_OPT_B(dynamic_texture_workaround, def, \
521 #define DRI_CONF_NINE_SHADERINLINECONSTANTS(def) \ argument
522 DRI_CONF_OPT_B(shader_inline_constants, def, \
529 #define DRI_CONF_NINE_FORCESWRENDERINGONCPU(def) \ argument
530 DRI_CONF_OPT_B(force_sw_rendering_on_cpu, def, \
533 #define DRI_CONF_NINE_FORCEFEATURESEMULATION(def) \ argument
534 DRI_CONF_OPT_B(force_features_emulation, def, \
537 #define DRI_CONF_V3D_NONMSAA_TEXTURE_SIZE_LIMIT(def) \ argument
538 DRI_CONF_OPT_B(v3d_nonmsaa_texture_size_limit, def, \
545 #define DRI_CONF_GLES_EMULATE_BGRA(def) \ argument
546 DRI_CONF_OPT_B(gles_emulate_bgra, def, \
549 #define DRI_CONF_GLES_APPLY_BGRA_DEST_SWIZZLE(def) \ argument
550 DRI_CONF_OPT_B(gles_apply_bgra_dest_swizzle, def, \
553 #define DRI_CONF_GLES_SAMPLES_PASSED_VALUE(def, minimum, maximum) \ argument
554 DRI_CONF_OPT_I(gles_samples_passed_value, def, minimum, maximum, \
557 #define DRI_CONF_FORMAT_L8_SRGB_ENABLE_READBACK(def) \ argument
558 DRI_CONF_OPT_B(format_l8_srgb_enable_readback, def, \
561 #define DRI_CONF_VIRGL_SHADER_SYNC(def) \ argument
562 DRI_CONF_OPT_B(virgl_shader_sync, def, \
569 #define DRI_CONF_DISABLE_CONSERVATIVE_LRZ(def) \ argument
570 DRI_CONF_OPT_B(disable_conservative_lrz, def, \
576 #define DRI_CONF_VENUS_IMPLICIT_FENCING(def) \ argument
577 DRI_CONF_OPT_B(venus_implicit_fencing, def, \
584 #define DRI_CONF_RADV_REPORT_LLVM9_VERSION_STRING(def) \ argument
585 DRI_CONF_OPT_B(radv_report_llvm9_version_string, def, \
588 #define DRI_CONF_RADV_ENABLE_MRT_OUTPUT_NAN_FIXUP(def) \ argument
589 DRI_CONF_OPT_B(radv_enable_mrt_output_nan_fixup, def, \
592 #define DRI_CONF_RADV_NO_DYNAMIC_BOUNDS(def) \ argument
593 DRI_CONF_OPT_B(radv_no_dynamic_bounds, def, \
596 #define DRI_CONF_RADV_DISABLE_SHRINK_IMAGE_STORE(def) \ argument
597 DRI_CONF_OPT_B(radv_disable_shrink_image_store, def, \
600 #define DRI_CONF_RADV_ABSOLUTE_DEPTH_BIAS(def) \ argument
601 DRI_CONF_OPT_B(radv_absolute_depth_bias, def, \
604 #define DRI_CONF_RADV_OVERRIDE_UNIFORM_OFFSET_ALIGNMENT(def) \ argument
605 DRI_CONF_OPT_I(radv_override_uniform_offset_alignment, def, 0, 128, \
608 #define DRI_CONF_RADV_ZERO_VRAM(def) \ argument
609 DRI_CONF_OPT_B(radv_zero_vram, def, \
612 #define DRI_CONF_RADV_LOWER_DISCARD_TO_DEMOTE(def) \ argument
613 DRI_CONF_OPT_B(radv_lower_discard_to_demote, def, \
616 #define DRI_CONF_RADV_INVARIANT_GEOM(def) \ argument
617 DRI_CONF_OPT_B(radv_invariant_geom, def, \
620 #define DRI_CONF_RADV_SPLIT_FMA(def) \ argument
621 DRI_CONF_OPT_B(radv_split_fma, def, \
624 #define DRI_CONF_RADV_DISABLE_TC_COMPAT_HTILE_GENERAL(def) \ argument
625 DRI_CONF_OPT_B(radv_disable_tc_compat_htile_general, def, \
628 #define DRI_CONF_RADV_DISABLE_DCC(def) \ argument
629 DRI_CONF_OPT_B(radv_disable_dcc, def, \
632 #define DRI_CONF_RADV_REQUIRE_ETC2(def) \ argument
633 DRI_CONF_OPT_B(radv_require_etc2, def, \
636 #define DRI_CONF_RADV_DISABLE_ANISO_SINGLE_LEVEL(def) \ argument
637 DRI_CONF_OPT_B(radv_disable_aniso_single_level, def, \
640 #define DRI_CONF_RADV_DISABLE_SINKING_LOAD_INPUT_FS(def) \ argument
641 DRI_CONF_OPT_B(radv_disable_sinking_load_input_fs, def, \
644 #define DRI_CONF_RADV_DGC(def) \ argument
645 DRI_CONF_OPT_B(radv_dgc, def, \
648 #define DRI_CONF_RADV_FLUSH_BEFORE_QUERY_COPY(def) \ argument
650 radv_flush_before_query_copy, def, \
653 #define DRI_CONF_RADV_ENABLE_UNIFIED_HEAP_ON_APU(def) \ argument
654 DRI_CONF_OPT_B(radv_enable_unified_heap_on_apu, def, \
657 #define DRI_CONF_RADV_TEX_NON_UNIFORM(def) \ argument
658 DRI_CONF_OPT_B(radv_tex_non_uniform, def, \
661 #define DRI_CONF_RADV_FLUSH_BEFORE_TIMESTAMP_WRITE(def) \ argument
662 DRI_CONF_OPT_B(radv_flush_before_timestamp_write, def, \
665 #define DRI_CONF_RADV_RT_WAVE64(def) \ argument
666 DRI_CONF_OPT_B(radv_rt_wave64, def, \
675 #define DRI_CONF_ANV_ASSUME_FULL_SUBGROUPS(def) \ argument
676 DRI_CONF_OPT_B(anv_assume_full_subgroups, def, \
679 #define DRI_CONF_ANV_SAMPLE_MASK_OUT_OPENGL_BEHAVIOUR(def) \ argument
680 DRI_CONF_OPT_B(anv_sample_mask_out_opengl_behaviour, def, \
683 #define DRI_CONF_ANV_MESH_CONV_PRIM_ATTRS_TO_VERT_ATTRS(def) \ argument
684 DRI_CONF_OPT_E(anv_mesh_conv_prim_attrs_to_vert_attrs, def, -2, 2, \
692 #define DRI_CONF_ANV_FP64_WORKAROUND_ENABLED(def) \ argument
693 DRI_CONF_OPT_B(fp64_workaround_enabled, def, \
696 #define DRI_CONF_ANV_GENERATED_INDIRECT_THRESHOLD(def) \ argument
697 DRI_CONF_OPT_I(generated_indirect_threshold, def, 0, INT32_MAX, \
700 #define DRI_CONF_ANV_QUERY_CLEAR_WITH_BLORP_THRESHOLD(def) \ argument
701 DRI_CONF_OPT_I(query_clear_with_blorp_threshold, def, 0, INT32_MAX, \
704 #define DRI_CONF_ANV_QUERY_COPY_WITH_SHADER_THRESHOLD(def) \ argument
705 DRI_CONF_OPT_I(query_copy_with_shader_threshold, def, 0, INT32_MAX, \
708 #define DRI_CONF_ANV_FORCE_INDIRECT_DESCRIPTORS(def) \ argument
709 DRI_CONF_OPT_B(force_indirect_descriptors, def, \
716 #define DRI_CONF_DZN_CLAIM_WIDE_LINES(def) \ argument
717 DRI_CONF_OPT_B(dzn_claim_wide_lines, def, "Claim wide line support")
719 #define DRI_CONF_DZN_ENABLE_8BIT_LOADS_STORES(def) \ argument
720 DRI_CONF_OPT_B(dzn_enable_8bit_loads_stores, def, "Enable VK_KHR_8bit_loads_stores")