From 4db8616ec47f5df666f5317151f11ee57fcfb316 Mon Sep 17 00:00:00 2001 From: baldurk Date: Mon, 20 Oct 2025 17:15:27 +0100 Subject: [PATCH] Fix double click on FBO entry in GL pipeline state not opening texture --- qrenderdoc/Windows/PipelineState/GLPipelineStateViewer.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qrenderdoc/Windows/PipelineState/GLPipelineStateViewer.cpp b/qrenderdoc/Windows/PipelineState/GLPipelineStateViewer.cpp index dbba78be5..648eae604 100644 --- a/qrenderdoc/Windows/PipelineState/GLPipelineStateViewer.cpp +++ b/qrenderdoc/Windows/PipelineState/GLPipelineStateViewer.cpp @@ -2330,7 +2330,7 @@ void GLPipelineStateViewer::setState() { if(r) setViewDetails(node, tex, r->firstMip, 1, r->firstSlice, r->numSlices); - node->setTag(QVariant::fromValue(p)); + node->setTag(QVariant::fromValue(GLReadOnlyTag(0, p))); } if(p == ResourceId()) @@ -2422,7 +2422,7 @@ void GLPipelineStateViewer::setState() if(tex) { setViewDetails(node, tex, mip, 1, slice, numSlices); - node->setTag(QVariant::fromValue(ds)); + node->setTag(QVariant::fromValue(GLReadOnlyTag(0, ds))); } if(ds == ResourceId())