Path: blob/21.2-virgl/src/gallium/drivers/radeonsi/si_debug_options.h
4570 views
OPT_BOOL(inline_uniforms, true, "Optimize shaders by replacing uniforms with literals")1OPT_BOOL(aux_debug, false, "Generate ddebug_dumps for the auxiliary context")2OPT_BOOL(sync_compile, false, "Always compile synchronously (will cause stalls)")3OPT_BOOL(dump_shader_binary, false, "Dump shader binary as part of ddebug_dumps")4OPT_BOOL(debug_disassembly, false,5"Report shader disassembly as part of driver debug messages (for shader db)")6OPT_BOOL(halt_shaders, false, "Halt shaders at the start (will hang)")7OPT_BOOL(vs_fetch_always_opencode, false,8"Always open code vertex fetches (less efficient, purely for testing)")9OPT_BOOL(prim_restart_tri_strips_only, false, "Only enable primitive restart for triangle strips")10OPT_BOOL(no_infinite_interp, false, "Kill PS with infinite interp coeff")11OPT_BOOL(clamp_div_by_zero, false, "Clamp div by zero (x / 0 becomes FLT_MAX instead of NaN)")12OPT_BOOL(shader_culling, false, "Cull primitives in shaders when benefical (without tess and GS)")13OPT_BOOL(vrs2x2, false, "Enable 2x2 coarse shading for non-GUI elements")14OPT_BOOL(enable_sam, false, "Enable Smart Access Memory with Above 4G Decoding for unvalidated platforms.")15OPT_BOOL(disable_sam, false, "Disable Smart Access Memory.")16OPT_BOOL(fp16, false, "Enable FP16 for mediump.")1718#undef OPT_BOOL192021