2016-02-16 15:07:25 +01:00
|
|
|
/*
|
|
|
|
|
* Vulkan Example - Using different pipelines in one single renderpass
|
|
|
|
|
*
|
|
|
|
|
* Copyright (C) 2016 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"
|
2016-02-16 15:07:25 +01:00
|
|
|
|
|
|
|
|
#define ENABLE_VALIDATION false
|
|
|
|
|
|
2020-05-29 16:08:53 +01:00
|
|
|
class VulkanExample: public VulkanExampleBase
|
2016-02-16 15:07:25 +01:00
|
|
|
{
|
|
|
|
|
public:
|
2020-07-28 20:20:38 +02:00
|
|
|
vkglTF::Model scene;
|
2016-02-16 15:07:25 +01:00
|
|
|
|
2017-02-12 10:44:51 +01:00
|
|
|
vks::Buffer uniformBuffer;
|
2016-02-16 15:07:25 +01:00
|
|
|
|
|
|
|
|
// Same uniform buffer layout as shader
|
2016-12-24 12:48:01 +01:00
|
|
|
struct UBOVS {
|
2016-05-26 19:43:27 +02:00
|
|
|
glm::mat4 projection;
|
|
|
|
|
glm::mat4 modelView;
|
|
|
|
|
glm::vec4 lightPos = glm::vec4(0.0f, 2.0f, 1.0f, 0.0f);
|
2016-02-16 15:07:25 +01:00
|
|
|
} uboVS;
|
|
|
|
|
|
|
|
|
|
VkPipelineLayout pipelineLayout;
|
|
|
|
|
VkDescriptorSet descriptorSet;
|
|
|
|
|
VkDescriptorSetLayout descriptorSetLayout;
|
|
|
|
|
|
|
|
|
|
struct {
|
2016-05-26 19:43:27 +02:00
|
|
|
VkPipeline phong;
|
|
|
|
|
VkPipeline wireframe;
|
|
|
|
|
VkPipeline toon;
|
2016-02-16 15:07:25 +01:00
|
|
|
} pipelines;
|
|
|
|
|
|
2016-12-14 20:17:15 +01:00
|
|
|
VulkanExample() : VulkanExampleBase(ENABLE_VALIDATION)
|
2016-02-16 15:07:25 +01:00
|
|
|
{
|
2017-11-01 14:22:10 +01:00
|
|
|
title = "Pipeline state objects";
|
2020-04-22 20:58:24 +02:00
|
|
|
camera.type = Camera::CameraType::lookat;
|
|
|
|
|
camera.setPosition(glm::vec3(0.0f, 0.0f, -10.5f));
|
|
|
|
|
camera.setRotation(glm::vec3(-25.0f, 15.0f, 0.0f));
|
|
|
|
|
camera.setRotationSpeed(0.5f);
|
|
|
|
|
camera.setPerspective(60.0f, (float)(width / 3.0f) / (float)height, 0.1f, 256.0f);
|
2017-11-01 14:22:10 +01:00
|
|
|
settings.overlay = true;
|
2016-02-16 15:07:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
~VulkanExample()
|
|
|
|
|
{
|
2020-05-29 16:08:53 +01:00
|
|
|
// Clean up used Vulkan resources
|
2016-02-16 15:07:25 +01:00
|
|
|
// Note : Inherited destructor cleans up resources stored in base class
|
2016-05-26 19:43:27 +02:00
|
|
|
vkDestroyPipeline(device, pipelines.phong, nullptr);
|
2016-05-16 12:26:11 +01:00
|
|
|
if (deviceFeatures.fillModeNonSolid)
|
|
|
|
|
{
|
2016-05-26 19:43:27 +02:00
|
|
|
vkDestroyPipeline(device, pipelines.wireframe, nullptr);
|
2016-05-16 12:26:11 +01:00
|
|
|
}
|
2016-05-26 19:43:27 +02:00
|
|
|
vkDestroyPipeline(device, pipelines.toon, nullptr);
|
2020-05-29 16:08:53 +01:00
|
|
|
|
2016-02-16 15:07:25 +01:00
|
|
|
vkDestroyPipelineLayout(device, pipelineLayout, nullptr);
|
|
|
|
|
vkDestroyDescriptorSetLayout(device, descriptorSetLayout, nullptr);
|
|
|
|
|
|
2016-12-24 12:48:01 +01:00
|
|
|
uniformBuffer.destroy();
|
2016-02-16 15:07:25 +01:00
|
|
|
}
|
|
|
|
|
|
2020-05-29 16:08:53 +01:00
|
|
|
// Enable physical device features required for this example
|
2017-03-09 20:36:51 +01:00
|
|
|
virtual void getEnabledFeatures()
|
|
|
|
|
{
|
|
|
|
|
// Fill mode non solid is required for wireframe display
|
|
|
|
|
if (deviceFeatures.fillModeNonSolid) {
|
|
|
|
|
enabledFeatures.fillModeNonSolid = VK_TRUE;
|
|
|
|
|
// Wide lines must be present for line width > 1.0f
|
|
|
|
|
if (deviceFeatures.wideLines) {
|
|
|
|
|
enabledFeatures.wideLines = VK_TRUE;
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
2016-02-16 15:07:25 +01:00
|
|
|
void buildCommandBuffers()
|
2020-05-29 16:08:53 +01:00
|
|
|
{
|
2017-02-12 11:12:42 +01:00
|
|
|
VkCommandBufferBeginInfo cmdBufInfo = vks::initializers::commandBufferBeginInfo();
|
2016-02-16 15:07:25 +01:00
|
|
|
|
|
|
|
|
VkClearValue clearValues[2];
|
|
|
|
|
clearValues[0].color = defaultClearColor;
|
|
|
|
|
clearValues[1].depthStencil = { 1.0f, 0 };
|
|
|
|
|
|
2017-02-12 11:12:42 +01:00
|
|
|
VkRenderPassBeginInfo renderPassBeginInfo = vks::initializers::renderPassBeginInfo();
|
2016-02-16 15:07:25 +01:00
|
|
|
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;
|
|
|
|
|
|
|
|
|
|
for (int32_t i = 0; i < drawCmdBuffers.size(); ++i)
|
|
|
|
|
{
|
|
|
|
|
// Set target frame buffer
|
|
|
|
|
renderPassBeginInfo.framebuffer = frameBuffers[i];
|
|
|
|
|
|
2016-05-26 16:29:32 +02:00
|
|
|
VK_CHECK_RESULT(vkBeginCommandBuffer(drawCmdBuffers[i], &cmdBufInfo));
|
2016-02-16 15:07:25 +01:00
|
|
|
|
|
|
|
|
vkCmdBeginRenderPass(drawCmdBuffers[i], &renderPassBeginInfo, VK_SUBPASS_CONTENTS_INLINE);
|
|
|
|
|
|
2017-02-12 11:12:42 +01:00
|
|
|
VkViewport viewport = vks::initializers::viewport((float)width, (float)height, 0.0f, 1.0f);
|
2016-02-16 15:07:25 +01:00
|
|
|
vkCmdSetViewport(drawCmdBuffers[i], 0, 1, &viewport);
|
|
|
|
|
|
2017-02-12 11:12:42 +01:00
|
|
|
VkRect2D scissor = vks::initializers::rect2D(width, height, 0, 0);
|
2016-02-16 15:07:25 +01:00
|
|
|
vkCmdSetScissor(drawCmdBuffers[i], 0, 1, &scissor);
|
|
|
|
|
|
|
|
|
|
vkCmdBindDescriptorSets(drawCmdBuffers[i], VK_PIPELINE_BIND_POINT_GRAPHICS, pipelineLayout, 0, 1, &descriptorSet, 0, NULL);
|
2020-07-28 20:20:38 +02:00
|
|
|
scene.bindBuffers(drawCmdBuffers[i]);
|
2016-02-16 15:07:25 +01:00
|
|
|
|
2020-05-29 16:08:53 +01:00
|
|
|
// Left : Solid colored
|
2016-02-16 15:07:25 +01:00
|
|
|
viewport.width = (float)width / 3.0;
|
|
|
|
|
vkCmdSetViewport(drawCmdBuffers[i], 0, 1, &viewport);
|
2016-05-26 19:43:27 +02:00
|
|
|
vkCmdBindPipeline(drawCmdBuffers[i], VK_PIPELINE_BIND_POINT_GRAPHICS, pipelines.phong);
|
2020-07-28 20:20:38 +02:00
|
|
|
scene.draw(drawCmdBuffers[i]);
|
2016-02-16 15:07:25 +01:00
|
|
|
|
2016-05-26 19:43:27 +02:00
|
|
|
// Center : Toon
|
2016-02-16 15:07:25 +01:00
|
|
|
viewport.x = (float)width / 3.0;
|
|
|
|
|
vkCmdSetViewport(drawCmdBuffers[i], 0, 1, &viewport);
|
2016-05-26 19:43:27 +02:00
|
|
|
vkCmdBindPipeline(drawCmdBuffers[i], VK_PIPELINE_BIND_POINT_GRAPHICS, pipelines.toon);
|
2017-03-09 20:36:51 +01:00
|
|
|
// Line width > 1.0f only if wide lines feature is supported
|
|
|
|
|
if (deviceFeatures.wideLines) {
|
|
|
|
|
vkCmdSetLineWidth(drawCmdBuffers[i], 2.0f);
|
|
|
|
|
}
|
2020-07-28 20:20:38 +02:00
|
|
|
scene.draw(drawCmdBuffers[i]);
|
2016-02-16 15:07:25 +01:00
|
|
|
|
2016-05-16 12:26:11 +01:00
|
|
|
if (deviceFeatures.fillModeNonSolid)
|
|
|
|
|
{
|
2020-05-29 16:08:53 +01:00
|
|
|
// Right : Wireframe
|
2016-05-16 12:26:11 +01:00
|
|
|
viewport.x = (float)width / 3.0 + (float)width / 3.0;
|
|
|
|
|
vkCmdSetViewport(drawCmdBuffers[i], 0, 1, &viewport);
|
2016-05-26 19:43:27 +02:00
|
|
|
vkCmdBindPipeline(drawCmdBuffers[i], VK_PIPELINE_BIND_POINT_GRAPHICS, pipelines.wireframe);
|
2020-07-28 20:20:38 +02:00
|
|
|
scene.draw(drawCmdBuffers[i]);
|
2016-05-16 12:26:11 +01:00
|
|
|
}
|
2016-02-16 15:07:25 +01:00
|
|
|
|
2018-08-30 21:08:02 +02:00
|
|
|
drawUI(drawCmdBuffers[i]);
|
|
|
|
|
|
2016-02-16 15:07:25 +01:00
|
|
|
vkCmdEndRenderPass(drawCmdBuffers[i]);
|
|
|
|
|
|
2016-05-26 16:29:32 +02:00
|
|
|
VK_CHECK_RESULT(vkEndCommandBuffer(drawCmdBuffers[i]));
|
2016-02-16 15:07:25 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-02-11 14:18:24 +01:00
|
|
|
void loadAssets()
|
2016-02-16 15:07:25 +01:00
|
|
|
{
|
2020-07-28 20:20:38 +02:00
|
|
|
const uint32_t glTFLoadingFlags = vkglTF::FileLoadingFlags::PreTransformVertices | vkglTF::FileLoadingFlags::PreMultiplyVertexColors | vkglTF::FileLoadingFlags::FlipY;
|
|
|
|
|
scene.loadFromFile(getAssetPath() + "models/treasure_smooth.gltf", vulkanDevice, queue, glTFLoadingFlags);
|
2016-02-16 15:07:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void setupDescriptorPool()
|
|
|
|
|
{
|
|
|
|
|
std::vector<VkDescriptorPoolSize> poolSizes =
|
|
|
|
|
{
|
2017-02-12 11:12:42 +01:00
|
|
|
vks::initializers::descriptorPoolSize(VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER, 1)
|
2016-02-16 15:07:25 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
VkDescriptorPoolCreateInfo descriptorPoolInfo =
|
2017-02-12 11:12:42 +01:00
|
|
|
vks::initializers::descriptorPoolCreateInfo(
|
2016-02-16 15:07:25 +01:00
|
|
|
poolSizes.size(),
|
|
|
|
|
poolSizes.data(),
|
|
|
|
|
2);
|
|
|
|
|
|
2016-05-26 16:29:32 +02:00
|
|
|
VK_CHECK_RESULT(vkCreateDescriptorPool(device, &descriptorPoolInfo, nullptr, &descriptorPool));
|
2016-02-16 15:07:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void setupDescriptorSetLayout()
|
|
|
|
|
{
|
|
|
|
|
std::vector<VkDescriptorSetLayoutBinding> setLayoutBindings =
|
|
|
|
|
{
|
|
|
|
|
// Binding 0 : Vertex shader uniform buffer
|
2017-02-12 11:12:42 +01:00
|
|
|
vks::initializers::descriptorSetLayoutBinding(
|
2016-02-16 15:07:25 +01:00
|
|
|
VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER,
|
|
|
|
|
VK_SHADER_STAGE_VERTEX_BIT,
|
2016-05-26 19:57:37 +02:00
|
|
|
0)
|
2016-02-16 15:07:25 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
VkDescriptorSetLayoutCreateInfo descriptorLayout =
|
2017-02-12 11:12:42 +01:00
|
|
|
vks::initializers::descriptorSetLayoutCreateInfo(
|
2016-02-16 15:07:25 +01:00
|
|
|
setLayoutBindings.data(),
|
|
|
|
|
setLayoutBindings.size());
|
|
|
|
|
|
2016-05-26 16:29:32 +02:00
|
|
|
VK_CHECK_RESULT(vkCreateDescriptorSetLayout(device, &descriptorLayout, nullptr, &descriptorSetLayout));
|
2016-02-16 15:07:25 +01:00
|
|
|
|
|
|
|
|
VkPipelineLayoutCreateInfo pPipelineLayoutCreateInfo =
|
2017-02-12 11:12:42 +01:00
|
|
|
vks::initializers::pipelineLayoutCreateInfo(
|
2016-02-16 15:07:25 +01:00
|
|
|
&descriptorSetLayout,
|
|
|
|
|
1);
|
|
|
|
|
|
2016-05-26 16:29:32 +02:00
|
|
|
VK_CHECK_RESULT(vkCreatePipelineLayout(device, &pPipelineLayoutCreateInfo, nullptr, &pipelineLayout));
|
2016-02-16 15:07:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void setupDescriptorSet()
|
|
|
|
|
{
|
|
|
|
|
VkDescriptorSetAllocateInfo allocInfo =
|
2017-02-12 11:12:42 +01:00
|
|
|
vks::initializers::descriptorSetAllocateInfo(
|
2016-02-16 15:07:25 +01:00
|
|
|
descriptorPool,
|
|
|
|
|
&descriptorSetLayout,
|
|
|
|
|
1);
|
|
|
|
|
|
2016-05-26 16:29:32 +02:00
|
|
|
VK_CHECK_RESULT(vkAllocateDescriptorSets(device, &allocInfo, &descriptorSet));
|
2016-02-16 15:07:25 +01:00
|
|
|
|
|
|
|
|
std::vector<VkWriteDescriptorSet> writeDescriptorSets =
|
|
|
|
|
{
|
|
|
|
|
// Binding 0 : Vertex shader uniform buffer
|
2017-02-12 11:12:42 +01:00
|
|
|
vks::initializers::writeDescriptorSet(
|
2016-05-26 16:29:32 +02:00
|
|
|
descriptorSet,
|
2016-02-16 15:07:25 +01:00
|
|
|
VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER,
|
|
|
|
|
0,
|
2016-12-24 12:48:01 +01:00
|
|
|
&uniformBuffer.descriptor)
|
2016-02-16 15:07:25 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
vkUpdateDescriptorSets(device, writeDescriptorSets.size(), writeDescriptorSets.data(), 0, NULL);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void preparePipelines()
|
|
|
|
|
{
|
2020-07-28 20:20:38 +02:00
|
|
|
VkPipelineInputAssemblyStateCreateInfo inputAssemblyState = vks::initializers::pipelineInputAssemblyStateCreateInfo(VK_PRIMITIVE_TOPOLOGY_TRIANGLE_LIST, 0, VK_FALSE);
|
|
|
|
|
VkPipelineRasterizationStateCreateInfo rasterizationState = vks::initializers::pipelineRasterizationStateCreateInfo(VK_POLYGON_MODE_FILL, VK_CULL_MODE_BACK_BIT, VK_FRONT_FACE_COUNTER_CLOCKWISE, 0);
|
|
|
|
|
VkPipelineColorBlendAttachmentState blendAttachmentState = vks::initializers::pipelineColorBlendAttachmentState(0xf, VK_FALSE);
|
|
|
|
|
VkPipelineColorBlendStateCreateInfo colorBlendState = vks::initializers::pipelineColorBlendStateCreateInfo(1, &blendAttachmentState);
|
|
|
|
|
VkPipelineDepthStencilStateCreateInfo depthStencilState = vks::initializers::pipelineDepthStencilStateCreateInfo(VK_TRUE, VK_TRUE, VK_COMPARE_OP_LESS_OR_EQUAL);
|
|
|
|
|
VkPipelineViewportStateCreateInfo viewportState = vks::initializers::pipelineViewportStateCreateInfo(1, 1, 0);
|
|
|
|
|
VkPipelineMultisampleStateCreateInfo multisampleState = vks::initializers::pipelineMultisampleStateCreateInfo(VK_SAMPLE_COUNT_1_BIT);
|
|
|
|
|
std::vector<VkDynamicState> dynamicStateEnables = { VK_DYNAMIC_STATE_VIEWPORT, VK_DYNAMIC_STATE_SCISSOR, VK_DYNAMIC_STATE_LINE_WIDTH, };
|
|
|
|
|
VkPipelineDynamicStateCreateInfo dynamicState = vks::initializers::pipelineDynamicStateCreateInfo(dynamicStateEnables);
|
2017-03-09 20:36:51 +01:00
|
|
|
std::array<VkPipelineShaderStageCreateInfo, 2> shaderStages;
|
2016-02-16 15:07:25 +01:00
|
|
|
|
2020-07-28 20:20:38 +02:00
|
|
|
VkGraphicsPipelineCreateInfo pipelineCI = vks::initializers::pipelineCreateInfo(pipelineLayout, renderPass);
|
|
|
|
|
pipelineCI.pInputAssemblyState = &inputAssemblyState;
|
|
|
|
|
pipelineCI.pRasterizationState = &rasterizationState;
|
|
|
|
|
pipelineCI.pColorBlendState = &colorBlendState;
|
|
|
|
|
pipelineCI.pMultisampleState = &multisampleState;
|
|
|
|
|
pipelineCI.pViewportState = &viewportState;
|
|
|
|
|
pipelineCI.pDepthStencilState = &depthStencilState;
|
|
|
|
|
pipelineCI.pDynamicState = &dynamicState;
|
|
|
|
|
pipelineCI.stageCount = shaderStages.size();
|
|
|
|
|
pipelineCI.pStages = shaderStages.data();
|
|
|
|
|
pipelineCI.pVertexInputState = vkglTF::Vertex::getPipelineVertexInputState({vkglTF::VertexComponent::Position, vkglTF::VertexComponent::Normal, vkglTF::VertexComponent::Color});
|
2017-03-09 20:36:51 +01:00
|
|
|
|
|
|
|
|
// Create the graphics pipeline state objects
|
|
|
|
|
|
2016-05-26 19:43:27 +02:00
|
|
|
// We are using this pipeline as the base for the other pipelines (derivatives)
|
|
|
|
|
// Pipeline derivatives can be used for pipelines that share most of their state
|
2020-05-29 16:08:53 +01:00
|
|
|
// Depending on the implementation this may result in better performance for pipeline
|
2020-08-09 13:16:35 +02:00
|
|
|
// switching and faster creation time
|
2020-07-28 20:20:38 +02:00
|
|
|
pipelineCI.flags = VK_PIPELINE_CREATE_ALLOW_DERIVATIVES_BIT;
|
2016-05-26 19:43:27 +02:00
|
|
|
|
2016-02-16 15:07:25 +01:00
|
|
|
// Textured pipeline
|
2017-03-09 20:36:51 +01:00
|
|
|
// Phong shading pipeline
|
2020-05-29 16:08:53 +01:00
|
|
|
shaderStages[0] = loadShader(getShadersPath() + "pipelines/phong.vert.spv", VK_SHADER_STAGE_VERTEX_BIT);
|
|
|
|
|
shaderStages[1] = loadShader(getShadersPath() + "pipelines/phong.frag.spv", VK_SHADER_STAGE_FRAGMENT_BIT);
|
2020-07-28 20:20:38 +02:00
|
|
|
VK_CHECK_RESULT(vkCreateGraphicsPipelines(device, pipelineCache, 1, &pipelineCI, nullptr, &pipelines.phong));
|
2016-02-16 15:07:25 +01:00
|
|
|
|
2016-05-26 19:43:27 +02:00
|
|
|
// All pipelines created after the base pipeline will be derivatives
|
2020-07-28 20:20:38 +02:00
|
|
|
pipelineCI.flags = VK_PIPELINE_CREATE_DERIVATIVE_BIT;
|
2016-05-26 19:43:27 +02:00
|
|
|
// Base pipeline will be our first created pipeline
|
2020-07-28 20:20:38 +02:00
|
|
|
pipelineCI.basePipelineHandle = pipelines.phong;
|
2016-05-26 19:43:27 +02:00
|
|
|
// It's only allowed to either use a handle or index for the base pipeline
|
|
|
|
|
// As we use the handle, we must set the index to -1 (see section 9.5 of the specification)
|
2020-07-28 20:20:38 +02:00
|
|
|
pipelineCI.basePipelineIndex = -1;
|
2016-02-16 15:07:25 +01:00
|
|
|
|
2016-05-26 19:43:27 +02:00
|
|
|
// Toon shading pipeline
|
2020-05-29 16:08:53 +01:00
|
|
|
shaderStages[0] = loadShader(getShadersPath() + "pipelines/toon.vert.spv", VK_SHADER_STAGE_VERTEX_BIT);
|
|
|
|
|
shaderStages[1] = loadShader(getShadersPath() + "pipelines/toon.frag.spv", VK_SHADER_STAGE_FRAGMENT_BIT);
|
2020-07-28 20:20:38 +02:00
|
|
|
VK_CHECK_RESULT(vkCreateGraphicsPipelines(device, pipelineCache, 1, &pipelineCI, nullptr, &pipelines.toon));
|
2016-02-16 15:07:25 +01:00
|
|
|
|
2017-03-09 20:36:51 +01:00
|
|
|
// Pipeline for wire frame rendering
|
2016-05-26 16:29:32 +02:00
|
|
|
// Non solid rendering is not a mandatory Vulkan feature
|
2016-05-16 12:26:11 +01:00
|
|
|
if (deviceFeatures.fillModeNonSolid)
|
|
|
|
|
{
|
|
|
|
|
rasterizationState.polygonMode = VK_POLYGON_MODE_LINE;
|
2020-05-29 16:08:53 +01:00
|
|
|
shaderStages[0] = loadShader(getShadersPath() + "pipelines/wireframe.vert.spv", VK_SHADER_STAGE_VERTEX_BIT);
|
|
|
|
|
shaderStages[1] = loadShader(getShadersPath() + "pipelines/wireframe.frag.spv", VK_SHADER_STAGE_FRAGMENT_BIT);
|
2020-07-28 20:20:38 +02:00
|
|
|
VK_CHECK_RESULT(vkCreateGraphicsPipelines(device, pipelineCache, 1, &pipelineCI, nullptr, &pipelines.wireframe));
|
2016-05-16 12:26:11 +01:00
|
|
|
}
|
2016-02-16 15:07:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Prepare and initialize uniform buffer containing shader uniforms
|
|
|
|
|
void prepareUniformBuffers()
|
|
|
|
|
{
|
2016-05-26 16:29:32 +02:00
|
|
|
// Create the vertex shader uniform buffer block
|
2016-12-24 12:48:01 +01:00
|
|
|
VK_CHECK_RESULT(vulkanDevice->createBuffer(
|
2016-02-16 15:07:25 +01:00
|
|
|
VK_BUFFER_USAGE_UNIFORM_BUFFER_BIT,
|
2016-05-26 16:29:32 +02:00
|
|
|
VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT | VK_MEMORY_PROPERTY_HOST_COHERENT_BIT,
|
2016-12-24 12:48:01 +01:00
|
|
|
&uniformBuffer,
|
|
|
|
|
sizeof(uboVS)));
|
|
|
|
|
|
|
|
|
|
// Map persistent
|
|
|
|
|
VK_CHECK_RESULT(uniformBuffer.map());
|
2016-02-16 15:07:25 +01:00
|
|
|
|
|
|
|
|
updateUniformBuffers();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void updateUniformBuffers()
|
|
|
|
|
{
|
2020-04-22 20:58:24 +02:00
|
|
|
uboVS.projection = camera.matrices.perspective;
|
|
|
|
|
uboVS.modelView = camera.matrices.view;
|
2016-12-24 12:48:01 +01:00
|
|
|
memcpy(uniformBuffer.mapped, &uboVS, sizeof(uboVS));
|
2016-05-26 16:29:32 +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();
|
2016-02-16 15:07:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void prepare()
|
|
|
|
|
{
|
|
|
|
|
VulkanExampleBase::prepare();
|
2017-02-11 14:18:24 +01:00
|
|
|
loadAssets();
|
2016-02-16 15:07:25 +01:00
|
|
|
prepareUniformBuffers();
|
|
|
|
|
setupDescriptorSetLayout();
|
|
|
|
|
preparePipelines();
|
|
|
|
|
setupDescriptorPool();
|
|
|
|
|
setupDescriptorSet();
|
|
|
|
|
buildCommandBuffers();
|
|
|
|
|
prepared = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
virtual void render()
|
|
|
|
|
{
|
|
|
|
|
if (!prepared)
|
|
|
|
|
return;
|
|
|
|
|
draw();
|
2020-07-28 20:20:38 +02:00
|
|
|
if (camera.updated) {
|
|
|
|
|
updateUniformBuffers();
|
|
|
|
|
}
|
2016-02-16 15:07:25 +01:00
|
|
|
}
|
|
|
|
|
|
2017-11-01 14:22:10 +01:00
|
|
|
virtual void OnUpdateUIOverlay(vks::UIOverlay *overlay)
|
2016-05-26 19:43:27 +02:00
|
|
|
{
|
2017-03-09 20:36:51 +01:00
|
|
|
if (!deviceFeatures.fillModeNonSolid) {
|
2017-11-01 14:22:10 +01:00
|
|
|
if (overlay->header("Info")) {
|
|
|
|
|
overlay->text("Non solid fill modes not supported!");
|
|
|
|
|
}
|
2017-03-09 20:36:51 +01:00
|
|
|
}
|
2016-05-26 19:43:27 +02:00
|
|
|
}
|
2016-02-16 15:07:25 +01:00
|
|
|
};
|
|
|
|
|
|
2016-12-13 19:25:56 +01:00
|
|
|
VULKAN_EXAMPLE_MAIN()
|