early-access version 1334

This commit is contained in:
pineappleEA
2021-01-17 09:53:56 +01:00
parent f70af7672d
commit 2a0ecc5567
5 changed files with 5 additions and 19 deletions

View File

@@ -22,17 +22,6 @@
namespace Vulkan {
namespace {
VkDescriptorUpdateTemplateEntryKHR BuildQuadArrayPassDescriptorUpdateTemplateEntry() {
return {
.dstBinding = 0,
.dstArrayElement = 0,
.descriptorCount = 1,
.descriptorType = VK_DESCRIPTOR_TYPE_STORAGE_BUFFER,
.offset = 0,
.stride = sizeof(DescriptorUpdateEntry),
};
}
VkPushConstantRange BuildComputePushConstantRange(std::size_t size) {
return {
.stageFlags = VK_SHADER_STAGE_COMPUTE_BIT,