mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 16:08:04 +02:00
radv: limit the scissor bug workaround to Vega 10 and Raven
Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Reviewed-by: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl>
This commit is contained in:
parent
2719467eb6
commit
85769759bf
1 changed files with 6 additions and 1 deletions
|
|
@ -1118,7 +1118,12 @@ radv_emit_scissor(struct radv_cmd_buffer *cmd_buffer)
|
|||
{
|
||||
uint32_t count = cmd_buffer->state.dynamic.scissor.count;
|
||||
|
||||
if (cmd_buffer->device->physical_device->rad_info.chip_class >= GFX9) {
|
||||
/* Vega10/Raven scissor bug workaround. This must be done before VPORT
|
||||
* scissor registers are changed. There is also a more efficient but
|
||||
* more involved alternative workaround.
|
||||
*/
|
||||
if (cmd_buffer->device->physical_device->rad_info.family == CHIP_VEGA10 ||
|
||||
cmd_buffer->device->physical_device->rad_info.family == CHIP_RAVEN) {
|
||||
cmd_buffer->state.flush_bits |= RADV_CMD_FLAG_PS_PARTIAL_FLUSH;
|
||||
si_emit_cache_flush(cmd_buffer);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue