Skip to content

Commit b5e5941

Browse files
committed
Add missing pushDescriptor field to VkPhysicalDeviceVulkan14Features
Bug: b/403413507 Test: adb shell cmd gpu vkjson Flag: NONE infeasible Change-Id: I68403240b59985f79d7660398a000ed50371539f
1 parent 744e83f commit b5e5941

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

vulkan/scripts/vk.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -742,7 +742,7 @@ class VkPhysicalDeviceVulkan14Features:
742742
pipelineProtectedAccess: VkBool32
743743
pipelineRobustness: VkBool32
744744
hostImageCopy: VkBool32
745-
# pushDescriptor: bool
745+
pushDescriptor: VkBool32
746746

747747

748748
@dataclass

vulkan/vkjson/vkjson.cc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1896,7 +1896,8 @@ inline bool Iterate(Visitor* visitor,
18961896
visitor->Visit("pipelineProtectedAccess",
18971897
&features->pipelineProtectedAccess) &&
18981898
visitor->Visit("pipelineRobustness", &features->pipelineRobustness) &&
1899-
visitor->Visit("hostImageCopy", &features->hostImageCopy);
1899+
visitor->Visit("hostImageCopy", &features->hostImageCopy) &&
1900+
visitor->Visit("pushDescriptor", &features->pushDescriptor);
19001901
}
19011902

19021903
template <typename Visitor>

0 commit comments

Comments
 (0)