Fix style issue in vulkan dep
This commit is contained in:
parent
005e041645
commit
02e5c58efc
|
@ -556,7 +556,7 @@ class VulkanDependency(ExternalDependency):
|
||||||
else:
|
else:
|
||||||
# simply try to guess it, usually works on linux
|
# simply try to guess it, usually works on linux
|
||||||
libs = self.compiler.find_library('vulkan', environment, [])
|
libs = self.compiler.find_library('vulkan', environment, [])
|
||||||
if libs != None and self.compiler.has_header('vulkan/vulkan.h', '', environment):
|
if libs is not None and self.compiler.has_header('vulkan/vulkan.h', '', environment):
|
||||||
self.type_name = 'system'
|
self.type_name = 'system'
|
||||||
self.is_found = True
|
self.is_found = True
|
||||||
self.version = 1 # TODO
|
self.version = 1 # TODO
|
||||||
|
|
Loading…
Reference in New Issue