Texture buffers now default to viewing in the buffer not texture viewer

* The pipeline state windows will open up the buffer viewer instead of
  the texture viewer to show the contents of texture buffers.
This commit is contained in:
baldurk
2015-02-12 21:15:02 +00:00
parent 40e06c17de
commit 8938c71853
4 changed files with 54 additions and 25 deletions
+1 -1
View File
@@ -481,7 +481,7 @@ namespace renderdocui.Windows
if (m_Core.CurBuffers[i].ID == ID)
{
var viewer = new BufferViewer(m_Core, false);
viewer.ViewRawBuffer(ID);
viewer.ViewRawBuffer(true, ID);
viewer.Show(DockPanel);
return;
}