vk_rasterizer: Flush work on clear and dispatches

This commit is contained in:
ReinUsesLisp 2021-06-05 21:48:38 -03:00 committed by ameerj
parent c736b9ffab
commit 2a0aeaa3d2
1 changed files with 3 additions and 0 deletions

View File

@ -189,6 +189,7 @@ void RasterizerVulkan::Clear() {
if (!maxwell3d.ShouldExecute()) {
return;
}
FlushWork();
query_cache.UpdateCounters();
@ -259,6 +260,8 @@ void RasterizerVulkan::Clear() {
}
void RasterizerVulkan::DispatchCompute() {
FlushWork();
ComputePipeline* const pipeline{pipeline_cache.CurrentComputePipeline()};
if (!pipeline) {
return;