From 83da4cb471cbeef44a0b7246c7622d1d6ee06222 Mon Sep 17 00:00:00 2001 From: baldurk Date: Mon, 4 Oct 2021 13:05:57 +0100 Subject: [PATCH] Sanitise : in pipeline state vertex input names --- qrenderdoc/Windows/PipelineState/PipelineStateViewer.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/qrenderdoc/Windows/PipelineState/PipelineStateViewer.cpp b/qrenderdoc/Windows/PipelineState/PipelineStateViewer.cpp index 23a8a77bc..3fa8ae7cd 100644 --- a/qrenderdoc/Windows/PipelineState/PipelineStateViewer.cpp +++ b/qrenderdoc/Windows/PipelineState/PipelineStateViewer.cpp @@ -1448,6 +1448,7 @@ QString PipelineStateViewer::GetVBufferFormatString(uint32_t slot) QString sanitised_name = real_name; sanitised_name.replace(QLatin1Char('.'), QLatin1Char('_')) + .replace(QLatin1Char(':'), QLatin1Char('_')) .replace(QLatin1Char('['), QLatin1Char('_')) .replace(QLatin1Char(']'), QLatin1Char('_'));