bug-14365: add dynamic state to PSO
authorCourtney Goeltzenleuchter <courtney@LunarG.com>
Mon, 21 Sep 2015 23:19:25 +0000 (17:19 -0600)
committerCourtney Goeltzenleuchter <courtney@LunarG.com>
Wed, 23 Sep 2015 17:15:00 +0000 (11:15 -0600)
commitb127bd60f48402ee949511b0df88be034d0d94dd
tree8fbf96df1bff78bb7ff4d32fb0918d0690a4d25d
parentd6217bc20873a7d70537921e7cea9be5572bc34c
bug-14365: add dynamic state to PSO

This commit covers phase 2 of the removal of dynamic
state objects. Now, an application can include an array
of VK_DYNAMIC_STATE_* values that tell the driver
which PSO dynamic state elements to use.
I.e. if VK_DYNAMIC_STATE_LINE_WIDTH was specified in the
pDynamicState array then the ICD should use the lineWidth
defined at PSO create time and ignore any set using
vkCmdSetLineWidth.
To accomplish that the driver will make a copy of the
dynamic state specified in the PSO as well as a bitmask
of the affected state. When vkCmdSet* is called, the
driver will check if a PSO override is current and ignore
the call if so.
At PSO bind time the command buffer's dynamic state
will be updated and the PSO override bitmask set so that
any future vkCmdSet*'s will be appropriately ignored.
TODO: Validation layer should probably indicate a warning
if app tries to do vkCmdSet on state defined by the PSO.
include/vulkan.h
layers/draw_state.cpp