Skip to content

Commit

Permalink
Minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Gnimuc committed Sep 24, 2020
1 parent 8e6ca1b commit 26a61f3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/LibVulkan.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module LibVulkan
import Libdl

paths = String[]
const libvulkan = Libdl.find_library(["libvulkan", "vulkan", "vulkan-1", "libvulkan.so.1"], paths)
const libvulkan = Libdl.find_library(["libvulkan", "vulkan", "vulkan-1", "libvulkan.so.1", "libMoltenVK"], paths)
@assert libvulkan != ""

using CEnum
Expand Down
2 changes: 1 addition & 1 deletion test/glfw.jl
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ flags = UInt32(0)
pApplicationInfo = Base.unsafe_convert(Ptr{VkApplicationInfo}, appInfoRef)
requiredExtensions = GLFW.GetRequiredInstanceExtensions()
@static if Sys.isapple()
@assert "VK_MVK_macos_surface" in requiredExtensions
@assert ("VK_MVK_macos_surface" in requiredExtensions) || ("VK_EXT_metal_surface" in requiredExtensions)
end
enabledExtensionCount = Ref{Cuint}(0)
ppEnabledExtensionNames = ccall((:glfwGetRequiredInstanceExtensions, GLFW.libglfw), Ptr{Cstring}, (Ref{Cuint},), enabledExtensionCount)
Expand Down

2 comments on commit 26a61f3

@Gnimuc
Copy link
Member Author

@Gnimuc Gnimuc commented on 26a61f3 Sep 24, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/21904

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v1.2.12 -m "<description of version>" 26a61f34ba0a6b01c098e6a286a6a52d6d963d3f
git push origin v1.2.12

Also, note the warning: Version 1.2.12 skips over 1.2.0
This can be safely ignored. However, if you want to fix this you can do so. Call register() again after making the fix. This will update the Pull request.

Please sign in to comment.