[vulkan] Re-ordering order for BindVertexBuffers2EXT command (again)

This commit is contained in:
CamilleLaVey 2026-02-02 22:35:07 -04:00
parent 2d1fe28198
commit fb8e0f25ab
2 changed files with 3 additions and 2 deletions

View File

@ -1,4 +1,4 @@
// SPDX-FileCopyrightText: Copyright 2025 Eden Emulator Project
// SPDX-FileCopyrightText: Copyright 2026 Eden Emulator Project
// SPDX-License-Identifier: GPL-3.0-or-later
// SPDX-FileCopyrightText: Copyright 2019 yuzu Emulator Project

View File

@ -462,7 +462,6 @@ bool GraphicsPipeline::ConfigureImpl(bool is_indexed) {
}
buffer_cache.UpdateGraphicsBuffers(is_indexed);
buffer_cache.BindHostGeometryBuffers(is_indexed);
guest_descriptor_queue.Acquire();
@ -500,6 +499,8 @@ bool GraphicsPipeline::ConfigureImpl(bool is_indexed) {
texture_cache.CheckFeedbackLoop(views);
ConfigureDraw(rescaling, render_area);
buffer_cache.BindHostGeometryBuffers(is_indexed);
return true;
}