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 /layers/draw_state.cpp | |
| parent | 240013558c2d89a3d0fadf270165b8546155ed6c (diff) | |
| download | usermoji-af7f549a72cdf48ba7a438dce80f063819e0c093.tar.xz | |
bug-14580: add dataSize to vkGetPipelineCacheData
commit: aaa2ae0
Diffstat (limited to 'layers/draw_state.cpp')
| -rwxr-xr-x | layers/draw_state.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/layers/draw_state.cpp b/layers/draw_state.cpp index d8737851..7a33ffb9 100755 --- a/layers/draw_state.cpp +++ b/layers/draw_state.cpp @@ -1735,10 +1735,11 @@ size_t VKAPI vkGetPipelineCacheSize( VkResult VKAPI vkGetPipelineCacheData( VkDevice device, VkPipelineCache pipelineCache, + size_t dataSize, void* pData) { layer_data* dev_data = get_my_data_ptr(get_dispatch_key(device), layer_data_map); - VkResult result = dev_data->device_dispatch_table->GetPipelineCacheData(device, pipelineCache, pData); + VkResult result = dev_data->device_dispatch_table->GetPipelineCacheData(device, pipelineCache, dataSize, pData); return result; } |
