gen8/cmd_buffer: Properly return flushed push constant stages

This is required on SKL so that we can properly re-emit binding table
pointers commands.
This commit is contained in:
Jason Ekstrand 2016-03-02 10:46:13 -08:00
parent 5b70aa11ee
commit 8f5a64e44f
1 changed files with 3 additions and 1 deletions

View File

@ -63,9 +63,11 @@ cmd_buffer_flush_push_constants(struct anv_cmd_buffer *cmd_buffer)
.ConstantBuffer2ReadLength = DIV_ROUND_UP(state.alloc_size, 32),
});
}
flushed |= mesa_to_vk_shader_stage(stage);
}
cmd_buffer->state.push_constants_dirty &= ~VK_SHADER_STAGE_ALL_GRAPHICS;
cmd_buffer->state.push_constants_dirty &= ~flushed;
return flushed;
}