aboutsummaryrefslogtreecommitdiff
path: root/layers/buffer_validation.h
diff options
context:
space:
mode:
authorMark Lobodzinski <mark@lunarg.com>2017-01-17 16:24:29 -0700
committerMark Lobodzinski <mark@lunarg.com>2017-01-17 16:24:29 -0700
commit506e2d46ca1fad5a971dc481a896d15d62243b1d (patch)
tree8f31cda29e306d3ea6b9665d4daeb76d8d8bd3ee /layers/buffer_validation.h
parentae8d3b1c5982f64b581ab3489680ee247af4f1b3 (diff)
downloadusermoji-506e2d46ca1fad5a971dc481a896d15d62243b1d.tar.xz
layers: Fixup CreateImage paramter list
Change-Id: Idfcc569d3985a4ff31503535af9c8329c6304f6a
Diffstat (limited to 'layers/buffer_validation.h')
-rw-r--r--layers/buffer_validation.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/layers/buffer_validation.h b/layers/buffer_validation.h
index d99e5658..b8c094d6 100644
--- a/layers/buffer_validation.h
+++ b/layers/buffer_validation.h
@@ -26,9 +26,9 @@
#include <unordered_map>
#include <vector>
-VK_LAYER_EXPORT void PostCallRecordCreateImage(std::unordered_map<VkImage, std::unique_ptr<IMAGE_STATE>> &imageMap,
- std::unordered_map<VkImage, std::vector<ImageSubresourcePair>> &imageSubresourceMap,
- std::unordered_map<ImageSubresourcePair, IMAGE_LAYOUT_NODE> &imageLayoutMap,
- const VkImageCreateInfo *pCreateInfo, VkImage *pImage);
+void PostCallRecordCreateImage(std::unordered_map<VkImage, std::unique_ptr<IMAGE_STATE>> *imageMap,
+ std::unordered_map<VkImage, std::vector<ImageSubresourcePair>> *imageSubresourceMap,
+ std::unordered_map<ImageSubresourcePair, IMAGE_LAYOUT_NODE> *imageLayoutMap,
+ const VkImageCreateInfo *pCreateInfo, VkImage *pImage);
#endif // CORE_VALIDATION_BUFFER_VALIDATION_H_