127 lines
4.1 KiB
C++
127 lines
4.1 KiB
C++
/*
|
|
* Copyright (c) 2014-2021, NVIDIA CORPORATION. All rights reserved.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*
|
|
* SPDX-FileCopyrightText: Copyright (c) 2014-2021 NVIDIA CORPORATION
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "nvvk/appbase_vkpp.hpp"
|
|
#include "nvvk/debug_util_vk.hpp"
|
|
#include "nvvk/resourceallocator_vk.hpp"
|
|
|
|
// #VKRay
|
|
#include "nvvk/raytraceKHR_vk.hpp"
|
|
#include "offscreen.hpp"
|
|
|
|
#include "obj.hpp"
|
|
#include "raytrace.hpp"
|
|
|
|
#include <memory>
|
|
|
|
// Choosing the allocator to use
|
|
#define ALLOC_DMA
|
|
//#define ALLOC_DEDICATED
|
|
//#define ALLOC_VMA
|
|
#include <nvvk/resourceallocator_vk.hpp>
|
|
|
|
#if defined(ALLOC_DMA)
|
|
#include <nvvk/memallocator_dma_vk.hpp>
|
|
using Allocator = nvvk::ResourceAllocatorDma;
|
|
#elif defined(ALLOC_VMA)
|
|
#include <nvvk/memallocator_vma_vk.hpp>
|
|
using Allocator = nvvk::ResourceAllocatorVma;
|
|
#else
|
|
using Allocator = nvvk::ResourceAllocatorDedicated;
|
|
#endif
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
// Simple rasterizer of OBJ objects
|
|
// - Each OBJ loaded are stored in an `ObjModel` and referenced by a `ObjInstance`
|
|
// - It is possible to have many `ObjInstance` referencing the same `ObjModel`
|
|
// - Rendering is done in an offscreen framebuffer
|
|
// - The image of the framebuffer is displayed in post-process in a full-screen quad
|
|
//
|
|
class HelloVulkan : public nvvk::AppBase
|
|
{
|
|
public:
|
|
void setup(const vk::Instance& instance,
|
|
const vk::Device& device,
|
|
const vk::PhysicalDevice& physicalDevice,
|
|
uint32_t queueFamily) override;
|
|
void createDescriptorSetLayout();
|
|
void createGraphicsPipeline();
|
|
void loadModel(const std::string& filename, nvmath::mat4f transform = nvmath::mat4f(1));
|
|
void updateDescriptorSet();
|
|
void createUniformBuffer();
|
|
void createSceneDescriptionBuffer();
|
|
void createTextureImages(const vk::CommandBuffer& cmdBuf,
|
|
const std::vector<std::string>& textures);
|
|
void updateUniformBuffer(const vk::CommandBuffer& cmdBuf);
|
|
void onResize(int /*w*/, int /*h*/) override;
|
|
void destroyResources();
|
|
void rasterize(const vk::CommandBuffer& cmdBuff);
|
|
|
|
Offscreen& offscreen() { return m_offscreen; }
|
|
Raytracer& raytracer() { return m_raytrace; }
|
|
|
|
ObjPushConstants m_pushConstants;
|
|
|
|
// Array of objects and instances in the scene
|
|
std::vector<ObjModel> m_objModel;
|
|
std::vector<ObjInstance> m_objInstance;
|
|
|
|
|
|
// Graphic pipeline
|
|
vk::PipelineLayout m_pipelineLayout;
|
|
vk::Pipeline m_graphicsPipeline;
|
|
nvvk::DescriptorSetBindings m_descSetLayoutBind;
|
|
vk::DescriptorPool m_descPool;
|
|
vk::DescriptorSetLayout m_descSetLayout;
|
|
vk::DescriptorSet m_descSet;
|
|
|
|
int m_maxFrames{10};
|
|
void resetFrame();
|
|
void updateFrame();
|
|
|
|
nvvk::Buffer m_cameraMat; // Device-Host of the camera matrices
|
|
nvvk::Buffer m_sceneDesc; // Device buffer of the OBJ instances
|
|
std::vector<nvvk::Texture> m_textures; // vector of all textures of the scene
|
|
|
|
nvvk::DebugUtil m_debug; // Utility to name objects
|
|
|
|
Allocator m_alloc; // Allocator for buffer, images, acceleration structures
|
|
|
|
// #Post
|
|
Offscreen m_offscreen;
|
|
void initOffscreen();
|
|
|
|
|
|
// #VKRay
|
|
Raytracer m_raytrace;
|
|
|
|
void initRayTracing();
|
|
void raytrace(const vk::CommandBuffer& cmdBuf, const nvmath::vec4f& clearColor);
|
|
|
|
// Implicit
|
|
ImplInst m_implObjects;
|
|
|
|
void addImplSphere(nvmath::vec3f center, float radius, int matId);
|
|
void addImplCube(nvmath::vec3f minumum, nvmath::vec3f maximum, int matId);
|
|
void addImplMaterial(const MaterialObj& mat);
|
|
void createImplictBuffers();
|
|
};
|