mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-29 21:30:53 +00:00
Remove redundant numSubresources struct member that was just mips*slices
This commit is contained in:
@@ -52,7 +52,6 @@ namespace renderdocui.Windows.Dialogs
|
||||
tex.cubemap = true;
|
||||
tex.msSamp = 2;
|
||||
tex.mips = 5;
|
||||
tex.numSubresources = tex.arraysize * tex.mips;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -115,7 +114,7 @@ namespace renderdocui.Windows.Dialogs
|
||||
|
||||
String[] cubeFaces = { "X+", "X-", "Y+", "Y-", "Z+", "Z-" };
|
||||
|
||||
UInt32 numSlices = (Math.Max(1, tex.depth) * tex.numSubresources) / tex.mips;
|
||||
UInt32 numSlices = Math.Max(tex.arraysize, tex.depth);
|
||||
|
||||
sliceSelect.Items.Clear();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user