diff options
| author | Courtney Goeltzenleuchter <courtney@LunarG.com> | 2015-10-16 09:58:26 -0600 |
|---|---|---|
| committer | Courtney Goeltzenleuchter <courtney@LunarG.com> | 2015-10-23 17:31:14 -0600 |
| commit | af7f549a72cdf48ba7a438dce80f063819e0c093 (patch) | |
| tree | cf814ed2bc1bfddc6fea91e6416bdcb5cc537e53 /loader | |
| parent | 240013558c2d89a3d0fadf270165b8546155ed6c (diff) | |
| download | usermoji-af7f549a72cdf48ba7a438dce80f063819e0c093.tar.xz | |
bug-14580: add dataSize to vkGetPipelineCacheData
commit: aaa2ae0
Diffstat (limited to 'loader')
| -rw-r--r-- | loader/trampoline.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/loader/trampoline.c b/loader/trampoline.c index c7a6394c..b2c00c1d 100644 --- a/loader/trampoline.c +++ b/loader/trampoline.c @@ -827,13 +827,13 @@ LOADER_EXPORT size_t VKAPI vkGetPipelineCacheSize(VkDevice device, VkPipelineCac return disp->GetPipelineCacheSize(device, pipelineCache); } -LOADER_EXPORT VkResult VKAPI vkGetPipelineCacheData(VkDevice device, VkPipelineCache pipelineCache, void* pData) +LOADER_EXPORT VkResult VKAPI vkGetPipelineCacheData(VkDevice device, VkPipelineCache pipelineCache, size_t dataSize, void* pData) { const VkLayerDispatchTable *disp; disp = loader_get_dispatch(device); - return disp->GetPipelineCacheData(device, pipelineCache, pData); + return disp->GetPipelineCacheData(device, pipelineCache, dataSize, pData); } LOADER_EXPORT VkResult VKAPI vkMergePipelineCaches(VkDevice device, VkPipelineCache destCache, uint32_t srcCacheCount, const VkPipelineCache* pSrcCaches) |
