From 346cd417ca8f6cd9f55adbeb0d25d976007463c7 Mon Sep 17 00:00:00 2001 From: Swung0x48 Date: Thu, 16 Jul 2026 12:26:38 -0400 Subject: [PATCH] [Fix] (MG_Backend/DirectVulkan): fix ERROR-level vertex stream build --- MobileGL/MG_Backend/DirectVulkan/Renderer/VulkanRenderer.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/MobileGL/MG_Backend/DirectVulkan/Renderer/VulkanRenderer.cpp b/MobileGL/MG_Backend/DirectVulkan/Renderer/VulkanRenderer.cpp index a82a62e1..84af9d4d 100644 --- a/MobileGL/MG_Backend/DirectVulkan/Renderer/VulkanRenderer.cpp +++ b/MobileGL/MG_Backend/DirectVulkan/Renderer/VulkanRenderer.cpp @@ -2151,8 +2151,8 @@ void main() { if (!supported) { // SetupDraw's pre-flight should have rejected this already; never upload a null payload. MGLOG_E("UploadAndBindVertexStreams skipped: unsupported current generic vertex attribute type: " - "program=%u location=%u type=0x%x", - program.GetExternalIndex(), location, glType); + "programHash=%llu location=%u type=0x%x", + static_cast(programObj.hash), location, glType); return false; }