diff options
| author | Mark Lobodzinski <mark@lunarg.com> | 2015-04-07 09:34:09 -0500 |
|---|---|---|
| committer | Chia-I Wu <olv@lunarg.com> | 2015-04-16 17:33:29 +0800 |
| commit | 17f82a5f0b864c6cd2e87c7c1ac9ac1fe6b79713 (patch) | |
| tree | 41ec47f8cc8714a975743c1fcd5a04d53bacdccb /layers/mem_tracker.cpp | |
| parent | 151a0dd8557721b66f1a7f5512aa8b4c2e7ed2c0 (diff) | |
| download | usermoji-17f82a5f0b864c6cd2e87c7c1ac9ac1fe6b79713.tar.xz | |
layers: Fixes to get them building and working with descriptor changes
Diffstat (limited to 'layers/mem_tracker.cpp')
| -rw-r--r-- | layers/mem_tracker.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/layers/mem_tracker.cpp b/layers/mem_tracker.cpp index 19459349..ec84013e 100644 --- a/layers/mem_tracker.cpp +++ b/layers/mem_tracker.cpp @@ -1400,13 +1400,13 @@ XGL_LAYER_EXPORT void XGLAPI xglCmdBindDynamicStateObject(XGL_CMD_BUFFER cmdBuff } XGL_LAYER_EXPORT void XGLAPI xglCmdBindDescriptorSets( - XGL_CMD_BUFFER cmdBuffer, - XGL_PIPELINE_BIND_POINT pipelineBindPoint, - XGL_DESCRIPTOR_SET_LAYOUT_CHAIN layoutChain, - uint32_t layoutChainSlot, - uint32_t count, - const XGL_DESCRIPTOR_SET* pDescriptorSets, - const uint32_t* pUserData) + XGL_CMD_BUFFER cmdBuffer, + XGL_PIPELINE_BIND_POINT pipelineBindPoint, + XGL_DESCRIPTOR_SET_LAYOUT_CHAIN layoutChain, + uint32_t layoutChainSlot, + uint32_t count, + const XGL_DESCRIPTOR_SET* pDescriptorSets, + const uint32_t* pUserData) { // TODO : Somewhere need to verify that all textures referenced by shaders in DS are in some type of *SHADER_READ* state nextTable.CmdBindDescriptorSets(cmdBuffer, pipelineBindPoint, layoutChain, layoutChainSlot, count, pDescriptorSets, pUserData); |
