mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 21:50:12 +01:00
radv: fix trap handler exception options
They are same values. Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/33868>
This commit is contained in:
parent
df3f2df966
commit
9108c198bb
1 changed files with 4 additions and 4 deletions
|
|
@ -118,10 +118,10 @@ static const struct debug_control radv_perftest_options[] = {{"localbos", RADV_P
|
|||
{NULL, 0}};
|
||||
|
||||
static const struct debug_control radv_trap_excp_options[] = {
|
||||
{"mem_viol", RADV_PERFTEST_LOCAL_BOS},
|
||||
{"float_div_by_zero", RADV_PERFTEST_DCC_MSAA},
|
||||
{"float_overflow", RADV_PERFTEST_BO_LIST},
|
||||
{"float_underflow", RADV_PERFTEST_CS_WAVE_32},
|
||||
{"mem_viol", RADV_TRAP_EXCP_MEM_VIOL},
|
||||
{"float_div_by_zero", RADV_TRAP_EXCP_FLOAT_DIV_BY_ZERO},
|
||||
{"float_overflow", RADV_TRAP_EXCP_FLOAT_OVERFLOW},
|
||||
{"float_underflow", RADV_TRAP_EXCP_FLOAT_UNDERFLOW},
|
||||
{NULL, 0},
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue