Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/KhronosGroup/Vulkan-Loader.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaperChalice <lgamma@163.com>2022-09-24 09:52:56 +0300
committerCharles Giessen <46324611+charles-lunarg@users.noreply.github.com>2022-09-26 20:56:43 +0300
commit9c40a28e3ee654cd5997570d26eb87062017647e (patch)
tree218afa53c454e3c7e7574991061491488b619bc5
parentf755a87bf8ee8c83311f478c9d3a5a404697e886 (diff)
loader: fix log message
-rw-r--r--loader/trampoline.c4
-rw-r--r--tests/loader_regression_tests.cpp4
2 files changed, 4 insertions, 4 deletions
diff --git a/loader/trampoline.c b/loader/trampoline.c
index d65e7b1ec..12f7755c7 100644
--- a/loader/trampoline.c
+++ b/loader/trampoline.c
@@ -543,8 +543,8 @@ LOADER_EXPORT VKAPI_ATTR VkResult VKAPI_CALL vkCreateInstance(const VkInstanceCr
loader_log(
ptr_instance, VULKAN_LOADER_ERROR_BIT | VULKAN_LOADER_DRIVER_BIT, 0,
"vkCreateInstance: Found drivers that contain devices which support the portability subset, but the "
- "portability enumeration bit was not set!. Applications that wish to enumerate portability drivers must set the "
- "VK_INSTANCE_CREATE_ENUMERATE_PORTABILITY_BIT_KHR bit in the VkInstanceCreateInfo flags and"
+ "portability enumeration bit was not set! Applications that wish to enumerate portability drivers must set the "
+ "VK_INSTANCE_CREATE_ENUMERATE_PORTABILITY_BIT_KHR bit in the VkInstanceCreateInfo flags and "
"enable the VK_KHR_portability_enumeration instance extension.");
}
loader_log(ptr_instance, VULKAN_LOADER_ERROR_BIT | VULKAN_LOADER_DRIVER_BIT, 0, "vkCreateInstance: Found no drivers!");
diff --git a/tests/loader_regression_tests.cpp b/tests/loader_regression_tests.cpp
index 32070e38a..4bf72eb1f 100644
--- a/tests/loader_regression_tests.cpp
+++ b/tests/loader_regression_tests.cpp
@@ -3285,8 +3285,8 @@ TEST(SortedPhysicalDevices, DeviceGroupsSortedDisabled) {
const char* portability_driver_warning =
"vkCreateInstance: Found drivers that contain devices which support the portability subset, but the "
- "portability enumeration bit was not set!. Applications that wish to enumerate portability drivers must set the "
- "VK_INSTANCE_CREATE_ENUMERATE_PORTABILITY_BIT_KHR bit in the VkInstanceCreateInfo flags and"
+ "portability enumeration bit was not set! Applications that wish to enumerate portability drivers must set the "
+ "VK_INSTANCE_CREATE_ENUMERATE_PORTABILITY_BIT_KHR bit in the VkInstanceCreateInfo flags and "
"enable the VK_KHR_portability_enumeration instance extension.";
TEST(PortabilityICDConfiguration, PortabilityICDOnly) {