vulkan/runtime: implementaiton -> implementation

Acked-By: Mike Blumenkrantz <michael.blumenkrantz@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/29890>
This commit is contained in:
Erik Faye-Lund 2024-06-25 10:27:19 +02:00 committed by Marge Bot
parent 3967f8cd84
commit 18db05d3e6
3 changed files with 6 additions and 6 deletions

View File

@ -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);

View File

@ -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;

View File

@ -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