mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-09-24 22:55:41 +00:00
Support lazy-generating structured data objects for large arrays
* For certain very large arrays it can be nice to defer generation of structured data until it's needed, since often maybe only a handful of elements may be needed (or commonly none at all).
This commit is contained in:
@@ -494,7 +494,7 @@ void SettingsDialog::on_chooseSearchPaths_clicked()
|
||||
|
||||
QStringList items;
|
||||
|
||||
for(SDObject *c : *getPaths)
|
||||
for(const SDObject *c : *getPaths)
|
||||
items << c->data.str;
|
||||
|
||||
list.setItems(items);
|
||||
|
||||
Reference in New Issue
Block a user