dzn, driconf: Add a driconf entry for NMS to claim wide line support

Reviewed-by: Giancarlo Devich <gdevich@microsoft.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/20959>
This commit is contained in:
Jesse Natalie
2023-01-27 08:50:54 -08:00
committed by Marge Bot
parent df0054e523
commit 237e12c2df
5 changed files with 38 additions and 2 deletions
+5
View File
@@ -1000,6 +1000,11 @@ TODO: document the other workarounds.
<option name="anv_sample_mask_out_opengl_behaviour" value="true"/>
</application>
</device>
<device driver="dzn">
<application name="No Man's Sky" executable="NMS.exe">
<option name="dzn_claim_wide_lines" value="true" />
</application>
</device>
<device driver="r600">
<application name="Tomb Raider 2013" executable="TombRaider">
+7
View File
@@ -637,4 +637,11 @@
DRI_CONF_OPT_I(generated_indirect_threshold, def, 0, INT32_MAX, \
"Indirect threshold count above which we start generating commands")
/**
* \brief DZN specific configuration options
*/
#define DRI_CONF_DZN_CLAIM_WIDE_LINES(def) \
DRI_CONF_OPT_B(dzn_claim_wide_lines, def, "Claim wide line support")
#endif