Commit 3591997b by Shahbaz Youssefi Committed by Commit Bot

Roll Vulkan-Loader from 8e2b7d03ccfd to 8308d6744d50 (2 revisions)

https://chromium.googlesource.com/external/github.com/KhronosGroup/Vulkan-Loader.git/+log/8e2b7d03ccfd..8308d6744d50 2020-10-28 shabbyx@gmail.com Generate libvulkan.so.1 on Linux instead of libvulkan.so 2020-10-27 shannon@lunarg.com build: Update known-good files for 1.2.158 header Bug: angleproject:5216 Change-Id: I74e10c44950f3be05cc12f22b44f1627af08ca81 Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/2506196Reviewed-by: 's avatarShahbaz Youssefi <syoussefi@chromium.org> Commit-Queue: Shahbaz Youssefi <syoussefi@chromium.org>
parent e3eaa60f
......@@ -86,7 +86,7 @@ vars = {
'vulkan_headers_revision': '320af06cbdd29848e1d7100d9b8e4e517db1dfd5',
# Current revision of Khronos Vulkan-Loader.
'vulkan_loader_revision': '8e2b7d03ccfd2088abd2e4f003101655bb708231',
'vulkan_loader_revision': '8308d6744d50e4dc357e60282436f6ec0942b8c8',
# Current revision of Khronos Vulkan-Tools.
'vulkan_tools_revision': 'ee0de094ddff8573a06b36b7fa7922de21ea372c',
......
......@@ -62,9 +62,9 @@ VkResult volkInitialize(void)
vkGetInstanceProcAddr = (PFN_vkGetInstanceProcAddr)dlsym(module, "vkGetInstanceProcAddr");
#else
void* module = dlopen("libvulkan.so", RTLD_NOW | RTLD_LOCAL);
void* module = dlopen("libvulkan.so.1", RTLD_NOW | RTLD_LOCAL);
if (!module)
module = dlopen("libvulkan.so.1", RTLD_NOW | RTLD_LOCAL);
module = dlopen("libvulkan.so", RTLD_NOW | RTLD_LOCAL);
if (!module)
return VK_ERROR_INITIALIZATION_FAILED;
......
......@@ -79,7 +79,7 @@ ANGLE_UTIL_EXPORT const char *Texture2D();
namespace fs
{
// A shader that renders a simple checker pattern of red, green and blue. X axis and Y axis separate
// A shader that renders a simple checker pattern of different colors. X axis and Y axis separate
// the different colors. Needs varying v_position.
//
// - X < 0 && y < 0: Red
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment