Fixed typos

This commit is contained in:
Sascha Willems 2020-08-08 13:25:58 +02:00
parent 3e5f545b83
commit e1ec3b6c78
11 changed files with 23 additions and 29 deletions

View file

@ -60,7 +60,7 @@ namespace vks
#endif
// The return value of this callback controls wether the Vulkan call that caused the validation message will be aborted or not
// The return value of this callback controls whether the Vulkan call that caused the validation message will be aborted or not
// We return VK_FALSE as we DON'T want Vulkan calls that cause a validation message to abort
// If you instead want to have calls abort, pass in VK_TRUE and the function will return VK_ERROR_VALIDATION_FAILED_EXT
return VK_FALSE;
@ -170,7 +170,7 @@ namespace vks
void endRegion(VkCommandBuffer cmdBuffer)
{
// Check for valid function (may not be present if not runnin in a debugging application)
// Check for valid function (may not be present if not running in a debugging application)
if (pfnCmdDebugMarkerEnd)
{
pfnCmdDebugMarkerEnd(cmdBuffer);