1 // DriConf options specific to radeonsi 2 DRI_CONF_SECTION_PERFORMANCE 3 DRI_CONF_ADAPTIVE_SYNC(true) 4 DRI_CONF_RADEONSI_ZERO_ALL_VRAM_ALLOCS(false) 5 DRI_CONF_SECTION_END 6 7 DRI_CONF_SECTION_DEBUG 8 #define OPT_BOOL(name, dflt, description) DRI_CONF_OPT_B(radeonsi_##name, dflt, description) 9 #define OPT_INT(name, dflt, description) DRI_CONF_OPT_I(radeonsi_##name, dflt, INT_MIN, INT_MAX, description) 10 11 #include "si_debug_options.h" 12 DRI_CONF_SECTION_END 13