mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-29 21:30:53 +00:00
Display matrix memory order in cbuffer type column. Refs #800
This commit is contained in:
@@ -281,7 +281,7 @@ bool ConstantBufferPreviewer::updateVariables(RDTreeWidgetItem *root,
|
||||
|
||||
// different size or type? can't update
|
||||
if(a.rows != b.rows || a.columns != b.columns || a.displayAsHex != b.displayAsHex ||
|
||||
a.isStruct != b.isStruct || a.type != b.type)
|
||||
a.isStruct != b.isStruct || a.rowMajor != b.rowMajor || a.type != b.type)
|
||||
return false;
|
||||
|
||||
// update this node's value column
|
||||
|
||||
Reference in New Issue
Block a user