freedreno: drop dEQP hacks

Not necessary since ceece45b2b ("freedreno: drop hack for old dEQP").

Reviewed-by: Rob Clark <robclark@freedesktop.org>
Signed-off-by: David Heidelberg <david@ixit.cz>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/30497>
This commit is contained in:
David Heidelberg 2024-08-03 13:49:11 +09:00
parent 97f6a296e3
commit 366e7e2ddc
2 changed files with 1 additions and 2 deletions

View file

@ -81,7 +81,6 @@ static const struct debug_named_value fd_debug_options[] = {
{"serialc", FD_DBG_SERIALC, "Disable asynchronous shader compile"},
{"shaderdb", FD_DBG_SHADERDB, "Enable shaderdb output"},
{"flush", FD_DBG_FLUSH, "Force flush after every draw"},
{"deqp", FD_DBG_DEQP, "Enable dEQP hacks"},
{"inorder", FD_DBG_INORDER, "Disable reordering for draws/blits"},
{"bstat", FD_DBG_BSTAT, "Print batch stats at context destroy"},
{"nogrow", FD_DBG_NOGROW, "Disable \"growable\" cmdstream buffers, even if kernel supports it"},

View file

@ -85,7 +85,7 @@ enum fd_debug_flag {
FD_DBG_SERIALC = BITFIELD_BIT(10),
FD_DBG_SHADERDB = BITFIELD_BIT(11),
FD_DBG_FLUSH = BITFIELD_BIT(12),
FD_DBG_DEQP = BITFIELD_BIT(13),
/* BIT(13) */
FD_DBG_INORDER = BITFIELD_BIT(14),
FD_DBG_BSTAT = BITFIELD_BIT(15),
FD_DBG_NOGROW = BITFIELD_BIT(16),