diff options
| author | Mark Lobodzinski <mark@lunarg.com> | 2018-02-28 13:38:45 -0700 |
|---|---|---|
| committer | Mike Schuchardt <mikes@lunarg.com> | 2018-03-09 13:54:31 -0700 |
| commit | e663e567b47d37863ca24d43e9faa4e4d4a4d0b5 (patch) | |
| tree | d8899b3eca1200b57bfa06b7aeba4d8340c03163 | |
| parent | 9908d57f0e9a5efd6488260b1b5bd8002a4b13e8 (diff) | |
| download | usermoji-e663e567b47d37863ca24d43e9faa4e4d4a4d0b5.tar.xz | |
layers: Make unique_objects ID map global
Increasingly, instance objects are referenced by device-level APIs.
Made unique ID map global, shared across all instances and devices.
Change-Id: I5b62e7b95ec25a2a8b390d46024b43c29f2199ce
| -rw-r--r-- | layers/unique_objects.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/layers/unique_objects.h b/layers/unique_objects.h index 0a03234c..cbb4c053 100644 --- a/layers/unique_objects.h +++ b/layers/unique_objects.h @@ -46,6 +46,7 @@ struct TEMPLATE_STATE { }; struct instance_layer_data { + VkInstance instance; debug_report_data *report_data; |
