Skip to content

Commit 985c568

Browse files
committed
Fix syntax
1 parent 5541b88 commit 985c568

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

attachments/34_android.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1630,7 +1630,7 @@ class HelloTriangleApplication
16301630
.allocationSize = memRequirements.size,
16311631
.memoryTypeIndex = findMemoryType(memRequirements.memoryTypeBits, properties)};
16321632
imageMemory = vk::raii::DeviceMemory(device, allocInfo);
1633-
image.bindMemory(imageMemory, 0);
1633+
image.bindMemory(*imageMemory, 0);
16341634
}
16351635

16361636
// Transition image layout

0 commit comments

Comments
 (0)