Add slice information to the Pixel History Window Title

This commit is contained in:
Jake Turner
2024-01-17 10:45:46 +00:00
parent a3eecf33eb
commit 0a330ef593
+2
View File
@@ -659,6 +659,8 @@ void PixelHistoryView::updateWindowTitle()
if(tex->msSamp > 1)
title += tr(" @ Sample %1").arg(m_Display.subresource.sample);
if(tex->arraysize > 0)
title += tr(" @ Slice %1").arg(m_Display.subresource.slice);
setWindowTitle(title);
}