2016-02-16 15:07:25 +01:00
|
|
|
/*
|
|
|
|
|
* Vulkan Example - Displacement mapping with tessellation shaders
|
|
|
|
|
*
|
|
|
|
|
* Copyright (C) 2016 by Sascha Willems - www.saschawillems.de
|
|
|
|
|
*
|
|
|
|
|
* This code is licensed under the MIT license (MIT) (http://opensource.org/licenses/MIT)
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
#include <assert.h>
|
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
|
|
#define GLM_FORCE_RADIANS
|
2016-03-08 21:52:40 +01:00
|
|
|
#define GLM_FORCE_DEPTH_ZERO_TO_ONE
|
2016-02-16 15:07:25 +01:00
|
|
|
#include <glm/glm.hpp>
|
|
|
|
|
#include <glm/gtc/matrix_transform.hpp>
|
|
|
|
|
#include <gli/gli.hpp>
|
|
|
|
|
|
|
|
|
|
#include <vulkan/vulkan.h>
|
|
|
|
|
#include "vulkanexamplebase.h"
|
2017-02-09 21:55:35 +01:00
|
|
|
#include "VulkanTexture.hpp"
|
2017-02-11 14:18:24 +01:00
|
|
|
#include "VulkanModel.hpp"
|
2017-02-12 10:44:51 +01:00
|
|
|
#include "VulkanBuffer.hpp"
|
2016-02-16 15:07:25 +01:00
|
|
|
|
|
|
|
|
#define VERTEX_BUFFER_BIND_ID 0
|
|
|
|
|
#define ENABLE_VALIDATION false
|
|
|
|
|
|
|
|
|
|
class VulkanExample : public VulkanExampleBase
|
|
|
|
|
{
|
|
|
|
|
private:
|
|
|
|
|
struct {
|
2017-02-09 21:55:35 +01:00
|
|
|
vks::Texture2D colorHeightMap;
|
2016-02-16 15:07:25 +01:00
|
|
|
} textures;
|
|
|
|
|
public:
|
|
|
|
|
bool splitScreen = true;
|
2016-06-06 14:28:13 +02:00
|
|
|
bool displacement = true;
|
2016-02-16 15:07:25 +01:00
|
|
|
|
|
|
|
|
struct {
|
|
|
|
|
VkPipelineVertexInputStateCreateInfo inputState;
|
|
|
|
|
std::vector<VkVertexInputBindingDescription> bindingDescriptions;
|
|
|
|
|
std::vector<VkVertexInputAttributeDescription> attributeDescriptions;
|
|
|
|
|
} vertices;
|
|
|
|
|
|
2017-02-11 14:18:24 +01:00
|
|
|
// Vertex layout for the models
|
|
|
|
|
vks::VertexLayout vertexLayout = vks::VertexLayout({
|
|
|
|
|
vks::VERTEX_COMPONENT_POSITION,
|
|
|
|
|
vks::VERTEX_COMPONENT_NORMAL,
|
|
|
|
|
vks::VERTEX_COMPONENT_UV,
|
|
|
|
|
});
|
|
|
|
|
|
2016-02-16 15:07:25 +01:00
|
|
|
struct {
|
2017-02-11 14:18:24 +01:00
|
|
|
vks::Model object;
|
|
|
|
|
} models;
|
2016-02-16 15:07:25 +01:00
|
|
|
|
|
|
|
|
struct {
|
2017-02-12 10:44:51 +01:00
|
|
|
vks::Buffer tessControl, tessEval;
|
2016-12-24 12:48:01 +01:00
|
|
|
} uniformBuffers;
|
|
|
|
|
|
|
|
|
|
struct UBOTessControl {
|
2016-06-06 14:28:13 +02:00
|
|
|
float tessLevel = 64.0f;
|
2016-12-24 12:48:01 +01:00
|
|
|
} uboTessControl;
|
2016-02-16 15:07:25 +01:00
|
|
|
|
2016-12-24 12:48:01 +01:00
|
|
|
struct UBOTessEval {
|
2016-02-16 15:07:25 +01:00
|
|
|
glm::mat4 projection;
|
|
|
|
|
glm::mat4 model;
|
2016-06-06 14:28:13 +02:00
|
|
|
glm::vec4 lightPos = glm::vec4(0.0f, -1.0f, 0.0f, 0.0f);
|
|
|
|
|
float tessAlpha = 1.0f;
|
|
|
|
|
float tessStrength = 0.1f;
|
2016-12-24 12:48:01 +01:00
|
|
|
} uboTessEval;
|
2016-02-16 15:07:25 +01:00
|
|
|
|
2017-03-17 18:21:15 +01:00
|
|
|
struct Pipelines {
|
2016-02-16 15:07:25 +01:00
|
|
|
VkPipeline solid;
|
2017-03-17 18:21:15 +01:00
|
|
|
VkPipeline wireframe = VK_NULL_HANDLE;
|
2016-02-16 15:07:25 +01:00
|
|
|
} pipelines;
|
|
|
|
|
|
|
|
|
|
VkPipelineLayout pipelineLayout;
|
|
|
|
|
VkDescriptorSet descriptorSet;
|
|
|
|
|
VkDescriptorSetLayout descriptorSetLayout;
|
|
|
|
|
|
|
|
|
|
VulkanExample() : VulkanExampleBase(ENABLE_VALIDATION)
|
|
|
|
|
{
|
2016-06-06 14:28:13 +02:00
|
|
|
zoom = -1.25f;
|
|
|
|
|
rotation = glm::vec3(-20.0f, 45.0f, 0.0f);
|
2017-11-01 14:22:10 +01:00
|
|
|
title = "Tessellation shader displacement";
|
|
|
|
|
settings.overlay = true;
|
2016-02-16 15:07:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
~VulkanExample()
|
|
|
|
|
{
|
|
|
|
|
// Clean up used Vulkan resources
|
|
|
|
|
// Note : Inherited destructor cleans up resources stored in base class
|
|
|
|
|
vkDestroyPipeline(device, pipelines.solid, nullptr);
|
2017-03-17 18:21:15 +01:00
|
|
|
if (pipelines.wireframe != VK_NULL_HANDLE) {
|
|
|
|
|
vkDestroyPipeline(device, pipelines.wireframe, nullptr);
|
|
|
|
|
};
|
2016-02-16 15:07:25 +01:00
|
|
|
|
|
|
|
|
vkDestroyPipelineLayout(device, pipelineLayout, nullptr);
|
|
|
|
|
vkDestroyDescriptorSetLayout(device, descriptorSetLayout, nullptr);
|
|
|
|
|
|
2016-12-24 12:48:01 +01:00
|
|
|
uniformBuffers.tessControl.destroy();
|
|
|
|
|
uniformBuffers.tessEval.destroy();
|
2017-02-11 14:18:24 +01:00
|
|
|
models.object.destroy();
|
2017-02-09 21:55:35 +01:00
|
|
|
textures.colorHeightMap.destroy();
|
2016-02-16 15:07:25 +01:00
|
|
|
}
|
|
|
|
|
|
2017-03-17 18:21:15 +01:00
|
|
|
// Enable physical device features required for this example
|
|
|
|
|
virtual void getEnabledFeatures()
|
|
|
|
|
{
|
2017-03-17 20:48:13 +01:00
|
|
|
// Tessellation shader support is required for this example
|
|
|
|
|
if (deviceFeatures.tessellationShader) {
|
|
|
|
|
enabledFeatures.tessellationShader = VK_TRUE;
|
2017-03-17 18:21:15 +01:00
|
|
|
}
|
|
|
|
|
else {
|
2018-01-21 18:28:17 +01:00
|
|
|
vks::tools::exitFatal("Selected GPU does not support tessellation shaders!", VK_ERROR_FEATURE_NOT_PRESENT);
|
2017-03-17 18:21:15 +01:00
|
|
|
}
|
|
|
|
|
// Fill mode non solid is required for wireframe display
|
|
|
|
|
if (deviceFeatures.fillModeNonSolid) {
|
|
|
|
|
enabledFeatures.fillModeNonSolid = VK_TRUE;
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
splitScreen = false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-02-09 21:55:35 +01:00
|
|
|
void loadAssets()
|
2016-02-16 15:07:25 +01:00
|
|
|
{
|
2017-02-11 14:18:24 +01:00
|
|
|
models.object.loadFromFile(getAssetPath() + "models/plane.obj", vertexLayout, 0.25f, vulkanDevice, queue);
|
2017-03-17 18:21:15 +01:00
|
|
|
// Textures
|
|
|
|
|
if (vulkanDevice->features.textureCompressionBC) {
|
|
|
|
|
textures.colorHeightMap.loadFromFile(getAssetPath() + "textures/stonefloor03_color_bc3_unorm.ktx", VK_FORMAT_BC3_UNORM_BLOCK, vulkanDevice, queue);
|
|
|
|
|
}
|
|
|
|
|
else if (vulkanDevice->features.textureCompressionASTC_LDR) {
|
|
|
|
|
textures.colorHeightMap.loadFromFile(getAssetPath() + "textures/stonefloor03_color_astc_8x8_unorm.ktx", VK_FORMAT_ASTC_8x8_UNORM_BLOCK, vulkanDevice, queue);
|
|
|
|
|
}
|
|
|
|
|
else if (vulkanDevice->features.textureCompressionETC2) {
|
|
|
|
|
textures.colorHeightMap.loadFromFile(getAssetPath() + "textures/stonefloor03_color_etc2_unorm.ktx", VK_FORMAT_ETC2_R8G8B8_UNORM_BLOCK, vulkanDevice, queue);
|
|
|
|
|
}
|
|
|
|
|
else {
|
2018-01-21 18:28:17 +01:00
|
|
|
vks::tools::exitFatal("Device does not support any compressed texture format!", VK_ERROR_FEATURE_NOT_PRESENT);
|
2017-03-17 18:21:15 +01:00
|
|
|
}
|
2016-02-16 15:07:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void buildCommandBuffers()
|
|
|
|
|
{
|
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-06-06 11:35:04 +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(splitScreen ? width / 2 : width, height, 0, 0);
|
2016-02-16 15:07:25 +01:00
|
|
|
vkCmdSetScissor(drawCmdBuffers[i], 0, 1, &scissor);
|
|
|
|
|
|
|
|
|
|
vkCmdSetLineWidth(drawCmdBuffers[i], 1.0f);
|
|
|
|
|
|
|
|
|
|
vkCmdBindDescriptorSets(drawCmdBuffers[i], VK_PIPELINE_BIND_POINT_GRAPHICS, pipelineLayout, 0, 1, &descriptorSet, 0, NULL);
|
|
|
|
|
|
|
|
|
|
VkDeviceSize offsets[1] = { 0 };
|
2017-02-11 14:18:24 +01:00
|
|
|
vkCmdBindVertexBuffers(drawCmdBuffers[i], VERTEX_BUFFER_BIND_ID, 1, &models.object.vertices.buffer, offsets);
|
|
|
|
|
vkCmdBindIndexBuffer(drawCmdBuffers[i], models.object.indices.buffer, 0, VK_INDEX_TYPE_UINT32);
|
2016-02-16 15:07:25 +01:00
|
|
|
|
|
|
|
|
if (splitScreen)
|
|
|
|
|
{
|
2016-06-06 14:28:13 +02:00
|
|
|
vkCmdBindPipeline(drawCmdBuffers[i], VK_PIPELINE_BIND_POINT_GRAPHICS, pipelines.wireframe);
|
2017-02-11 14:18:24 +01:00
|
|
|
vkCmdDrawIndexed(drawCmdBuffers[i], models.object.indexCount, 1, 0, 0, 0);
|
2016-06-06 14:28:13 +02:00
|
|
|
scissor.offset.x = width / 2;
|
|
|
|
|
vkCmdSetScissor(drawCmdBuffers[i], 0, 1, &scissor);
|
2016-02-16 15:07:25 +01:00
|
|
|
}
|
|
|
|
|
|
2016-06-06 14:28:13 +02:00
|
|
|
vkCmdBindPipeline(drawCmdBuffers[i], VK_PIPELINE_BIND_POINT_GRAPHICS, pipelines.solid);
|
2017-02-11 14:18:24 +01:00
|
|
|
vkCmdDrawIndexed(drawCmdBuffers[i], models.object.indexCount, 1, 0, 0, 0);
|
2016-02-16 15:07:25 +01:00
|
|
|
|
|
|
|
|
vkCmdEndRenderPass(drawCmdBuffers[i]);
|
|
|
|
|
|
2016-06-06 11:35:04 +02:00
|
|
|
VK_CHECK_RESULT(vkEndCommandBuffer(drawCmdBuffers[i]));
|
2016-02-16 15:07:25 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void setupVertexDescriptions()
|
|
|
|
|
{
|
|
|
|
|
// Binding description
|
|
|
|
|
vertices.bindingDescriptions.resize(1);
|
|
|
|
|
vertices.bindingDescriptions[0] =
|
2017-02-12 11:12:42 +01:00
|
|
|
vks::initializers::vertexInputBindingDescription(
|
2016-02-16 15:07:25 +01:00
|
|
|
VERTEX_BUFFER_BIND_ID,
|
2017-02-11 14:18:24 +01:00
|
|
|
vertexLayout.stride(),
|
2016-02-16 15:07:25 +01:00
|
|
|
VK_VERTEX_INPUT_RATE_VERTEX);
|
|
|
|
|
|
|
|
|
|
// Attribute descriptions
|
|
|
|
|
// Describes memory layout and shader positions
|
|
|
|
|
vertices.attributeDescriptions.resize(3);
|
|
|
|
|
|
|
|
|
|
// Location 0 : Position
|
|
|
|
|
vertices.attributeDescriptions[0] =
|
2017-02-12 11:12:42 +01:00
|
|
|
vks::initializers::vertexInputAttributeDescription(
|
2016-02-16 15:07:25 +01:00
|
|
|
VERTEX_BUFFER_BIND_ID,
|
|
|
|
|
0,
|
|
|
|
|
VK_FORMAT_R32G32B32_SFLOAT,
|
|
|
|
|
0);
|
|
|
|
|
|
|
|
|
|
// Location 1 : Normals
|
|
|
|
|
vertices.attributeDescriptions[1] =
|
2017-02-12 11:12:42 +01:00
|
|
|
vks::initializers::vertexInputAttributeDescription(
|
2016-02-16 15:07:25 +01:00
|
|
|
VERTEX_BUFFER_BIND_ID,
|
|
|
|
|
1,
|
|
|
|
|
VK_FORMAT_R32G32B32_SFLOAT,
|
|
|
|
|
sizeof(float) * 3);
|
|
|
|
|
|
|
|
|
|
// Location 2 : Texture coordinates
|
|
|
|
|
vertices.attributeDescriptions[2] =
|
2017-02-12 11:12:42 +01:00
|
|
|
vks::initializers::vertexInputAttributeDescription(
|
2016-02-16 15:07:25 +01:00
|
|
|
VERTEX_BUFFER_BIND_ID,
|
|
|
|
|
2,
|
|
|
|
|
VK_FORMAT_R32G32_SFLOAT,
|
|
|
|
|
sizeof(float) * 6);
|
|
|
|
|
|
2017-02-12 11:12:42 +01:00
|
|
|
vertices.inputState = vks::initializers::pipelineVertexInputStateCreateInfo();
|
2017-01-22 12:28:55 +01:00
|
|
|
vertices.inputState.vertexBindingDescriptionCount = static_cast<uint32_t>(vertices.bindingDescriptions.size());
|
2016-02-16 15:07:25 +01:00
|
|
|
vertices.inputState.pVertexBindingDescriptions = vertices.bindingDescriptions.data();
|
2017-01-22 12:28:55 +01:00
|
|
|
vertices.inputState.vertexAttributeDescriptionCount = static_cast<uint32_t>(vertices.attributeDescriptions.size());
|
2016-02-16 15:07:25 +01:00
|
|
|
vertices.inputState.pVertexAttributeDescriptions = vertices.attributeDescriptions.data();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void setupDescriptorPool()
|
|
|
|
|
{
|
|
|
|
|
// Example uses two ubos and two image samplers
|
|
|
|
|
std::vector<VkDescriptorPoolSize> poolSizes =
|
|
|
|
|
{
|
2017-02-12 11:12:42 +01:00
|
|
|
vks::initializers::descriptorPoolSize(VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER, 2),
|
|
|
|
|
vks::initializers::descriptorPoolSize(VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER, 1)
|
2016-02-16 15:07:25 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
VkDescriptorPoolCreateInfo descriptorPoolInfo =
|
2017-02-12 11:12:42 +01:00
|
|
|
vks::initializers::descriptorPoolCreateInfo(
|
2017-01-22 12:28:55 +01:00
|
|
|
static_cast<uint32_t>(poolSizes.size()),
|
2016-02-16 15:07:25 +01:00
|
|
|
poolSizes.data(),
|
|
|
|
|
2);
|
|
|
|
|
|
2016-06-06 11:35:04 +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 : Tessellation control shader ubo
|
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_TESSELLATION_CONTROL_BIT,
|
|
|
|
|
0),
|
|
|
|
|
// Binding 1 : Tessellation evaluation shader ubo
|
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_TESSELLATION_EVALUATION_BIT,
|
|
|
|
|
1),
|
2016-06-06 14:28:13 +02:00
|
|
|
// Binding 2 : Combined color (rgb) and height (alpha) map
|
2017-02-12 11:12:42 +01:00
|
|
|
vks::initializers::descriptorSetLayoutBinding(
|
2016-02-16 15:07:25 +01:00
|
|
|
VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER,
|
2016-06-06 14:28:13 +02:00
|
|
|
VK_SHADER_STAGE_TESSELLATION_EVALUATION_BIT | VK_SHADER_STAGE_FRAGMENT_BIT,
|
2016-02-16 15:07:25 +01:00
|
|
|
2),
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
VkDescriptorSetLayoutCreateInfo descriptorLayout =
|
2017-02-12 11:12:42 +01:00
|
|
|
vks::initializers::descriptorSetLayoutCreateInfo(
|
2016-02-16 15:07:25 +01:00
|
|
|
setLayoutBindings.data(),
|
2017-01-22 12:28:55 +01:00
|
|
|
static_cast<uint32_t>(setLayoutBindings.size()));
|
2016-02-16 15:07:25 +01:00
|
|
|
|
2016-06-06 11:35:04 +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-06-06 11:35:04 +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-06-06 11:35:04 +02:00
|
|
|
VK_CHECK_RESULT(vkAllocateDescriptorSets(device, &allocInfo, &descriptorSet));
|
2016-02-16 15:07:25 +01:00
|
|
|
|
2016-06-06 14:28:13 +02:00
|
|
|
// Color and height map image descriptor
|
|
|
|
|
VkDescriptorImageInfo texDescriptor =
|
2017-02-12 11:12:42 +01:00
|
|
|
vks::initializers::descriptorImageInfo(
|
2016-06-06 14:28:13 +02:00
|
|
|
textures.colorHeightMap.sampler,
|
|
|
|
|
textures.colorHeightMap.view,
|
2016-02-16 15:07:25 +01:00
|
|
|
VK_IMAGE_LAYOUT_GENERAL);
|
|
|
|
|
|
|
|
|
|
std::vector<VkWriteDescriptorSet> writeDescriptorSets =
|
|
|
|
|
{
|
|
|
|
|
// Binding 0 : Tessellation control shader ubo
|
2017-02-12 11:12:42 +01:00
|
|
|
vks::initializers::writeDescriptorSet(
|
2016-02-16 15:07:25 +01:00
|
|
|
descriptorSet,
|
|
|
|
|
VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER,
|
|
|
|
|
0,
|
2016-12-24 12:48:01 +01:00
|
|
|
&uniformBuffers.tessControl.descriptor),
|
2016-02-16 15:07:25 +01:00
|
|
|
// Binding 1 : Tessellation evaluation shader ubo
|
2017-02-12 11:12:42 +01:00
|
|
|
vks::initializers::writeDescriptorSet(
|
2016-02-16 15:07:25 +01:00
|
|
|
descriptorSet,
|
|
|
|
|
VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER,
|
|
|
|
|
1,
|
2016-12-24 12:48:01 +01:00
|
|
|
&uniformBuffers.tessEval.descriptor),
|
2016-06-06 14:28:13 +02:00
|
|
|
// Binding 2 : Color and displacement map (alpha channel)
|
2017-02-12 11:12:42 +01:00
|
|
|
vks::initializers::writeDescriptorSet(
|
2016-02-16 15:07:25 +01:00
|
|
|
descriptorSet,
|
|
|
|
|
VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER,
|
|
|
|
|
2,
|
2016-06-06 14:28:13 +02:00
|
|
|
&texDescriptor),
|
2016-02-16 15:07:25 +01:00
|
|
|
};
|
|
|
|
|
|
2017-01-22 12:28:55 +01:00
|
|
|
vkUpdateDescriptorSets(device, static_cast<uint32_t>(writeDescriptorSets.size()), writeDescriptorSets.data(), 0, NULL);
|
2016-02-16 15:07:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void preparePipelines()
|
|
|
|
|
{
|
|
|
|
|
VkPipelineInputAssemblyStateCreateInfo inputAssemblyState =
|
2017-02-12 11:12:42 +01:00
|
|
|
vks::initializers::pipelineInputAssemblyStateCreateInfo(
|
2016-02-16 15:07:25 +01:00
|
|
|
VK_PRIMITIVE_TOPOLOGY_PATCH_LIST,
|
|
|
|
|
0,
|
|
|
|
|
VK_FALSE);
|
|
|
|
|
|
|
|
|
|
VkPipelineRasterizationStateCreateInfo rasterizationState =
|
2017-02-12 11:12:42 +01:00
|
|
|
vks::initializers::pipelineRasterizationStateCreateInfo(
|
2016-02-16 15:07:25 +01:00
|
|
|
VK_POLYGON_MODE_FILL,
|
|
|
|
|
VK_CULL_MODE_NONE,
|
|
|
|
|
VK_FRONT_FACE_COUNTER_CLOCKWISE,
|
|
|
|
|
0);
|
|
|
|
|
|
|
|
|
|
VkPipelineColorBlendAttachmentState blendAttachmentState =
|
2017-02-12 11:12:42 +01:00
|
|
|
vks::initializers::pipelineColorBlendAttachmentState(
|
2016-02-16 15:07:25 +01:00
|
|
|
0xf,
|
|
|
|
|
VK_FALSE);
|
|
|
|
|
|
|
|
|
|
VkPipelineColorBlendStateCreateInfo colorBlendState =
|
2017-02-12 11:12:42 +01:00
|
|
|
vks::initializers::pipelineColorBlendStateCreateInfo(
|
2016-02-16 15:07:25 +01:00
|
|
|
1,
|
|
|
|
|
&blendAttachmentState);
|
|
|
|
|
|
|
|
|
|
VkPipelineDepthStencilStateCreateInfo depthStencilState =
|
2017-02-12 11:12:42 +01:00
|
|
|
vks::initializers::pipelineDepthStencilStateCreateInfo(
|
2016-02-16 15:07:25 +01:00
|
|
|
VK_TRUE,
|
|
|
|
|
VK_TRUE,
|
|
|
|
|
VK_COMPARE_OP_LESS_OR_EQUAL);
|
|
|
|
|
|
|
|
|
|
VkPipelineViewportStateCreateInfo viewportState =
|
2017-02-12 11:12:42 +01:00
|
|
|
vks::initializers::pipelineViewportStateCreateInfo(1, 1, 0);
|
2016-02-16 15:07:25 +01:00
|
|
|
|
|
|
|
|
VkPipelineMultisampleStateCreateInfo multisampleState =
|
2017-02-12 11:12:42 +01:00
|
|
|
vks::initializers::pipelineMultisampleStateCreateInfo(
|
2016-02-16 15:07:25 +01:00
|
|
|
VK_SAMPLE_COUNT_1_BIT,
|
|
|
|
|
0);
|
|
|
|
|
|
|
|
|
|
std::vector<VkDynamicState> dynamicStateEnables = {
|
|
|
|
|
VK_DYNAMIC_STATE_VIEWPORT,
|
|
|
|
|
VK_DYNAMIC_STATE_SCISSOR,
|
|
|
|
|
VK_DYNAMIC_STATE_LINE_WIDTH
|
|
|
|
|
};
|
|
|
|
|
VkPipelineDynamicStateCreateInfo dynamicState =
|
2017-02-12 11:12:42 +01:00
|
|
|
vks::initializers::pipelineDynamicStateCreateInfo(
|
2016-02-16 15:07:25 +01:00
|
|
|
dynamicStateEnables.data(),
|
2017-01-22 12:28:55 +01:00
|
|
|
static_cast<uint32_t>(dynamicStateEnables.size()),
|
2016-02-16 15:07:25 +01:00
|
|
|
0);
|
|
|
|
|
|
|
|
|
|
VkPipelineTessellationStateCreateInfo tessellationState =
|
2017-02-12 11:12:42 +01:00
|
|
|
vks::initializers::pipelineTessellationStateCreateInfo(3);
|
2016-02-16 15:07:25 +01:00
|
|
|
|
|
|
|
|
// Tessellation pipeline
|
|
|
|
|
// Load shaders
|
|
|
|
|
std::array<VkPipelineShaderStageCreateInfo, 4> shaderStages;
|
2016-03-25 14:12:17 +01:00
|
|
|
shaderStages[0] = loadShader(getAssetPath() + "shaders/displacement/base.vert.spv", VK_SHADER_STAGE_VERTEX_BIT);
|
|
|
|
|
shaderStages[1] = loadShader(getAssetPath() + "shaders/displacement/base.frag.spv", VK_SHADER_STAGE_FRAGMENT_BIT);
|
|
|
|
|
shaderStages[2] = loadShader(getAssetPath() + "shaders/displacement/displacement.tesc.spv", VK_SHADER_STAGE_TESSELLATION_CONTROL_BIT);
|
|
|
|
|
shaderStages[3] = loadShader(getAssetPath() + "shaders/displacement/displacement.tese.spv", VK_SHADER_STAGE_TESSELLATION_EVALUATION_BIT);
|
2016-02-16 15:07:25 +01:00
|
|
|
|
|
|
|
|
VkGraphicsPipelineCreateInfo pipelineCreateInfo =
|
2017-02-12 11:12:42 +01:00
|
|
|
vks::initializers::pipelineCreateInfo(
|
2016-02-16 15:07:25 +01:00
|
|
|
pipelineLayout,
|
|
|
|
|
renderPass,
|
|
|
|
|
0);
|
|
|
|
|
|
|
|
|
|
pipelineCreateInfo.pVertexInputState = &vertices.inputState;
|
|
|
|
|
pipelineCreateInfo.pInputAssemblyState = &inputAssemblyState;
|
|
|
|
|
pipelineCreateInfo.pRasterizationState = &rasterizationState;
|
|
|
|
|
pipelineCreateInfo.pColorBlendState = &colorBlendState;
|
|
|
|
|
pipelineCreateInfo.pMultisampleState = &multisampleState;
|
|
|
|
|
pipelineCreateInfo.pViewportState = &viewportState;
|
|
|
|
|
pipelineCreateInfo.pDepthStencilState = &depthStencilState;
|
|
|
|
|
pipelineCreateInfo.pDynamicState = &dynamicState;
|
|
|
|
|
pipelineCreateInfo.pTessellationState = &tessellationState;
|
2017-01-22 12:28:55 +01:00
|
|
|
pipelineCreateInfo.stageCount = static_cast<uint32_t>(shaderStages.size());
|
2016-02-16 15:07:25 +01:00
|
|
|
pipelineCreateInfo.pStages = shaderStages.data();
|
|
|
|
|
pipelineCreateInfo.renderPass = renderPass;
|
|
|
|
|
|
|
|
|
|
// Solid pipeline
|
2016-06-06 11:35:04 +02:00
|
|
|
rasterizationState.cullMode = VK_CULL_MODE_BACK_BIT;
|
|
|
|
|
VK_CHECK_RESULT(vkCreateGraphicsPipelines(device, pipelineCache, 1, &pipelineCreateInfo, nullptr, &pipelines.solid));
|
2017-03-17 18:21:15 +01:00
|
|
|
if (deviceFeatures.fillModeNonSolid) {
|
|
|
|
|
// Wireframe pipeline
|
|
|
|
|
rasterizationState.polygonMode = VK_POLYGON_MODE_LINE;
|
|
|
|
|
rasterizationState.cullMode = VK_CULL_MODE_NONE;
|
|
|
|
|
VK_CHECK_RESULT(vkCreateGraphicsPipelines(device, pipelineCache, 1, &pipelineCreateInfo, nullptr, &pipelines.wireframe));
|
|
|
|
|
}
|
2016-02-16 15:07:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Prepare and initialize uniform buffer containing shader uniforms
|
|
|
|
|
void prepareUniformBuffers()
|
|
|
|
|
{
|
|
|
|
|
// Tessellation evaluation shader uniform buffer
|
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-06-06 11:35:04 +02:00
|
|
|
VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT | VK_MEMORY_PROPERTY_HOST_COHERENT_BIT,
|
2016-12-24 12:48:01 +01:00
|
|
|
&uniformBuffers.tessEval,
|
|
|
|
|
sizeof(uboTessEval)));
|
2016-02-16 15:07:25 +01:00
|
|
|
|
|
|
|
|
// Tessellation control shader uniform buffer
|
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-06-06 11:35:04 +02:00
|
|
|
VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT | VK_MEMORY_PROPERTY_HOST_COHERENT_BIT,
|
2016-12-24 12:48:01 +01:00
|
|
|
&uniformBuffers.tessControl,
|
|
|
|
|
sizeof(uboTessControl)));
|
|
|
|
|
|
|
|
|
|
// Map persistent
|
|
|
|
|
VK_CHECK_RESULT(uniformBuffers.tessControl.map());
|
|
|
|
|
VK_CHECK_RESULT(uniformBuffers.tessEval.map());
|
2016-02-16 15:07:25 +01:00
|
|
|
|
|
|
|
|
updateUniformBuffers();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void updateUniformBuffers()
|
|
|
|
|
{
|
|
|
|
|
// Tessellation eval
|
2017-09-24 18:17:07 +02:00
|
|
|
glm::mat4 viewMatrix = glm::mat4(1.0f);
|
2016-12-24 12:48:01 +01:00
|
|
|
uboTessEval.projection = glm::perspective(glm::radians(45.0f), (float)(width) / (float)height, 0.1f, 256.0f);
|
2016-02-16 15:07:25 +01:00
|
|
|
viewMatrix = glm::translate(viewMatrix, glm::vec3(0.0f, 0.0f, zoom));
|
|
|
|
|
|
2017-09-24 18:17:07 +02:00
|
|
|
uboTessEval.model = glm::mat4(1.0f);
|
2016-12-24 12:48:01 +01:00
|
|
|
uboTessEval.model = viewMatrix * glm::translate(uboTessEval.model, glm::vec3(0, 0, 0));
|
|
|
|
|
uboTessEval.model = glm::rotate(uboTessEval.model, glm::radians(rotation.x), glm::vec3(1.0f, 0.0f, 0.0f));
|
|
|
|
|
uboTessEval.model = glm::rotate(uboTessEval.model, glm::radians(rotation.y), glm::vec3(0.0f, 1.0f, 0.0f));
|
|
|
|
|
uboTessEval.model = glm::rotate(uboTessEval.model, glm::radians(rotation.z), glm::vec3(0.0f, 0.0f, 1.0f));
|
|
|
|
|
|
|
|
|
|
uboTessEval.lightPos.y = -0.5f - uboTessEval.tessStrength;
|
|
|
|
|
|
|
|
|
|
memcpy(uniformBuffers.tessEval.mapped, &uboTessEval, sizeof(uboTessEval));
|
2016-02-16 15:07:25 +01:00
|
|
|
|
|
|
|
|
// Tessellation control
|
2016-12-24 12:48:01 +01:00
|
|
|
float savedLevel = uboTessControl.tessLevel;
|
2016-06-06 14:28:13 +02:00
|
|
|
if (!displacement)
|
|
|
|
|
{
|
2016-12-24 12:48:01 +01:00
|
|
|
uboTessControl.tessLevel = 1.0f;
|
2016-06-06 14:28:13 +02:00
|
|
|
}
|
|
|
|
|
|
2016-12-24 12:48:01 +01:00
|
|
|
memcpy(uniformBuffers.tessControl.mapped, &uboTessControl, sizeof(uboTessControl));
|
2016-06-06 14:28:13 +02:00
|
|
|
|
|
|
|
|
if (!displacement)
|
|
|
|
|
{
|
2016-12-24 12:48:01 +01:00
|
|
|
uboTessControl.tessLevel = savedLevel;
|
2016-06-06 14:28:13 +02:00
|
|
|
}
|
2016-02-16 15:07:25 +01:00
|
|
|
}
|
|
|
|
|
|
2016-06-06 11:35:04 +02:00
|
|
|
void draw()
|
|
|
|
|
{
|
|
|
|
|
VulkanExampleBase::prepareFrame();
|
|
|
|
|
|
|
|
|
|
// Command buffer to be sumitted to the queue
|
|
|
|
|
submitInfo.commandBufferCount = 1;
|
|
|
|
|
submitInfo.pCommandBuffers = &drawCmdBuffers[currentBuffer];
|
|
|
|
|
|
|
|
|
|
// Submit to queue
|
|
|
|
|
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-09 21:55:35 +01:00
|
|
|
loadAssets();
|
2016-02-16 15:07:25 +01:00
|
|
|
setupVertexDescriptions();
|
|
|
|
|
prepareUniformBuffers();
|
|
|
|
|
setupDescriptorSetLayout();
|
|
|
|
|
preparePipelines();
|
|
|
|
|
setupDescriptorPool();
|
|
|
|
|
setupDescriptorSet();
|
|
|
|
|
buildCommandBuffers();
|
|
|
|
|
prepared = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
virtual void render()
|
|
|
|
|
{
|
|
|
|
|
if (!prepared)
|
|
|
|
|
return;
|
|
|
|
|
draw();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
virtual void viewChanged()
|
|
|
|
|
{
|
|
|
|
|
updateUniformBuffers();
|
|
|
|
|
}
|
|
|
|
|
|
2017-11-01 14:22:10 +01:00
|
|
|
virtual void OnUpdateUIOverlay(vks::UIOverlay *overlay)
|
2016-02-16 15:07:25 +01:00
|
|
|
{
|
2017-11-01 14:22:10 +01:00
|
|
|
if (overlay->header("Settings")) {
|
|
|
|
|
if (overlay->checkBox("Tessellation displacement", &displacement)) {
|
|
|
|
|
updateUniformBuffers();
|
|
|
|
|
}
|
|
|
|
|
if (overlay->inputFloat("Strength", &uboTessEval.tessStrength, 0.025f, 3)) {
|
|
|
|
|
updateUniformBuffers();
|
|
|
|
|
}
|
|
|
|
|
if (overlay->inputFloat("Level", &uboTessControl.tessLevel, 0.5f, 2)) {
|
|
|
|
|
updateUniformBuffers();
|
|
|
|
|
}
|
2017-03-17 18:21:15 +01:00
|
|
|
if (deviceFeatures.fillModeNonSolid) {
|
2017-11-01 14:22:10 +01:00
|
|
|
if (overlay->checkBox("Splitscreen", &splitScreen)) {
|
|
|
|
|
buildCommandBuffers();
|
|
|
|
|
updateUniformBuffers();
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-06-06 11:35:04 +02:00
|
|
|
|
2017-03-17 18:21:15 +01:00
|
|
|
}
|
2016-06-06 11:35:04 +02:00
|
|
|
}
|
2016-02-16 15:07:25 +01:00
|
|
|
};
|
|
|
|
|
|
2016-12-13 19:25:56 +01:00
|
|
|
VULKAN_EXAMPLE_MAIN()
|