mirror of
https://github.com/RPCS3/rpcs3.git
synced 2026-06-05 22:55:04 -06:00
rsx: Allow u32 restart index with full index width
This commit is contained in:
parent
6b3af09fa5
commit
df63de8f16
@ -693,7 +693,13 @@ namespace rsx
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return restart_index() <= (index_type() == rsx::index_array_type::u16 ? 0xffff : 0xfffff);
|
if (index_type() == rsx::index_array_type::u16 &&
|
||||||
|
restart_index() > 0xffff)
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
u32 z_clear_value(bool is_depth_stencil) const
|
u32 z_clear_value(bool is_depth_stencil) const
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user