Add vulkan symbols (exp via ctags)
This commit is contained in:
parent
8b1e936a50
commit
30dc69d277
5 changed files with 1935 additions and 0 deletions
8
vulkan_symbols/bash.sh
Normal file
8
vulkan_symbols/bash.sh
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
|
||||||
|
# regex: (\S+) (.*?); -> $1
|
||||||
|
ctags -x --c-types=t /usr/include/vulkan/vulkan_core.h > vulkan_core_types
|
||||||
|
ctags -x --c-types=t /usr/include/vulkan/vulkan_xcb.h > vulkan_xcb_types
|
||||||
|
ctags -x --c-types=t /usr/include/vulkan/vulkan_xlib.h > vulkan_xlib_types
|
||||||
|
ctags -x --c-types=t /usr/include/vulkan/vulkan_wayland.h > vulkan_wayland_types
|
1915
vulkan_symbols/vulkan_core_symbols
Normal file
1915
vulkan_symbols/vulkan_core_symbols
Normal file
File diff suppressed because it is too large
Load diff
4
vulkan_symbols/vulkan_wayland_types
Normal file
4
vulkan_symbols/vulkan_wayland_types
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
PFN_vkCreateWaylandSurfaceKHR
|
||||||
|
PFN_vkGetPhysicalDeviceWaylandPresentationSupportKHR
|
||||||
|
VkWaylandSurfaceCreateFlagsKHR
|
||||||
|
VkWaylandSurfaceCreateInfoKHR
|
4
vulkan_symbols/vulkan_xcb_types
Normal file
4
vulkan_symbols/vulkan_xcb_types
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
PFN_vkCreateXcbSurfaceKHR
|
||||||
|
PFN_vkGetPhysicalDeviceXcbPresentationSupportKHR
|
||||||
|
VkXcbSurfaceCreateFlagsKHR
|
||||||
|
VkXcbSurfaceCreateInfoKHR
|
4
vulkan_symbols/vulkan_xlib_types
Normal file
4
vulkan_symbols/vulkan_xlib_types
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
PFN_vkCreateXlibSurfaceKHR
|
||||||
|
PFN_vkGetPhysicalDeviceXlibPresentationSupportKHR
|
||||||
|
VkXlibSurfaceCreateFlagsKHR
|
||||||
|
VkXlibSurfaceCreateInfoKHR
|
Loading…
Reference in a new issue