Skip to content

Commit 0243e0c

Browse files
committed
Fix linux compilation
1 parent 5feebc0 commit 0243e0c

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

Framework/Renderer/Vulkan/VulkanTexture.cpp

+5-2
Original file line numberDiff line numberDiff line change
@@ -220,8 +220,11 @@ void UImGui::VulkanTexture::load(void* data, FVector2 size, uint32_t depth, cons
220220

221221
const vk::BufferImageCopy region
222222
{
223-
.imageSubresource.aspectMask = vk::ImageAspectFlagBits::eColor,
224-
.imageSubresource.layerCount = 1,
223+
.imageSubresource =
224+
{
225+
.aspectMask = vk::ImageAspectFlagBits::eColor,
226+
.layerCount = 1,
227+
},
225228
.imageExtent =
226229
{
227230
.width = static_cast<uint32_t>(dt.size.x),

UVKBuildTool

Submodule UVKBuildTool updated 1 file

0 commit comments

Comments
 (0)