/third_party/mesa3d/src/gallium/drivers/radeonsi/ |
H A D | si_debug_options.h | 0 OPT_BOOL(inline_uniforms, true, "Optimize shaders by replacing uniforms with literals") 2 OPT_BOOL(aux_debug, false, "Generate ddebug_dumps for the auxiliary context") 3 OPT_BOOL(sync_compile, false, "Always compile synchronously (will cause stalls)") 4 OPT_BOOL(dump_shader_binary, false, "Dump shader binary as part of ddebug_dumps") 5 OPT_BOOL(debug_disassembly, false, 7 OPT_BOOL(halt_shaders, false, "Halt shaders at the start (will hang)") 8 OPT_BOOL(vs_fetch_always_opencode, false, 10 OPT_BOOL(prim_restart_tri_strips_only, false, "Only enable primitive restart for triangle strips") 11 OPT_BOOL(no_infinite_interp, false, "Kill PS with infinite interp coeff") 12 OPT_BOOL(clamp_div_by_zer 25 #undef OPT_BOOL global() macro [all...] |
H A D | driinfo_radeonsi.h | 8 #define OPT_BOOL(name, dflt, description) DRI_CONF_OPT_B(radeonsi_##name, dflt, description) macro
|
H A D | si_pipe.h | 586 #define OPT_BOOL(name, dflt, description) bool name : 1; macro
|
H A D | si_pipe.c | 1107 #define OPT_BOOL(name, dflt, description) \ in radeonsi_screen_create_impl() macro
|
/third_party/ffmpeg/fftools/ |
H A D | ffmpeg_opt.c | 3653 { "y", OPT_BOOL, { &file_overwrite }, 3655 { "n", OPT_BOOL, { &no_file_overwrite }, 3657 { "ignore_unknown", OPT_BOOL, { &ignore_unknown_streams }, 3659 { "copy_unknown", OPT_BOOL | OPT_EXPERT, { ©_unknown_streams }, 3661 { "recast_media", OPT_BOOL | OPT_EXPERT, { &recast_media }, 3702 { "accurate_seek", OPT_BOOL | OPT_OFFSET | OPT_EXPERT | 3723 { "benchmark", OPT_BOOL | OPT_EXPERT, { &do_benchmark }, 3725 { "benchmark_all", OPT_BOOL | OPT_EXPERT, { &do_benchmark_all }, 3729 { "stdin", OPT_BOOL | OPT_EXPERT, { &stdin_interaction }, 3733 { "dump", OPT_BOOL | OPT_EXPER [all...] |
H A D | cmdutils.c | 281 } else if (po->flags & OPT_BOOL || po->flags & OPT_INT) { in write_option() 322 if ((po->name && (po->flags & OPT_BOOL))) in parse_option() 324 } else if (po->flags & OPT_BOOL) in parse_option() 773 po->name && po->flags & OPT_BOOL) { in split_commandline()
|
H A D | opt_common.h | 228 { "hide_banner", OPT_BOOL | OPT_EXPERT, {&hide_banner}, "do not show program banner", "hide_banner" }, \
|
H A D | ffplay.c | 3566 { "fs", OPT_BOOL, { &is_full_screen }, "force full screen" }, 3567 { "an", OPT_BOOL, { &audio_disable }, "disable audio" }, 3568 { "vn", OPT_BOOL, { &video_disable }, "disable video" }, 3569 { "sn", OPT_BOOL, { &subtitle_disable }, "disable subtitling" }, 3577 { "nodisp", OPT_BOOL, { &display_disable }, "disable graphical display" }, 3578 { "noborder", OPT_BOOL, { &borderless }, "borderless window" }, 3579 { "alwaysontop", OPT_BOOL, { &alwaysontop }, "window always on top" }, 3582 { "stats", OPT_BOOL | OPT_EXPERT, { &show_status }, "show status", "" }, 3583 { "fast", OPT_BOOL | OPT_EXPERT, { &fast }, "non spec compliant optimizations", "" }, 3584 { "genpts", OPT_BOOL | OPT_EXPER [all...] |
H A D | cmdutils.h | 139 #define OPT_BOOL 0x0002 macro
|
H A D | ffprobe.c | 3960 { "unit", OPT_BOOL, {&show_value_unit}, "show unit of the displayed values" }, 3961 { "prefix", OPT_BOOL, {&use_value_prefix}, "use SI prefixes for the displayed values" }, 3962 { "byte_binary_prefix", OPT_BOOL, {&use_byte_value_binary_prefix}, 3964 { "sexagesimal", OPT_BOOL, {&use_value_sexagesimal_format}, 3973 { "show_data", OPT_BOOL, { &do_show_data }, "show packets data" }, 3987 { "count_frames", OPT_BOOL, { &do_count_frames }, "count the number of frames per stream" }, 3988 { "count_packets", OPT_BOOL, { &do_count_packets }, "count the number of packets per stream" }, 3994 { "show_private_data", OPT_BOOL, { &show_private_data }, "show private data" }, 3995 { "private", OPT_BOOL, { &show_private_data }, "same as show_private_data" }, 3996 { "bitexact", OPT_BOOL, { [all...] |