mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-13 07:57:58 +00:00
- initialize array
This commit is contained in:
parent
88355393df
commit
0be5cc7d1d
1 changed files with 1 additions and 1 deletions
|
@ -35,7 +35,7 @@ public:
|
||||||
static const int NumPipelineImages = 2;
|
static const int NumPipelineImages = 2;
|
||||||
std::unique_ptr<VulkanImage> PipelineImage[NumPipelineImages];
|
std::unique_ptr<VulkanImage> PipelineImage[NumPipelineImages];
|
||||||
std::unique_ptr<VulkanImageView> PipelineView[NumPipelineImages];
|
std::unique_ptr<VulkanImageView> PipelineView[NumPipelineImages];
|
||||||
VkImageLayout PipelineLayout[NumPipelineImages];
|
VkImageLayout PipelineLayout[NumPipelineImages] = { VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL, VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL };
|
||||||
|
|
||||||
std::unique_ptr<VulkanImage> Shadowmap;
|
std::unique_ptr<VulkanImage> Shadowmap;
|
||||||
std::unique_ptr<VulkanImageView> ShadowmapView;
|
std::unique_ptr<VulkanImageView> ShadowmapView;
|
||||||
|
|
Loading…
Reference in a new issue