Code cleanup
This commit is contained in:
parent
720afde027
commit
a9ae9eafaa
3 changed files with 11 additions and 10 deletions
|
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
* Vulkan Example base class
|
||||
*
|
||||
* Copyright (C) 2016-2023 by Sascha Willems - www.saschawillems.de
|
||||
* Copyright (C) 2016-2024 by Sascha Willems - www.saschawillems.de
|
||||
*
|
||||
* This code is licensed under the MIT license (MIT) (http://opensource.org/licenses/MIT)
|
||||
*/
|
||||
|
|
@ -202,11 +202,12 @@ public:
|
|||
std::string name = "vulkanExample";
|
||||
uint32_t apiVersion = VK_API_VERSION_1_0;
|
||||
|
||||
/** @brief Default depth stencil attachment used by the default render pass */
|
||||
struct {
|
||||
VkImage image;
|
||||
VkDeviceMemory mem;
|
||||
VkDeviceMemory memory;
|
||||
VkImageView view;
|
||||
} depthStencil;
|
||||
} depthStencil{};
|
||||
|
||||
struct {
|
||||
glm::vec2 axisLeft = glm::vec2(0.0f);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue