diff --git a/src/vulkan/runtime/vk_instance.h b/src/vulkan/runtime/vk_instance.h index f0e6a3fdb99..2eb44ff3923 100644 --- a/src/vulkan/runtime/vk_instance.h +++ b/src/vulkan/runtime/vk_instance.h @@ -210,14 +210,14 @@ vk_instance_init(struct vk_instance *instance, void vk_instance_finish(struct vk_instance *instance); -/** Implementaiton of vkEnumerateInstanceExtensionProperties() */ +/** Implementation of vkEnumerateInstanceExtensionProperties() */ VkResult vk_enumerate_instance_extension_properties( const struct vk_instance_extension_table *supported_extensions, uint32_t *pPropertyCount, VkExtensionProperties *pProperties); -/** Implementaiton of vkGetInstanceProcAddr() */ +/** Implementation of vkGetInstanceProcAddr() */ PFN_vkVoidFunction vk_instance_get_proc_addr(const struct vk_instance *instance, const struct vk_instance_entrypoint_table *entrypoints, @@ -234,7 +234,7 @@ PFN_vkVoidFunction vk_instance_get_proc_addr_unchecked(const struct vk_instance *instance, const char *name); -/** Implementaiton of vk_icdGetPhysicalDeviceProcAddr() */ +/** Implementation of vk_icdGetPhysicalDeviceProcAddr() */ PFN_vkVoidFunction vk_instance_get_physical_device_proc_addr(const struct vk_instance *instance, const char *name); diff --git a/src/vulkan/runtime/vk_meta_draw_rects.c b/src/vulkan/runtime/vk_meta_draw_rects.c index fd76e582b97..36babc0a751 100644 --- a/src/vulkan/runtime/vk_meta_draw_rects.c +++ b/src/vulkan/runtime/vk_meta_draw_rects.c @@ -184,7 +184,7 @@ setup_viewport_scissor(struct vk_command_buffer *cmd, assert(ymax_log2 >= 0 && ymax_log2 <= 31); /* We don't care about precise bounds on Z, only that it's inside [0, 1] if - * the implementaiton only supports [0, 1]. + * the implementation only supports [0, 1]. */ if (zmin >= 0.0f && zmax <= 1.0f) { zmin = 0.0f; diff --git a/src/vulkan/runtime/vk_render_pass.h b/src/vulkan/runtime/vk_render_pass.h index de1c03a05f0..785e1598507 100644 --- a/src/vulkan/runtime/vk_render_pass.h +++ b/src/vulkan/runtime/vk_render_pass.h @@ -340,7 +340,7 @@ vk_get_pipeline_rendering_flags(const VkGraphicsPipelineCreateInfo *info); /** Returns the VkAttachmentSampleCountInfoAMD for a graphics pipeline * - * For render-pass-free drivers, this can be used in the implementaiton of + * For render-pass-free drivers, this can be used in the implementation of * vkCreateGraphicsPipelines to get the VkAttachmentSampleCountInfoAMD. If * VkGraphicsPipelineCreateInfo::renderPass is not VK_NULL_HANDLE, it will * return the sample counts from the specified subpass as a @@ -388,7 +388,7 @@ struct vk_gcbiarr_data { /** * Constructs a VkRenderingInfo for the inheritance rendering info * - * For render-pass-free drivers, this can be used in the implementaiton of + * For render-pass-free drivers, this can be used in the implementation of * vkCmdExecuteCommands to get a VkRenderingInfo representing the subpass and * framebuffer provided via the inheritance info for a command buffer created * with VK_COMMAND_BUFFER_USAGE_RENDER_PASS_CONTINUE_BIT. The mental model