Searched refs:path_utf16_size (Results 1 – 1 of 1) sorted by relevance
/third_party/vulkan-loader/loader/ |
D | vk_loader_platform.h | 403 int path_utf16_size = MultiByteToWideChar(CP_UTF8, 0, path, -1, NULL, 0); in loader_platform_file_exists() local 404 if (path_utf16_size <= 0) { in loader_platform_file_exists() 407 wchar_t *path_utf16 = (wchar_t *)loader_stack_alloc(path_utf16_size * sizeof(wchar_t)); in loader_platform_file_exists() 408 if (MultiByteToWideChar(CP_UTF8, 0, path, -1, path_utf16, path_utf16_size) != path_utf16_size) { in loader_platform_file_exists()
|