diff options
| author | Courtney Goeltzenleuchter <courtney@LunarG.com> | 2015-04-09 11:43:10 -0600 |
|---|---|---|
| committer | Chia-I Wu <olv@lunarg.com> | 2015-04-16 17:48:18 +0800 |
| commit | eb4754f37ff5d69c2ee4f5820e4cd2a7fac3e05f (patch) | |
| tree | e98a5995e2b34d9700de62542396f11658ec7449 /layers/draw_state.cpp | |
| parent | 847174d87cc5bf5c8e423ae30d8d23f50410b48b (diff) | |
| download | usermoji-eb4754f37ff5d69c2ee4f5820e4cd2a7fac3e05f.tar.xz | |
xgl.h v70. Fix for vkUpdateDescriptors. Bug 13615
git-svn-id: https://cvs.khronos.org/svn/repos/oglc/trunk/nextgen/XGL@30104 e7fa87d3-cd2b-0410-9028-fcbf551c1848
Diffstat (limited to 'layers/draw_state.cpp')
| -rw-r--r-- | layers/draw_state.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/layers/draw_state.cpp b/layers/draw_state.cpp index 407a0903..53ec6cd4 100644 --- a/layers/draw_state.cpp +++ b/layers/draw_state.cpp @@ -1176,7 +1176,7 @@ static void dsCoreDumpDot(const VK_DESCRIPTOR_SET ds, FILE* pOutFile) break; case VK_STRUCTURE_TYPE_UPDATE_SAMPLER_TEXTURES: pUST = (VK_UPDATE_SAMPLER_TEXTURES*)pSet->ppDescriptors[i]; - pSCI = getSamplerCreateInfo(pUST->pSamplerImageViews[i-pUST->arrayIndex].pSampler); + pSCI = getSamplerCreateInfo(pUST->pSamplerImageViews[i-pUST->arrayIndex].sampler); if (pSCI) { sprintf(tmp_str, "SAMPLER%u", i); fprintf(pOutFile, "%s", vk_gv_print_vk_sampler_create_info(pSCI, tmp_str)); |
