Fix a typo in the readme (#193)

This commit is contained in:
Sean Baggaley 2018-03-11 18:28:06 +00:00 committed by Markus Tavenrath
parent 7e2c734a9a
commit 45d2571cc5

View File

@ -23,7 +23,7 @@ Vulkan-Hpp requires a C++11 capable compiler to compile. The following compilers
To avoid name collisions with the Vulkan C API the C++ bindings reside in the vk namespace. The following rules apply to the new naming
* All functions, enums, handles, and structs have the Vk prefix removed. In addition to this the first leter of functions is lower case.
* All functions, enums, handles, and structs have the Vk prefix removed. In addition to this the first letter of functions is lower case.
* `vkCreateImage` can be accessed as `vk::createImage`
* `VkImageTiling` can be accessed as `vk::ImageTiling`
* `VkImageCreateInfo` can be accessed as `vk::ImageCreateInfo`