Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 24a2165

Browse files
committed
Fix struct typo in vertex buffer creation chapter
1 parent 3bc4507 commit 24a2165

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

04_Vertex_buffers/01_Vertex_buffer_creation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ to `1`.
158158

159159
However, we're not just interested in a memory type that is suitable for the
160160
vertex buffer. We also need to be able to write our vertex data to that memory.
161-
The `memoryTypes` array consists of `VkMemoryHeap` structs that specify the heap
161+
The `memoryTypes` array consists of `VkMemoryType` structs that specify the heap
162162
and properties of each type of memory. The properties define special features
163163
of the memory, like being able to map it so we can write to it from the CPU.
164164
This property is indicated with `VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT`, but we

0 commit comments

Comments
 (0)