diff options
author | David Robillard <d@drobilla.net> | 2020-11-21 17:48:19 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-11-25 14:18:04 +0100 |
commit | 3e9a2e01da169007b6fc16492f812055645f6d5f (patch) | |
tree | e761ca334ee9b0e3bd91b3a6f83ab1373dd7aa7f /wscript | |
parent | 6426b03476fb91efbd90acd599472010f5474390 (diff) | |
download | pugl-3e9a2e01da169007b6fc16492f812055645f6d5f.tar.gz pugl-3e9a2e01da169007b6fc16492f812055645f6d5f.tar.bz2 pugl-3e9a2e01da169007b6fc16492f812055645f6d5f.zip |
Pass vkGetInstanceProcAddr to puglCreateSurface instead of a loader
This allows puglCreateSurface() to be used with some other loader, or when
linking to Vulkan at compile time.
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -134,6 +134,7 @@ def configure(conf): '/wd4868', # may not enforce left-to-right evaluation order '/wd5026', # move constructor implicitly deleted '/wd5027', # move assignment operator implicitly deleted + '/wd5039', # pointer to throwing function passed to C function ], }) |