[vulkan] Changed UpdateDynamicState order

This commit is contained in:
CamilleLaVey 2026-02-17 01:18:23 -04:00 committed by crueter
parent 7062402d9e
commit f05ba4f656
No known key found for this signature in database
GPG Key ID: 425ACD2D4830EBC6
1 changed files with 1 additions and 2 deletions

View File

@ -281,12 +281,11 @@ void RasterizerVulkan::PrepareDraw(bool is_indexed, Func&& draw_func) {
state_tracker.InvalidateStateEnableFlag();
}
UpdateDynamicStates();
HandleTransformFeedback();
query_cache.CounterEnable(VideoCommon::QueryType::ZPassPixelCount64,
maxwell3d->regs.zpass_pixel_count_enable);
UpdateDynamicStates();
draw_func();
}