[vulkan] Changed UpdateDynamicState order

This commit is contained in:
CamilleLaVey 2026-02-17 01:18:23 -04:00 committed by lizzie
parent e3e880e879
commit d273fc4ad6

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();
}