2018-08-12 15:07:07 +02:00
|
|
|
/*
|
|
|
|
|
* Vulkan Example - Conditional rendering
|
|
|
|
|
*
|
|
|
|
|
* Note: Requires a device that supports the VK_EXT_conditional_rendering extension
|
|
|
|
|
*
|
2018-09-03 21:57:26 +02:00
|
|
|
* With conditional rendering it's possible to execute certain rendering commands based on a buffer value instead of having to rebuild the command buffers.
|
2020-08-08 13:59:58 +02:00
|
|
|
* This example sets up a conditional buffer with one value per glTF part, that is used to toggle visibility of single model parts.
|
2018-08-12 15:07:07 +02:00
|
|
|
*
|
|
|
|
|
* Copyright (C) 2018 by Sascha Willems - www.saschawillems.de
|
|
|
|
|
*
|
|
|
|
|
* This code is licensed under the MIT license (MIT) (http://opensource.org/licenses/MIT)
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "vulkanexamplebase.h"
|
2020-07-28 20:20:38 +02:00
|
|
|
#include "VulkanglTFModel.h"
|
2018-08-12 15:07:07 +02:00
|
|
|
|
|
|
|
|
#define ENABLE_VALIDATION false
|
|
|
|
|
|
|
|
|
|
class VulkanExample : public VulkanExampleBase
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
PFN_vkCmdBeginConditionalRenderingEXT vkCmdBeginConditionalRenderingEXT;
|
|
|
|
|
PFN_vkCmdEndConditionalRenderingEXT vkCmdEndConditionalRenderingEXT;
|
|
|
|
|
|
2018-09-03 21:57:26 +02:00
|
|
|
vkglTF::Model scene;
|
2018-08-12 15:07:07 +02:00
|
|
|
|
|
|
|
|
struct {
|
|
|
|
|
glm::mat4 projection;
|
2018-09-04 21:18:14 +02:00
|
|
|
glm::mat4 view;
|
|
|
|
|
glm::mat4 model;
|
2018-08-12 15:07:07 +02:00
|
|
|
} uboVS;
|
|
|
|
|
|
|
|
|
|
vks::Buffer uniformBuffer;
|
|
|
|
|
|
2018-09-03 21:57:26 +02:00
|
|
|
std::vector<int32_t> conditionalVisibility;
|
2018-08-12 15:07:07 +02:00
|
|
|
vks::Buffer conditionalBuffer;
|
|
|
|
|
|
|
|
|
|
VkPipelineLayout pipelineLayout;
|
|
|
|
|
VkPipeline pipeline;
|
|
|
|
|
VkDescriptorSetLayout descriptorSetLayout;
|
|
|
|
|
VkDescriptorSet descriptorSet;
|
|
|
|
|
|
|
|
|
|
VulkanExample() : VulkanExampleBase(ENABLE_VALIDATION)
|
|
|
|
|
{
|
|
|
|
|
title = "Conditional rendering";
|
|
|
|
|
camera.type = Camera::CameraType::lookat;
|
2018-09-03 21:57:26 +02:00
|
|
|
camera.setPerspective(45.0f, (float)width / (float)height, 0.1f, 512.0f);
|
2018-09-04 21:18:14 +02:00
|
|
|
camera.setRotation(glm::vec3(-2.25f, -52.0f, 0.0f));
|
|
|
|
|
camera.setTranslation(glm::vec3(1.9f, -2.05f, -18.0f));
|
2018-09-03 21:57:26 +02:00
|
|
|
camera.rotationSpeed *= 0.25f;
|
2018-08-12 15:07:07 +02:00
|
|
|
|
2018-09-03 21:57:26 +02:00
|
|
|
/*
|
|
|
|
|
[POI] Enable extension required for conditional rendering
|
|
|
|
|
*/
|
2018-08-12 15:07:07 +02:00
|
|
|
enabledDeviceExtensions.push_back(VK_EXT_CONDITIONAL_RENDERING_EXTENSION_NAME);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
~VulkanExample()
|
|
|
|
|
{
|
|
|
|
|
vkDestroyPipeline(device, pipeline, nullptr);
|
|
|
|
|
vkDestroyPipelineLayout(device, pipelineLayout, nullptr);
|
|
|
|
|
vkDestroyDescriptorSetLayout(device, descriptorSetLayout, nullptr);
|
|
|
|
|
uniformBuffer.destroy();
|
|
|
|
|
conditionalBuffer.destroy();
|
|
|
|
|
}
|
|
|
|
|
|
2018-09-03 21:57:26 +02:00
|
|
|
void renderNode(vkglTF::Node *node, VkCommandBuffer commandBuffer) {
|
|
|
|
|
if (node->mesh) {
|
|
|
|
|
for (vkglTF::Primitive * primitive : node->mesh->primitives) {
|
|
|
|
|
const std::vector<VkDescriptorSet> descriptorsets = {
|
|
|
|
|
descriptorSet,
|
|
|
|
|
node->mesh->uniformBuffer.descriptorSet
|
|
|
|
|
};
|
|
|
|
|
vkCmdBindDescriptorSets(commandBuffer, VK_PIPELINE_BIND_POINT_GRAPHICS, pipelineLayout, 0, static_cast<uint32_t>(descriptorsets.size()), descriptorsets.data(), 0, NULL);
|
2020-05-29 16:08:53 +01:00
|
|
|
|
2018-09-03 21:57:26 +02:00
|
|
|
struct PushBlock {
|
|
|
|
|
glm::vec4 baseColorFactor;
|
|
|
|
|
} pushBlock;
|
|
|
|
|
pushBlock.baseColorFactor = primitive->material.baseColorFactor;
|
|
|
|
|
|
2018-09-07 12:31:48 +02:00
|
|
|
vkCmdPushConstants(commandBuffer, pipelineLayout, VK_SHADER_STAGE_VERTEX_BIT, 0, sizeof(PushBlock), &pushBlock);
|
2018-09-03 21:57:26 +02:00
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
[POI] Setup the conditional rendering
|
|
|
|
|
*/
|
|
|
|
|
VkConditionalRenderingBeginInfoEXT conditionalRenderingBeginInfo{};
|
|
|
|
|
conditionalRenderingBeginInfo.sType = VK_STRUCTURE_TYPE_CONDITIONAL_RENDERING_BEGIN_INFO_EXT;
|
|
|
|
|
conditionalRenderingBeginInfo.buffer = conditionalBuffer.buffer;
|
|
|
|
|
conditionalRenderingBeginInfo.offset = sizeof(int32_t) * node->index;
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
[POI] Begin conditionally rendered section
|
|
|
|
|
|
|
|
|
|
If the value from the conditional rendering buffer at the given offset is != 0, the draw commands will be executed
|
|
|
|
|
*/
|
|
|
|
|
vkCmdBeginConditionalRenderingEXT(commandBuffer, &conditionalRenderingBeginInfo);
|
|
|
|
|
|
|
|
|
|
vkCmdDrawIndexed(commandBuffer, primitive->indexCount, 1, primitive->firstIndex, 0, 0);
|
|
|
|
|
|
|
|
|
|
vkCmdEndConditionalRenderingEXT(commandBuffer);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
for (auto child : node->children) {
|
|
|
|
|
renderNode(child, commandBuffer);
|
2018-08-12 15:07:07 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-09-03 21:57:26 +02:00
|
|
|
|
2018-08-12 15:07:07 +02:00
|
|
|
void buildCommandBuffers()
|
|
|
|
|
{
|
|
|
|
|
VkCommandBufferBeginInfo cmdBufInfo = vks::initializers::commandBufferBeginInfo();
|
|
|
|
|
|
|
|
|
|
VkClearValue clearValues[2];
|
2018-09-03 21:57:26 +02:00
|
|
|
clearValues[0].color = { { 1.0f, 1.0f, 1.0f, 1.0f } };
|
2018-08-12 15:07:07 +02:00
|
|
|
clearValues[1].depthStencil = { 1.0f, 0 };
|
|
|
|
|
|
|
|
|
|
VkRenderPassBeginInfo renderPassBeginInfo = vks::initializers::renderPassBeginInfo();
|
|
|
|
|
renderPassBeginInfo.renderPass = renderPass;
|
|
|
|
|
renderPassBeginInfo.renderArea.offset.x = 0;
|
|
|
|
|
renderPassBeginInfo.renderArea.offset.y = 0;
|
|
|
|
|
renderPassBeginInfo.renderArea.extent.width = width;
|
|
|
|
|
renderPassBeginInfo.renderArea.extent.height = height;
|
|
|
|
|
renderPassBeginInfo.clearValueCount = 2;
|
|
|
|
|
renderPassBeginInfo.pClearValues = clearValues;
|
|
|
|
|
|
2018-09-03 21:57:26 +02:00
|
|
|
for (int32_t i = 0; i < drawCmdBuffers.size(); ++i) {
|
2018-08-12 15:07:07 +02:00
|
|
|
renderPassBeginInfo.framebuffer = frameBuffers[i];
|
|
|
|
|
|
|
|
|
|
VK_CHECK_RESULT(vkBeginCommandBuffer(drawCmdBuffers[i], &cmdBufInfo));
|
|
|
|
|
|
|
|
|
|
vkCmdBeginRenderPass(drawCmdBuffers[i], &renderPassBeginInfo, VK_SUBPASS_CONTENTS_INLINE);
|
|
|
|
|
|
|
|
|
|
VkViewport viewport = vks::initializers::viewport((float)width, (float)height, 0.0f, 1.0f);
|
|
|
|
|
vkCmdSetViewport(drawCmdBuffers[i], 0, 1, &viewport);
|
|
|
|
|
VkRect2D scissor = vks::initializers::rect2D(width, height, 0, 0);
|
|
|
|
|
vkCmdSetScissor(drawCmdBuffers[i], 0, 1, &scissor);
|
|
|
|
|
|
|
|
|
|
vkCmdBindDescriptorSets(drawCmdBuffers[i], VK_PIPELINE_BIND_POINT_GRAPHICS, pipelineLayout, 0, 1, &descriptorSet, 0, NULL);
|
|
|
|
|
|
|
|
|
|
vkCmdBindPipeline(drawCmdBuffers[i], VK_PIPELINE_BIND_POINT_GRAPHICS, pipeline);
|
2020-05-29 16:08:53 +01:00
|
|
|
|
2018-09-03 21:57:26 +02:00
|
|
|
const VkDeviceSize offsets[1] = { 0 };
|
|
|
|
|
vkCmdBindVertexBuffers(drawCmdBuffers[i], 0, 1, &scene.vertices.buffer, offsets);
|
|
|
|
|
vkCmdBindIndexBuffer(drawCmdBuffers[i], scene.indices.buffer, 0, VK_INDEX_TYPE_UINT32);
|
|
|
|
|
for (auto node : scene.nodes) {
|
|
|
|
|
renderNode(node, drawCmdBuffers[i]);
|
2018-08-12 15:07:07 +02:00
|
|
|
}
|
|
|
|
|
|
2018-09-07 14:00:19 +02:00
|
|
|
drawUI(drawCmdBuffers[i]);
|
|
|
|
|
|
2018-08-12 15:07:07 +02:00
|
|
|
vkCmdEndRenderPass(drawCmdBuffers[i]);
|
|
|
|
|
|
|
|
|
|
VK_CHECK_RESULT(vkEndCommandBuffer(drawCmdBuffers[i]));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void loadAssets()
|
|
|
|
|
{
|
2018-09-05 21:09:39 +02:00
|
|
|
scene.loadFromFile(getAssetPath() + "models/gltf/glTF-Embedded/Buggy.gltf", vulkanDevice, queue);
|
2018-08-12 15:07:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void setupDescriptorSets()
|
|
|
|
|
{
|
|
|
|
|
std::vector<VkDescriptorPoolSize> poolSizes = {
|
|
|
|
|
vks::initializers::descriptorPoolSize(VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER, 1),
|
|
|
|
|
};
|
|
|
|
|
VkDescriptorPoolCreateInfo descriptorPoolCI = vks::initializers::descriptorPoolCreateInfo(poolSizes.size(), poolSizes.data(), 1);
|
|
|
|
|
VK_CHECK_RESULT(vkCreateDescriptorPool(device, &descriptorPoolCI, nullptr, &descriptorPool));
|
|
|
|
|
|
|
|
|
|
std::vector<VkDescriptorSetLayoutBinding> setLayoutBindings = {
|
|
|
|
|
vks::initializers::descriptorSetLayoutBinding(VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER, VK_SHADER_STAGE_VERTEX_BIT, 0),
|
|
|
|
|
};
|
|
|
|
|
VkDescriptorSetLayoutCreateInfo descriptorLayoutCI{};
|
|
|
|
|
descriptorLayoutCI.sType = VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_CREATE_INFO;
|
|
|
|
|
descriptorLayoutCI.bindingCount = static_cast<uint32_t>(setLayoutBindings.size());
|
|
|
|
|
descriptorLayoutCI.pBindings = setLayoutBindings.data();
|
|
|
|
|
VK_CHECK_RESULT(vkCreateDescriptorSetLayout(device, &descriptorLayoutCI, nullptr, &descriptorSetLayout));
|
|
|
|
|
|
2018-09-03 21:57:26 +02:00
|
|
|
std::array<VkDescriptorSetLayout, 2> setLayouts = {
|
2020-07-28 20:20:38 +02:00
|
|
|
descriptorSetLayout, vkglTF::descriptorSetLayoutUbo
|
2018-09-03 21:57:26 +02:00
|
|
|
};
|
|
|
|
|
VkPipelineLayoutCreateInfo pipelineLayoutCI = vks::initializers::pipelineLayoutCreateInfo(setLayouts.data(), 2);
|
2018-08-12 15:07:07 +02:00
|
|
|
VkPushConstantRange pushConstantRange = vks::initializers::pushConstantRange(VK_SHADER_STAGE_VERTEX_BIT, sizeof(glm::vec4) * 2, 0);
|
|
|
|
|
pipelineLayoutCI.pushConstantRangeCount = 1;
|
|
|
|
|
pipelineLayoutCI.pPushConstantRanges = &pushConstantRange;
|
|
|
|
|
VK_CHECK_RESULT(vkCreatePipelineLayout(device, &pipelineLayoutCI, nullptr, &pipelineLayout));
|
|
|
|
|
|
|
|
|
|
VkDescriptorSetAllocateInfo descriptorSetAllocateInfo = vks::initializers::descriptorSetAllocateInfo(descriptorPool, &descriptorSetLayout, 1);
|
|
|
|
|
VK_CHECK_RESULT(vkAllocateDescriptorSets(device, &descriptorSetAllocateInfo, &descriptorSet));
|
|
|
|
|
std::vector<VkWriteDescriptorSet> writeDescriptorSets = {
|
|
|
|
|
vks::initializers::writeDescriptorSet(descriptorSet, VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER, 0, &uniformBuffer.descriptor)
|
|
|
|
|
};
|
|
|
|
|
vkUpdateDescriptorSets(device, writeDescriptorSets.size(), writeDescriptorSets.data(), 0, NULL);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void preparePipelines()
|
|
|
|
|
{
|
|
|
|
|
const std::vector<VkDynamicState> dynamicStateEnables = { VK_DYNAMIC_STATE_VIEWPORT, VK_DYNAMIC_STATE_SCISSOR };
|
|
|
|
|
|
|
|
|
|
VkPipelineInputAssemblyStateCreateInfo inputAssemblyStateCI = vks::initializers::pipelineInputAssemblyStateCreateInfo(VK_PRIMITIVE_TOPOLOGY_TRIANGLE_LIST, 0, VK_FALSE);
|
2018-09-03 21:57:26 +02:00
|
|
|
VkPipelineRasterizationStateCreateInfo rasterizationStateCI = vks::initializers::pipelineRasterizationStateCreateInfo(VK_POLYGON_MODE_FILL, VK_CULL_MODE_BACK_BIT, VK_FRONT_FACE_COUNTER_CLOCKWISE, 0);
|
2018-08-12 15:07:07 +02:00
|
|
|
VkPipelineColorBlendAttachmentState blendAttachmentState = vks::initializers::pipelineColorBlendAttachmentState(0xf, VK_FALSE);
|
|
|
|
|
VkPipelineColorBlendStateCreateInfo colorBlendStateCI = vks::initializers::pipelineColorBlendStateCreateInfo(1, &blendAttachmentState);
|
|
|
|
|
VkPipelineDepthStencilStateCreateInfo depthStencilStateCI = vks::initializers::pipelineDepthStencilStateCreateInfo(VK_TRUE, VK_TRUE, VK_COMPARE_OP_LESS_OR_EQUAL);
|
|
|
|
|
VkPipelineViewportStateCreateInfo viewportStateCI = vks::initializers::pipelineViewportStateCreateInfo(1, 1, 0);
|
|
|
|
|
VkPipelineMultisampleStateCreateInfo multisampleStateCI = vks::initializers::pipelineMultisampleStateCreateInfo(VK_SAMPLE_COUNT_1_BIT, 0);
|
|
|
|
|
VkPipelineDynamicStateCreateInfo dynamicStateCI = vks::initializers::pipelineDynamicStateCreateInfo(dynamicStateEnables.data(), static_cast<uint32_t>(dynamicStateEnables.size()), 0);
|
|
|
|
|
|
2020-07-28 20:20:38 +02:00
|
|
|
VkGraphicsPipelineCreateInfo pipelineCI = vks::initializers::pipelineCreateInfo(pipelineLayout, renderPass, 0);
|
|
|
|
|
pipelineCI.pInputAssemblyState = &inputAssemblyStateCI;
|
|
|
|
|
pipelineCI.pRasterizationState = &rasterizationStateCI;
|
|
|
|
|
pipelineCI.pColorBlendState = &colorBlendStateCI;
|
|
|
|
|
pipelineCI.pMultisampleState = &multisampleStateCI;
|
|
|
|
|
pipelineCI.pViewportState = &viewportStateCI;
|
|
|
|
|
pipelineCI.pDepthStencilState = &depthStencilStateCI;
|
|
|
|
|
pipelineCI.pDynamicState = &dynamicStateCI;
|
|
|
|
|
pipelineCI.pVertexInputState = vkglTF::Vertex::getPipelineVertexInputState({ vkglTF::VertexComponent::Position, vkglTF::VertexComponent::Normal, vkglTF::VertexComponent::UV });
|
2018-08-12 15:07:07 +02:00
|
|
|
|
|
|
|
|
const std::array<VkPipelineShaderStageCreateInfo, 2> shaderStages = {
|
2020-05-29 16:08:53 +01:00
|
|
|
loadShader(getShadersPath() + "conditionalrender/model.vert.spv", VK_SHADER_STAGE_VERTEX_BIT),
|
|
|
|
|
loadShader(getShadersPath() + "conditionalrender/model.frag.spv", VK_SHADER_STAGE_FRAGMENT_BIT)
|
2018-08-12 15:07:07 +02:00
|
|
|
};
|
|
|
|
|
|
2020-07-28 20:20:38 +02:00
|
|
|
pipelineCI.stageCount = static_cast<uint32_t>(shaderStages.size());
|
|
|
|
|
pipelineCI.pStages = shaderStages.data();
|
2018-08-12 15:07:07 +02:00
|
|
|
|
2020-07-28 20:20:38 +02:00
|
|
|
VK_CHECK_RESULT(vkCreateGraphicsPipelines(device, pipelineCache, 1, &pipelineCI, nullptr, &pipeline));
|
2018-08-12 15:07:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void prepareUniformBuffers()
|
|
|
|
|
{
|
|
|
|
|
VK_CHECK_RESULT(vulkanDevice->createBuffer(
|
|
|
|
|
VK_BUFFER_USAGE_UNIFORM_BUFFER_BIT,
|
|
|
|
|
VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT | VK_MEMORY_PROPERTY_HOST_COHERENT_BIT,
|
|
|
|
|
&uniformBuffer,
|
|
|
|
|
sizeof(uboVS)));
|
|
|
|
|
VK_CHECK_RESULT(uniformBuffer.map());
|
|
|
|
|
updateUniformBuffers();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void updateUniformBuffers()
|
|
|
|
|
{
|
|
|
|
|
uboVS.projection = camera.matrices.perspective;
|
2018-09-04 21:18:14 +02:00
|
|
|
uboVS.view = glm::scale(camera.matrices.view, glm::vec3(0.1f , -0.1f, 0.1f));
|
|
|
|
|
uboVS.model = glm::translate(glm::mat4(1.0f), scene.dimensions.min);
|
2018-08-12 15:07:07 +02:00
|
|
|
memcpy(uniformBuffer.mapped, &uboVS, sizeof(uboVS));
|
|
|
|
|
}
|
|
|
|
|
|
2018-08-12 18:58:36 +02:00
|
|
|
void updateConditionalBuffer()
|
|
|
|
|
{
|
2018-09-03 21:57:26 +02:00
|
|
|
memcpy(conditionalBuffer.mapped, conditionalVisibility.data(), sizeof(int32_t) * conditionalVisibility.size());
|
2018-08-12 18:58:36 +02:00
|
|
|
}
|
|
|
|
|
|
2018-09-03 21:57:26 +02:00
|
|
|
/*
|
|
|
|
|
[POI] Extension specific setup
|
2018-08-12 15:07:07 +02:00
|
|
|
|
2020-08-08 13:59:58 +02:00
|
|
|
Gets the function pointers required for conditional rendering
|
2018-09-03 21:57:26 +02:00
|
|
|
Sets up a dedicated conditional buffer that is used to determine visibility at draw time
|
|
|
|
|
*/
|
|
|
|
|
void prepareConditionalRendering()
|
2018-08-12 15:07:07 +02:00
|
|
|
{
|
|
|
|
|
/*
|
2018-09-03 21:57:26 +02:00
|
|
|
The conditional rendering functions are part of an extension so they have to be loaded manually
|
2018-08-12 15:07:07 +02:00
|
|
|
*/
|
|
|
|
|
vkCmdBeginConditionalRenderingEXT = (PFN_vkCmdBeginConditionalRenderingEXT)vkGetDeviceProcAddr(device, "vkCmdBeginConditionalRenderingEXT");
|
|
|
|
|
if (!vkCmdBeginConditionalRenderingEXT) {
|
|
|
|
|
vks::tools::exitFatal("Could not get a valid function pointer for vkCmdBeginConditionalRenderingEXT", -1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
vkCmdEndConditionalRenderingEXT = (PFN_vkCmdEndConditionalRenderingEXT)vkGetDeviceProcAddr(device, "vkCmdEndConditionalRenderingEXT");
|
|
|
|
|
if (!vkCmdEndConditionalRenderingEXT) {
|
|
|
|
|
vks::tools::exitFatal("Could not get a valid function pointer for vkCmdEndConditionalRenderingEXT", -1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
Create the buffer that contains the conditional rendering information
|
2018-09-03 21:57:26 +02:00
|
|
|
|
2018-08-12 15:07:07 +02:00
|
|
|
A single conditional value is 32 bits and if it's zero the rendering commands are discarded
|
|
|
|
|
This sample renders multiple rows of objects conditionally, so we setup a buffer with one value per row
|
|
|
|
|
*/
|
2018-09-03 21:57:26 +02:00
|
|
|
conditionalVisibility.resize(scene.linearNodes.size());
|
2018-08-12 15:07:07 +02:00
|
|
|
VK_CHECK_RESULT(vulkanDevice->createBuffer(
|
|
|
|
|
VK_BUFFER_USAGE_CONDITIONAL_RENDERING_BIT_EXT,
|
|
|
|
|
VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT | VK_MEMORY_PROPERTY_HOST_COHERENT_BIT,
|
|
|
|
|
&conditionalBuffer,
|
2018-09-03 21:57:26 +02:00
|
|
|
sizeof(int32_t) *conditionalVisibility.size(),
|
|
|
|
|
conditionalVisibility.data()));
|
|
|
|
|
VK_CHECK_RESULT(conditionalBuffer.map());
|
2018-08-12 15:07:07 +02:00
|
|
|
|
2018-09-03 21:57:26 +02:00
|
|
|
// By default, all parts of the glTF are visible
|
2018-08-12 15:07:07 +02:00
|
|
|
for (auto i = 0; i < conditionalVisibility.size(); i++) {
|
2018-08-12 18:58:36 +02:00
|
|
|
conditionalVisibility[i] = 1;
|
2018-08-12 15:07:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
2018-09-03 21:57:26 +02:00
|
|
|
Copy visibility data
|
2018-08-12 15:07:07 +02:00
|
|
|
*/
|
2018-09-03 21:57:26 +02:00
|
|
|
updateConditionalBuffer();
|
|
|
|
|
}
|
2018-08-12 15:07:07 +02:00
|
|
|
|
2018-09-03 21:57:26 +02:00
|
|
|
void draw()
|
|
|
|
|
{
|
|
|
|
|
VulkanExampleBase::prepareFrame();
|
|
|
|
|
submitInfo.commandBufferCount = 1;
|
|
|
|
|
submitInfo.pCommandBuffers = &drawCmdBuffers[currentBuffer];
|
|
|
|
|
VK_CHECK_RESULT(vkQueueSubmit(queue, 1, &submitInfo, VK_NULL_HANDLE));
|
|
|
|
|
VulkanExampleBase::submitFrame();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void prepare()
|
|
|
|
|
{
|
|
|
|
|
VulkanExampleBase::prepare();
|
2018-08-12 15:07:07 +02:00
|
|
|
loadAssets();
|
2018-09-03 21:57:26 +02:00
|
|
|
prepareConditionalRendering();
|
2018-08-12 15:07:07 +02:00
|
|
|
prepareUniformBuffers();
|
|
|
|
|
setupDescriptorSets();
|
|
|
|
|
preparePipelines();
|
|
|
|
|
buildCommandBuffers();
|
|
|
|
|
prepared = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
virtual void render()
|
|
|
|
|
{
|
|
|
|
|
if (!prepared)
|
|
|
|
|
return;
|
|
|
|
|
draw();
|
2018-09-03 21:57:26 +02:00
|
|
|
if (camera.updated) {
|
|
|
|
|
updateUniformBuffers();
|
|
|
|
|
}
|
2018-08-12 15:07:07 +02:00
|
|
|
}
|
|
|
|
|
|
2022-06-13 23:04:53 -04:00
|
|
|
virtual void viewChanged()
|
|
|
|
|
{
|
|
|
|
|
updateUniformBuffers();
|
|
|
|
|
}
|
|
|
|
|
|
2018-08-12 15:07:07 +02:00
|
|
|
virtual void OnUpdateUIOverlay(vks::UIOverlay *overlay)
|
|
|
|
|
{
|
|
|
|
|
if (overlay->header("Visibility")) {
|
2018-09-03 21:57:26 +02:00
|
|
|
|
|
|
|
|
if (overlay->button("All")) {
|
|
|
|
|
for (auto i = 0; i < conditionalVisibility.size(); i++) {
|
|
|
|
|
conditionalVisibility[i] = 1;
|
|
|
|
|
}
|
|
|
|
|
updateConditionalBuffer();
|
|
|
|
|
}
|
|
|
|
|
ImGui::SameLine();
|
|
|
|
|
if (overlay->button("None")) {
|
|
|
|
|
for (auto i = 0; i < conditionalVisibility.size(); i++) {
|
|
|
|
|
conditionalVisibility[i] = 0;
|
|
|
|
|
}
|
|
|
|
|
updateConditionalBuffer();
|
|
|
|
|
}
|
|
|
|
|
ImGui::NewLine();
|
|
|
|
|
|
2022-07-12 18:46:39 -04:00
|
|
|
ImGui::BeginChild("InnerRegion", ImVec2(200.0f * overlay->scale, 400.0f * overlay->scale), false);
|
2018-09-03 21:57:26 +02:00
|
|
|
for (auto node : scene.linearNodes) {
|
|
|
|
|
// Add visibility toggle checkboxes for all model nodes with a mesh
|
|
|
|
|
if (node->mesh) {
|
|
|
|
|
if (overlay->checkBox(("[" + std::to_string(node->index) + "] " + node->mesh->name).c_str(), &conditionalVisibility[node->index])) {
|
|
|
|
|
updateConditionalBuffer();
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-08-12 15:07:07 +02:00
|
|
|
}
|
2018-09-04 21:18:14 +02:00
|
|
|
ImGui::EndChild();
|
2018-08-12 15:07:07 +02:00
|
|
|
|
2018-09-03 21:57:26 +02:00
|
|
|
}
|
2018-08-12 15:07:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
2022-07-12 18:46:39 -04:00
|
|
|
VULKAN_EXAMPLE_MAIN()
|