diff options
| author | Chris Forbes <chrisforbes@google.com> | 2016-06-23 17:03:55 +1200 |
|---|---|---|
| committer | Chris Forbes <chrisforbes@google.com> | 2016-08-01 14:48:47 +1200 |
| commit | e10bf6b1865a6c6f432b8eb5a609f7bb7a523e93 (patch) | |
| tree | 99593b667bbfba31bfc4207b03060b16b73edeb3 | |
| parent | 2e1f982faa8567a4dfed615d9bd758640002442e (diff) | |
| download | usermoji-e10bf6b1865a6c6f432b8eb5a609f7bb7a523e93.tar.xz | |
layers: Drop QUEUE_NODE::device
This was unused.
Signed-off-by: Chris Forbes <chrisforbes@google.com>
| -rw-r--r-- | layers/core_validation.cpp | 1 | ||||
| -rw-r--r-- | layers/core_validation.h | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/layers/core_validation.cpp b/layers/core_validation.cpp index 701ad943..d6197a96 100644 --- a/layers/core_validation.cpp +++ b/layers/core_validation.cpp @@ -5041,7 +5041,6 @@ VKAPI_ATTR void VKAPI_CALL GetDeviceQueue(VkDevice device, uint32_t queueFamilyI if (result.second == true) { QUEUE_NODE *pQNode = &dev_data->queueMap[*pQueue]; pQNode->queue = *pQueue; - pQNode->device = device; } } diff --git a/layers/core_validation.h b/layers/core_validation.h index e444dbc1..4d34c235 100644 --- a/layers/core_validation.h +++ b/layers/core_validation.h @@ -236,7 +236,6 @@ class EVENT_NODE : public BASE_NODE { class QUEUE_NODE { public: VkQueue queue; - VkDevice device; std::vector<VkFence> lastFences; std::vector<CB_SUBMISSION> untrackedSubmissions; std::unordered_map<VkEvent, VkPipelineStageFlags> eventToStageMap; |
