aboutsummaryrefslogtreecommitdiff
path: root/layers/param_checker.cpp
diff options
context:
space:
mode:
authorChia-I Wu <olv@lunarg.com>2015-05-25 16:27:50 +0800
committerMark Lobodzinski <mark@lunarg.com>2015-06-02 09:37:44 -0500
commit08cb58fea610f58dedaad1544b3b922be733b24d (patch)
tree89661dde2d87bfd4500e9421289a7525e4218a28 /layers/param_checker.cpp
parent6d29a412f24aeb945f537c0b47a0dd7cf3a24a07 (diff)
downloadusermoji-08cb58fea610f58dedaad1544b3b922be733b24d.tar.xz
v98: remove vk{Begin,End}DescriptorPoolUpdate()
Assume VK_DESCRIPTOR_UPDATE_MODE_FASTEST. Conflicts: icd/intel/desc.c include/vulkan.h
Diffstat (limited to 'layers/param_checker.cpp')
-rw-r--r--layers/param_checker.cpp18
1 files changed, 0 insertions, 18 deletions
diff --git a/layers/param_checker.cpp b/layers/param_checker.cpp
index 7e12283a..2ee5d784 100644
--- a/layers/param_checker.cpp
+++ b/layers/param_checker.cpp
@@ -991,24 +991,6 @@ VK_LAYER_EXPORT VkResult VKAPI vkCreatePipelineLayout(VkDevice device, const VkP
return result;
}
-VK_LAYER_EXPORT VkResult VKAPI vkBeginDescriptorPoolUpdate(VkDevice device, VkDescriptorUpdateMode updateMode)
-{
- char str[1024];
- if (!validate_VkDescriptorUpdateMode(updateMode)) {
- sprintf(str, "Parameter updateMode to function BeginDescriptorPoolUpdate has invalid value of %i.", (int)updateMode);
- layerCbMsg(VK_DBG_MSG_ERROR, VK_VALIDATION_LEVEL_0, NULL, 0, 1, "PARAMCHECK", str);
- }
- VkResult result = nextTable.BeginDescriptorPoolUpdate(device, updateMode);
- return result;
-}
-
-VK_LAYER_EXPORT VkResult VKAPI vkEndDescriptorPoolUpdate(VkDevice device, VkCmdBuffer cmd)
-{
-
- VkResult result = nextTable.EndDescriptorPoolUpdate(device, cmd);
- return result;
-}
-
VK_LAYER_EXPORT VkResult VKAPI vkCreateDescriptorPool(VkDevice device, VkDescriptorPoolUsage poolUsage, uint32_t maxSets, const VkDescriptorPoolCreateInfo* pCreateInfo, VkDescriptorPool* pDescriptorPool)
{
char str[1024];