Skip to content

Commit

Permalink
winevulkan: Fix some typos in comments.
Browse files Browse the repository at this point in the history
Signed-off-by: Francois Gouget <[email protected]>
Signed-off-by: Józef Kucia <[email protected]>
Signed-off-by: Alexandre Julliard <[email protected]>
  • Loading branch information
fgouget authored and julliard committed Mar 16, 2018
1 parent abf6841 commit f98d076
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dlls/winevulkan/make_vulkan
Original file line number Diff line number Diff line change
Expand Up @@ -464,7 +464,7 @@ class VkFunction(object):
else:
proto += " {0}(".format(self.name)

# Add all the paremeters.
# Add all the parameters.
proto += ", ".join([p.definition() for p in self.params])

if postfix is not None:
Expand Down
4 changes: 2 additions & 2 deletions dlls/winevulkan/vulkan.c
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ static VkResult wine_vk_instance_convert_create_info(const VkInstanceCreateInfo
dst->pApplicationInfo = src->pApplicationInfo;

/* Application and loader can pass in a chain of extensions through pNext.
* We can't blindy pass these through as often these contain callbacks or
* We can't blindly pass these through as often these contain callbacks or
* they can even be pass structures for loader / ICD internal use. For now
* we ignore everything in pNext chain, but we print FIXMEs.
*/
Expand Down Expand Up @@ -1011,7 +1011,7 @@ void * WINAPI wine_vk_icdGetInstanceProcAddr(VkInstance instance, const char *na
TRACE("%p %s\n", instance, debugstr_a(name));

/* Initial version of the Vulkan ICD spec required vkGetInstanceProcAddr to be
* exported. vk_icdGetInstanceProcAddr was added later to separete ICD calls from
* exported. vk_icdGetInstanceProcAddr was added later to separate ICD calls from
* Vulkan API. One of them in our case should forward to the other, so just forward
* to the older vkGetInstanceProcAddr.
*/
Expand Down

0 comments on commit f98d076

Please sign in to comment.