diff options
| author | Chris Forbes <chrisforbes@google.com> | 2016-04-14 10:34:17 +1200 |
|---|---|---|
| committer | Chris Forbes <chrisforbes@google.com> | 2016-04-14 10:52:10 +1200 |
| commit | 48880ad8812f282f7087da5009645ea5758ef2f8 (patch) | |
| tree | a8a13d89d77026d1b46ca6c1d0d8e9bb0704a141 | |
| parent | 85834d143caed7cd3cca59d91033c9dcb01b3d31 (diff) | |
| download | usermoji-48880ad8812f282f7087da5009645ea5758ef2f8.tar.xz | |
layers: replace remaining set with unordered_set
Signed-off-by: Chris Forbes <chrisforbes@google.com>
| -rw-r--r-- | layers/core_validation.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/layers/core_validation.h b/layers/core_validation.h index ff5a7694..b6447019 100644 --- a/layers/core_validation.h +++ b/layers/core_validation.h @@ -908,8 +908,8 @@ struct GLOBAL_CB_NODE { // TODO : These data structures relate to tracking resources that invalidate // a cmd buffer that references them. Need to unify how we handle these // cases so we don't have different tracking data for each type. - std::set<VkDescriptorSet> destroyedSets; - std::set<VkDescriptorSet> updatedSets; + unordered_set<VkDescriptorSet> destroyedSets; + unordered_set<VkDescriptorSet> updatedSets; unordered_set<VkFramebuffer> destroyedFramebuffers; vector<VkEvent> waitedEvents; vector<VkSemaphore> semaphores; |
