aboutsummaryrefslogtreecommitdiff
path: root/include/vk_layer.h
diff options
context:
space:
mode:
authorCody Northrop <cody@lunarg.com>2015-08-18 15:21:16 -0600
committerCody Northrop <cody@lunarg.com>2015-08-26 09:59:59 -0600
commit36a642f8972f33780a144197d8dc3d5bc341e080 (patch)
treea916fceaa2dd539341bac9dbe0ca3d521f81210b /include/vk_layer.h
parent571411031f48921a1fb6287a152aca7d99812ed7 (diff)
downloadusermoji-36a642f8972f33780a144197d8dc3d5bc341e080.tar.xz
Bug 14406: Add support for front/back stencil reference dynamic state
Diffstat (limited to 'include/vk_layer.h')
-rw-r--r--include/vk_layer.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/include/vk_layer.h b/include/vk_layer.h
index 3c3cbada..028da8a3 100644
--- a/include/vk_layer.h
+++ b/include/vk_layer.h
@@ -110,8 +110,10 @@ typedef struct VkLayerDispatchTable_
PFN_vkDestroyDynamicRasterDepthBiasState DestroyDynamicRasterDepthBiasState;
PFN_vkCreateDynamicColorBlendState CreateDynamicColorBlendState;
PFN_vkDestroyDynamicColorBlendState DestroyDynamicColorBlendState;
- PFN_vkCreateDynamicDepthStencilState CreateDynamicDepthStencilState;
- PFN_vkDestroyDynamicDepthStencilState DestroyDynamicDepthStencilState;
+ PFN_vkCreateDynamicDepthState CreateDynamicDepthState;
+ PFN_vkDestroyDynamicDepthState DestroyDynamicDepthState;
+ PFN_vkCreateDynamicStencilState CreateDynamicStencilState;
+ PFN_vkDestroyDynamicStencilState DestroyDynamicStencilState;
PFN_vkCreateFramebuffer CreateFramebuffer;
PFN_vkDestroyFramebuffer DestroyFramebuffer;
PFN_vkCreateRenderPass CreateRenderPass;
@@ -130,7 +132,8 @@ typedef struct VkLayerDispatchTable_
PFN_vkCmdBindDynamicRasterLineState CmdBindDynamicRasterLineState;
PFN_vkCmdBindDynamicRasterDepthBiasState CmdBindDynamicRasterDepthBiasState;
PFN_vkCmdBindDynamicColorBlendState CmdBindDynamicColorBlendState;
- PFN_vkCmdBindDynamicDepthStencilState CmdBindDynamicDepthStencilState;
+ PFN_vkCmdBindDynamicDepthState CmdBindDynamicDepthState;
+ PFN_vkCmdBindDynamicStencilState CmdBindDynamicStencilState;
PFN_vkCmdBindDescriptorSets CmdBindDescriptorSets;
PFN_vkCmdBindVertexBuffers CmdBindVertexBuffers;
PFN_vkCmdBindIndexBuffer CmdBindIndexBuffer;