diff options
| author | Chia-I Wu <olv@lunarg.com> | 2015-03-26 15:23:52 +0800 |
|---|---|---|
| committer | Chia-I Wu <olv@lunarg.com> | 2015-04-16 17:33:27 +0800 |
| commit | 146746db0ed360c026483f7991377dd1a1e9741c (patch) | |
| tree | 340309b4deaa4d0b381c4cec8b600b7520c81a4d /include | |
| parent | a2aa86389a06b8d092d16b757cbb6b9bf83f539d (diff) | |
| download | usermoji-146746db0ed360c026483f7991377dd1a1e9741c.tar.xz | |
binding: rename xglClearDescriptorPool()
Rename it to xglResetDescriptorPool().
Diffstat (limited to 'include')
| -rw-r--r-- | include/xgl.h | 4 | ||||
| -rw-r--r-- | include/xglLayer.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/include/xgl.h b/include/xgl.h index 5d80dfa4..4d6973c7 100644 --- a/include/xgl.h +++ b/include/xgl.h @@ -2312,7 +2312,7 @@ typedef XGL_RESULT (XGLAPI *xglCreateDescriptorSetLayoutType)(XGL_DEVICE device, typedef XGL_RESULT (XGLAPI *xglBeginDescriptorPoolUpdateType)(XGL_DEVICE device, XGL_DESCRIPTOR_UPDATE_MODE updateMode); typedef XGL_RESULT (XGLAPI *xglEndDescriptorPoolUpdateType)(XGL_DEVICE device, XGL_CMD_BUFFER cmd); typedef XGL_RESULT (XGLAPI *xglCreateDescriptorPoolType)(XGL_DEVICE device, XGL_DESCRIPTOR_POOL_USAGE poolUsage, uint32_t maxSets, const XGL_DESCRIPTOR_POOL_CREATE_INFO* pCreateInfo, XGL_DESCRIPTOR_POOL* pDescriptorPool); -typedef XGL_RESULT (XGLAPI *xglClearDescriptorPoolType)(XGL_DESCRIPTOR_POOL descriptorPool); +typedef XGL_RESULT (XGLAPI *xglResetDescriptorPoolType)(XGL_DESCRIPTOR_POOL descriptorPool); typedef XGL_RESULT (XGLAPI *xglAllocDescriptorSetsType)(XGL_DESCRIPTOR_POOL descriptorPool, XGL_DESCRIPTOR_SET_USAGE setUsage, uint32_t count, const XGL_DESCRIPTOR_SET_LAYOUT* pSetLayouts, XGL_DESCRIPTOR_SET* pDescriptorSets, uint32_t* pCount); typedef void (XGLAPI *xglClearDescriptorSetsType)(XGL_DESCRIPTOR_POOL descriptorPool, uint32_t count, const XGL_DESCRIPTOR_SET* pDescriptorSets); typedef void (XGLAPI *xglUpdateDescriptorsType)(XGL_DESCRIPTOR_SET descriptorSet, const void* pUpdateChain); @@ -2722,7 +2722,7 @@ XGL_RESULT XGLAPI xglCreateDescriptorPool( const XGL_DESCRIPTOR_POOL_CREATE_INFO* pCreateInfo, XGL_DESCRIPTOR_POOL* pDescriptorPool); -XGL_RESULT XGLAPI xglClearDescriptorPool( +XGL_RESULT XGLAPI xglResetDescriptorPool( XGL_DESCRIPTOR_POOL descriptorPool); XGL_RESULT XGLAPI xglAllocDescriptorSets( diff --git a/include/xglLayer.h b/include/xglLayer.h index 3b7624d3..e4c145a0 100644 --- a/include/xglLayer.h +++ b/include/xglLayer.h @@ -89,7 +89,7 @@ typedef struct _XGL_LAYER_DISPATCH_TABLE xglBeginDescriptorPoolUpdateType BeginDescriptorPoolUpdate; xglEndDescriptorPoolUpdateType EndDescriptorPoolUpdate; xglCreateDescriptorPoolType CreateDescriptorPool; - xglClearDescriptorPoolType ClearDescriptorPool; + xglResetDescriptorPoolType ResetDescriptorPool; xglAllocDescriptorSetsType AllocDescriptorSets; xglClearDescriptorSetsType ClearDescriptorSets; xglUpdateDescriptorsType UpdateDescriptors; |
