vulkan-ruby 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (350) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +10 -0
  3. data/.simplecov +6 -0
  4. data/.travis.yml +5 -0
  5. data/Gemfile +6 -0
  6. data/Gemfile.lock +51 -0
  7. data/LICENSE.txt +21 -0
  8. data/README.md +93 -0
  9. data/Rakefile +14 -0
  10. data/bin/console +14 -0
  11. data/bin/setup +9 -0
  12. data/bin/setup.bat +2 -0
  13. data/examples/models/viking_room.obj +16053 -0
  14. data/examples/screenshots/vt10-viking_room.png +0 -0
  15. data/examples/shaders/depth_buffering.vert +25 -0
  16. data/examples/shaders/depth_buffering.vert.spv +0 -0
  17. data/examples/shaders/model_loading.frag +13 -0
  18. data/examples/shaders/model_loading.frag.spv +0 -0
  19. data/examples/shaders/model_loading.vert +25 -0
  20. data/examples/shaders/model_loading.vert.spv +0 -0
  21. data/examples/shaders/textures.frag +13 -0
  22. data/examples/shaders/textures.frag.spv +0 -0
  23. data/examples/shaders/textures.vert +25 -0
  24. data/examples/shaders/textures.vert.spv +0 -0
  25. data/examples/shaders/triangle.frag +10 -0
  26. data/examples/shaders/triangle.frag.spv +0 -0
  27. data/examples/shaders/triangle.vert +25 -0
  28. data/examples/shaders/triangle.vert.spv +0 -0
  29. data/examples/shaders/uniform_buffer.vert +22 -0
  30. data/examples/shaders/uniform_buffer.vert.spv +0 -0
  31. data/examples/shaders/vertex_buffer.vert +16 -0
  32. data/examples/shaders/vertex_buffer.vert.spv +0 -0
  33. data/examples/textures/texture.png +0 -0
  34. data/examples/textures/viking_room.png +0 -0
  35. data/examples/vt00_dump_info.rb +24 -0
  36. data/examples/vt01_triangle.rb +140 -0
  37. data/examples/vt02_vertex_buffer_triangle_host_visible.rb +164 -0
  38. data/examples/vt03_vertex_buffer_triangle_device_local.rb +174 -0
  39. data/examples/vt04_index_buffer_device_local.rb +193 -0
  40. data/examples/vt05_uniform_buffers.rb +237 -0
  41. data/examples/vt06_textures.rb +275 -0
  42. data/examples/vt07_depth_buffering.rb +315 -0
  43. data/examples/vt08_model_loading.rb +321 -0
  44. data/examples/vt09_mipmaps.rb +329 -0
  45. data/examples/vt10_multisampling.rb +344 -0
  46. data/lib/fiddle_ext.rb +15 -0
  47. data/lib/vulkan/buffer.rb +66 -0
  48. data/lib/vulkan/buffer_memory.rb +13 -0
  49. data/lib/vulkan/checks.rb +12 -0
  50. data/lib/vulkan/command_buffer.rb +380 -0
  51. data/lib/vulkan/command_pool.rb +28 -0
  52. data/lib/vulkan/conversions.rb +511 -0
  53. data/lib/vulkan/descriptor_pool.rb +45 -0
  54. data/lib/vulkan/descriptor_set.rb +86 -0
  55. data/lib/vulkan/descriptor_set_layout.rb +39 -0
  56. data/lib/vulkan/dispatch_table.rb +78 -0
  57. data/lib/vulkan/error.rb +43 -0
  58. data/lib/vulkan/fence.rb +32 -0
  59. data/lib/vulkan/finalizer.rb +43 -0
  60. data/lib/vulkan/framebuffer.rb +37 -0
  61. data/lib/vulkan/generated/commands.rb +298 -0
  62. data/lib/vulkan/generated/enums.rb +1049 -0
  63. data/lib/vulkan/generated/extensions/reserved_do_not_use_146.rb +8 -0
  64. data/lib/vulkan/generated/extensions/reserved_do_not_use_94.rb +8 -0
  65. data/lib/vulkan/generated/extensions/vk_amd_buffer_marker.rb +10 -0
  66. data/lib/vulkan/generated/extensions/vk_amd_draw_indirect_count.rb +10 -0
  67. data/lib/vulkan/generated/extensions/vk_amd_extension_134.rb +10 -0
  68. data/lib/vulkan/generated/extensions/vk_amd_extension_135.rb +10 -0
  69. data/lib/vulkan/generated/extensions/vk_amd_extension_136.rb +10 -0
  70. data/lib/vulkan/generated/extensions/vk_amd_extension_140.rb +10 -0
  71. data/lib/vulkan/generated/extensions/vk_amd_extension_142.rb +10 -0
  72. data/lib/vulkan/generated/extensions/vk_amd_extension_143.rb +10 -0
  73. data/lib/vulkan/generated/extensions/vk_amd_extension_17.rb +10 -0
  74. data/lib/vulkan/generated/extensions/vk_amd_extension_18.rb +10 -0
  75. data/lib/vulkan/generated/extensions/vk_amd_extension_182.rb +10 -0
  76. data/lib/vulkan/generated/extensions/vk_amd_extension_183.rb +10 -0
  77. data/lib/vulkan/generated/extensions/vk_amd_extension_184.rb +10 -0
  78. data/lib/vulkan/generated/extensions/vk_amd_extension_187.rb +10 -0
  79. data/lib/vulkan/generated/extensions/vk_amd_extension_188.rb +10 -0
  80. data/lib/vulkan/generated/extensions/vk_amd_extension_189.rb +10 -0
  81. data/lib/vulkan/generated/extensions/vk_amd_extension_20.rb +10 -0
  82. data/lib/vulkan/generated/extensions/vk_amd_extension_214.rb +10 -0
  83. data/lib/vulkan/generated/extensions/vk_amd_extension_226.rb +10 -0
  84. data/lib/vulkan/generated/extensions/vk_amd_extension_227.rb +10 -0
  85. data/lib/vulkan/generated/extensions/vk_amd_extension_228.rb +10 -0
  86. data/lib/vulkan/generated/extensions/vk_amd_extension_229.rb +10 -0
  87. data/lib/vulkan/generated/extensions/vk_amd_extension_230.rb +10 -0
  88. data/lib/vulkan/generated/extensions/vk_amd_extension_231.rb +10 -0
  89. data/lib/vulkan/generated/extensions/vk_amd_extension_232.rb +10 -0
  90. data/lib/vulkan/generated/extensions/vk_amd_extension_233.rb +10 -0
  91. data/lib/vulkan/generated/extensions/vk_amd_extension_234.rb +10 -0
  92. data/lib/vulkan/generated/extensions/vk_amd_extension_235.rb +10 -0
  93. data/lib/vulkan/generated/extensions/vk_amd_extension_236.rb +10 -0
  94. data/lib/vulkan/generated/extensions/vk_amd_extension_24.rb +10 -0
  95. data/lib/vulkan/generated/extensions/vk_amd_extension_25.rb +10 -0
  96. data/lib/vulkan/generated/extensions/vk_amd_extension_32.rb +10 -0
  97. data/lib/vulkan/generated/extensions/vk_amd_extension_33.rb +10 -0
  98. data/lib/vulkan/generated/extensions/vk_amd_extension_35.rb +10 -0
  99. data/lib/vulkan/generated/extensions/vk_amd_extension_39.rb +10 -0
  100. data/lib/vulkan/generated/extensions/vk_amd_extension_40.rb +10 -0
  101. data/lib/vulkan/generated/extensions/vk_amd_extension_41.rb +10 -0
  102. data/lib/vulkan/generated/extensions/vk_amd_extension_44.rb +10 -0
  103. data/lib/vulkan/generated/extensions/vk_amd_extension_45.rb +10 -0
  104. data/lib/vulkan/generated/extensions/vk_amd_extension_46.rb +10 -0
  105. data/lib/vulkan/generated/extensions/vk_amd_gcn_shader.rb +10 -0
  106. data/lib/vulkan/generated/extensions/vk_amd_gpu_shader_half_float.rb +10 -0
  107. data/lib/vulkan/generated/extensions/vk_amd_gpu_shader_int16.rb +10 -0
  108. data/lib/vulkan/generated/extensions/vk_amd_memory_overallocation_behavior.rb +11 -0
  109. data/lib/vulkan/generated/extensions/vk_amd_mixed_attachment_samples.rb +10 -0
  110. data/lib/vulkan/generated/extensions/vk_amd_negative_viewport_height.rb +10 -0
  111. data/lib/vulkan/generated/extensions/vk_amd_rasterization_order.rb +11 -0
  112. data/lib/vulkan/generated/extensions/vk_amd_shader_ballot.rb +10 -0
  113. data/lib/vulkan/generated/extensions/vk_amd_shader_core_properties.rb +11 -0
  114. data/lib/vulkan/generated/extensions/vk_amd_shader_explicit_vertex_parameter.rb +10 -0
  115. data/lib/vulkan/generated/extensions/vk_amd_shader_fragment_mask.rb +10 -0
  116. data/lib/vulkan/generated/extensions/vk_amd_shader_image_load_store_lod.rb +10 -0
  117. data/lib/vulkan/generated/extensions/vk_amd_shader_info.rb +10 -0
  118. data/lib/vulkan/generated/extensions/vk_amd_shader_trinary_minmax.rb +10 -0
  119. data/lib/vulkan/generated/extensions/vk_amd_texture_gather_bias_lod.rb +11 -0
  120. data/lib/vulkan/generated/extensions/vk_android_external_memory_android_hardware_buffer.rb +17 -0
  121. data/lib/vulkan/generated/extensions/vk_android_native_buffer.rb +12 -0
  122. data/lib/vulkan/generated/extensions/vk_arm_extension_01.rb +10 -0
  123. data/lib/vulkan/generated/extensions/vk_arm_extension_198.rb +10 -0
  124. data/lib/vulkan/generated/extensions/vk_ext_acquire_xlib_display.rb +10 -0
  125. data/lib/vulkan/generated/extensions/vk_ext_astc_decode_mode.rb +12 -0
  126. data/lib/vulkan/generated/extensions/vk_ext_blend_operation_advanced.rb +60 -0
  127. data/lib/vulkan/generated/extensions/vk_ext_calibrated_timestamps.rb +11 -0
  128. data/lib/vulkan/generated/extensions/vk_ext_conditional_rendering.rb +16 -0
  129. data/lib/vulkan/generated/extensions/vk_ext_conservative_rasterization.rb +12 -0
  130. data/lib/vulkan/generated/extensions/vk_ext_debug_marker.rb +13 -0
  131. data/lib/vulkan/generated/extensions/vk_ext_debug_report.rb +16 -0
  132. data/lib/vulkan/generated/extensions/vk_ext_debug_utils.rb +16 -0
  133. data/lib/vulkan/generated/extensions/vk_ext_depth_range_unrestricted.rb +10 -0
  134. data/lib/vulkan/generated/extensions/vk_ext_descriptor_indexing.rb +18 -0
  135. data/lib/vulkan/generated/extensions/vk_ext_direct_mode_display.rb +10 -0
  136. data/lib/vulkan/generated/extensions/vk_ext_discard_rectangles.rb +13 -0
  137. data/lib/vulkan/generated/extensions/vk_ext_display_control.rb +14 -0
  138. data/lib/vulkan/generated/extensions/vk_ext_display_surface_counter.rb +12 -0
  139. data/lib/vulkan/generated/extensions/vk_ext_extension_160.rb +10 -0
  140. data/lib/vulkan/generated/extensions/vk_ext_extension_176.rb +10 -0
  141. data/lib/vulkan/generated/extensions/vk_ext_extension_177.rb +10 -0
  142. data/lib/vulkan/generated/extensions/vk_ext_extension_219.rb +15 -0
  143. data/lib/vulkan/generated/extensions/vk_ext_extension_220.rb +10 -0
  144. data/lib/vulkan/generated/extensions/vk_ext_extension_222.rb +10 -0
  145. data/lib/vulkan/generated/extensions/vk_ext_extension_223.rb +10 -0
  146. data/lib/vulkan/generated/extensions/vk_ext_extension_28.rb +10 -0
  147. data/lib/vulkan/generated/extensions/vk_ext_external_memory_dma_buf.rb +11 -0
  148. data/lib/vulkan/generated/extensions/vk_ext_external_memory_host.rb +15 -0
  149. data/lib/vulkan/generated/extensions/vk_ext_global_priority.rb +12 -0
  150. data/lib/vulkan/generated/extensions/vk_ext_hdr_metadata.rb +11 -0
  151. data/lib/vulkan/generated/extensions/vk_ext_image_drm_format_modifier.rb +24 -0
  152. data/lib/vulkan/generated/extensions/vk_ext_inline_uniform_block.rb +15 -0
  153. data/lib/vulkan/generated/extensions/vk_ext_macos_ios_window.rb +10 -0
  154. data/lib/vulkan/generated/extensions/vk_ext_pci_bus_info.rb +11 -0
  155. data/lib/vulkan/generated/extensions/vk_ext_post_depth_coverage.rb +10 -0
  156. data/lib/vulkan/generated/extensions/vk_ext_queue_family_foreign.rb +11 -0
  157. data/lib/vulkan/generated/extensions/vk_ext_sample_locations.rb +17 -0
  158. data/lib/vulkan/generated/extensions/vk_ext_sampler_filter_minmax.rb +13 -0
  159. data/lib/vulkan/generated/extensions/vk_ext_shader_stencil_export.rb +10 -0
  160. data/lib/vulkan/generated/extensions/vk_ext_shader_subgroup_ballot.rb +10 -0
  161. data/lib/vulkan/generated/extensions/vk_ext_shader_subgroup_vote.rb +10 -0
  162. data/lib/vulkan/generated/extensions/vk_ext_shader_viewport_index_layer.rb +10 -0
  163. data/lib/vulkan/generated/extensions/vk_ext_swapchain_colorspace.rb +24 -0
  164. data/lib/vulkan/generated/extensions/vk_ext_transform_feedback.rb +20 -0
  165. data/lib/vulkan/generated/extensions/vk_ext_validation_cache.rb +13 -0
  166. data/lib/vulkan/generated/extensions/vk_ext_validation_flags.rb +11 -0
  167. data/lib/vulkan/generated/extensions/vk_ext_vertex_attribute_divisor.rb +13 -0
  168. data/lib/vulkan/generated/extensions/vk_fuchsia_imagepipe_surface.rb +11 -0
  169. data/lib/vulkan/generated/extensions/vk_google_decorate_string.rb +10 -0
  170. data/lib/vulkan/generated/extensions/vk_google_display_timing.rb +11 -0
  171. data/lib/vulkan/generated/extensions/vk_google_extension_192.rb +10 -0
  172. data/lib/vulkan/generated/extensions/vk_google_extension_193.rb +10 -0
  173. data/lib/vulkan/generated/extensions/vk_google_extension_194.rb +10 -0
  174. data/lib/vulkan/generated/extensions/vk_google_extension_195.rb +10 -0
  175. data/lib/vulkan/generated/extensions/vk_google_extension_196.rb +10 -0
  176. data/lib/vulkan/generated/extensions/vk_google_extension_216.rb +10 -0
  177. data/lib/vulkan/generated/extensions/vk_google_extension_217.rb +10 -0
  178. data/lib/vulkan/generated/extensions/vk_google_extension_49.rb +10 -0
  179. data/lib/vulkan/generated/extensions/vk_google_extension_50.rb +10 -0
  180. data/lib/vulkan/generated/extensions/vk_google_hlsl_functionality1.rb +10 -0
  181. data/lib/vulkan/generated/extensions/vk_img_extension_107.rb +10 -0
  182. data/lib/vulkan/generated/extensions/vk_img_extension_108.rb +10 -0
  183. data/lib/vulkan/generated/extensions/vk_img_extension_109.rb +10 -0
  184. data/lib/vulkan/generated/extensions/vk_img_extension_111.rb +10 -0
  185. data/lib/vulkan/generated/extensions/vk_img_extension_69.rb +10 -0
  186. data/lib/vulkan/generated/extensions/vk_img_filter_cubic.rb +12 -0
  187. data/lib/vulkan/generated/extensions/vk_img_format_pvrtc.rb +18 -0
  188. data/lib/vulkan/generated/extensions/vk_intel_extension_210.rb +10 -0
  189. data/lib/vulkan/generated/extensions/vk_intel_extension_211.rb +10 -0
  190. data/lib/vulkan/generated/extensions/vk_intel_extension_243.rb +10 -0
  191. data/lib/vulkan/generated/extensions/vk_khr_16bit_storage.rb +11 -0
  192. data/lib/vulkan/generated/extensions/vk_khr_8bit_storage.rb +11 -0
  193. data/lib/vulkan/generated/extensions/vk_khr_android_surface.rb +11 -0
  194. data/lib/vulkan/generated/extensions/vk_khr_bind_memory2.rb +13 -0
  195. data/lib/vulkan/generated/extensions/vk_khr_create_renderpass2.rb +17 -0
  196. data/lib/vulkan/generated/extensions/vk_khr_dedicated_allocation.rb +12 -0
  197. data/lib/vulkan/generated/extensions/vk_khr_descriptor_update_template.rb +15 -0
  198. data/lib/vulkan/generated/extensions/vk_khr_device_group.rb +33 -0
  199. data/lib/vulkan/generated/extensions/vk_khr_device_group_creation.rb +14 -0
  200. data/lib/vulkan/generated/extensions/vk_khr_display.rb +14 -0
  201. data/lib/vulkan/generated/extensions/vk_khr_display_swapchain.rb +12 -0
  202. data/lib/vulkan/generated/extensions/vk_khr_draw_indirect_count.rb +10 -0
  203. data/lib/vulkan/generated/extensions/vk_khr_driver_properties.rb +13 -0
  204. data/lib/vulkan/generated/extensions/vk_khr_extension_117.rb +10 -0
  205. data/lib/vulkan/generated/extensions/vk_khr_extension_119.rb +10 -0
  206. data/lib/vulkan/generated/extensions/vk_khr_extension_200.rb +10 -0
  207. data/lib/vulkan/generated/extensions/vk_khr_extension_201.rb +10 -0
  208. data/lib/vulkan/generated/extensions/vk_khr_extension_208.rb +10 -0
  209. data/lib/vulkan/generated/extensions/vk_khr_extension_209.rb +10 -0
  210. data/lib/vulkan/generated/extensions/vk_khr_extension_221.rb +11 -0
  211. data/lib/vulkan/generated/extensions/vk_khr_extension_237.rb +10 -0
  212. data/lib/vulkan/generated/extensions/vk_khr_extension_238.rb +10 -0
  213. data/lib/vulkan/generated/extensions/vk_khr_extension_239.rb +10 -0
  214. data/lib/vulkan/generated/extensions/vk_khr_extension_240.rb +10 -0
  215. data/lib/vulkan/generated/extensions/vk_khr_extension_83.rb +10 -0
  216. data/lib/vulkan/generated/extensions/vk_khr_external_fence.rb +12 -0
  217. data/lib/vulkan/generated/extensions/vk_khr_external_fence_capabilities.rb +19 -0
  218. data/lib/vulkan/generated/extensions/vk_khr_external_fence_fd.rb +12 -0
  219. data/lib/vulkan/generated/extensions/vk_khr_external_fence_win32.rb +13 -0
  220. data/lib/vulkan/generated/extensions/vk_khr_external_memory.rb +15 -0
  221. data/lib/vulkan/generated/extensions/vk_khr_external_memory_capabilities.rb +26 -0
  222. data/lib/vulkan/generated/extensions/vk_khr_external_memory_fd.rb +13 -0
  223. data/lib/vulkan/generated/extensions/vk_khr_external_memory_win32.rb +14 -0
  224. data/lib/vulkan/generated/extensions/vk_khr_external_semaphore.rb +12 -0
  225. data/lib/vulkan/generated/extensions/vk_khr_external_semaphore_capabilities.rb +20 -0
  226. data/lib/vulkan/generated/extensions/vk_khr_external_semaphore_fd.rb +12 -0
  227. data/lib/vulkan/generated/extensions/vk_khr_external_semaphore_win32.rb +14 -0
  228. data/lib/vulkan/generated/extensions/vk_khr_get_display_properties2.rb +15 -0
  229. data/lib/vulkan/generated/extensions/vk_khr_get_memory_requirements2.rb +15 -0
  230. data/lib/vulkan/generated/extensions/vk_khr_get_physical_device_properties2.rb +19 -0
  231. data/lib/vulkan/generated/extensions/vk_khr_get_surface_capabilities2.rb +13 -0
  232. data/lib/vulkan/generated/extensions/vk_khr_image_format_list.rb +11 -0
  233. data/lib/vulkan/generated/extensions/vk_khr_incremental_present.rb +11 -0
  234. data/lib/vulkan/generated/extensions/vk_khr_maintenance1.rb +14 -0
  235. data/lib/vulkan/generated/extensions/vk_khr_maintenance2.rb +22 -0
  236. data/lib/vulkan/generated/extensions/vk_khr_maintenance3.rb +12 -0
  237. data/lib/vulkan/generated/extensions/vk_khr_mir_surface.rb +10 -0
  238. data/lib/vulkan/generated/extensions/vk_khr_multiview.rb +14 -0
  239. data/lib/vulkan/generated/extensions/vk_khr_push_descriptor.rb +13 -0
  240. data/lib/vulkan/generated/extensions/vk_khr_relaxed_block_layout.rb +10 -0
  241. data/lib/vulkan/generated/extensions/vk_khr_sampler_mirror_clamp_to_edge.rb +11 -0
  242. data/lib/vulkan/generated/extensions/vk_khr_sampler_ycbcr_conversion.rb +73 -0
  243. data/lib/vulkan/generated/extensions/vk_khr_shader_atomic_int64.rb +11 -0
  244. data/lib/vulkan/generated/extensions/vk_khr_shader_draw_parameters.rb +10 -0
  245. data/lib/vulkan/generated/extensions/vk_khr_shared_presentable_image.rb +14 -0
  246. data/lib/vulkan/generated/extensions/vk_khr_storage_buffer_storage_class.rb +10 -0
  247. data/lib/vulkan/generated/extensions/vk_khr_surface.rb +13 -0
  248. data/lib/vulkan/generated/extensions/vk_khr_swapchain.rb +24 -0
  249. data/lib/vulkan/generated/extensions/vk_khr_variable_pointers.rb +11 -0
  250. data/lib/vulkan/generated/extensions/vk_khr_vulkan_memory_model.rb +11 -0
  251. data/lib/vulkan/generated/extensions/vk_khr_wayland_surface.rb +11 -0
  252. data/lib/vulkan/generated/extensions/vk_khr_win32_keyed_mutex.rb +11 -0
  253. data/lib/vulkan/generated/extensions/vk_khr_win32_surface.rb +11 -0
  254. data/lib/vulkan/generated/extensions/vk_khr_xcb_surface.rb +11 -0
  255. data/lib/vulkan/generated/extensions/vk_khr_xlib_surface.rb +11 -0
  256. data/lib/vulkan/generated/extensions/vk_mesa_extension_244.rb +10 -0
  257. data/lib/vulkan/generated/extensions/vk_mvk_ios_surface.rb +11 -0
  258. data/lib/vulkan/generated/extensions/vk_mvk_macos_surface.rb +11 -0
  259. data/lib/vulkan/generated/extensions/vk_mvk_moltenvk.rb +10 -0
  260. data/lib/vulkan/generated/extensions/vk_nn_vi_surface.rb +11 -0
  261. data/lib/vulkan/generated/extensions/vk_nv_clip_space_w_scaling.rb +12 -0
  262. data/lib/vulkan/generated/extensions/vk_nv_compute_shader_derivatives.rb +11 -0
  263. data/lib/vulkan/generated/extensions/vk_nv_corner_sampled_image.rb +12 -0
  264. data/lib/vulkan/generated/extensions/vk_nv_dedicated_allocation.rb +13 -0
  265. data/lib/vulkan/generated/extensions/vk_nv_device_diagnostic_checkpoints.rb +12 -0
  266. data/lib/vulkan/generated/extensions/vk_nv_extension_101.rb +10 -0
  267. data/lib/vulkan/generated/extensions/vk_nv_extension_103.rb +10 -0
  268. data/lib/vulkan/generated/extensions/vk_nv_extension_104.rb +10 -0
  269. data/lib/vulkan/generated/extensions/vk_nv_extension_151.rb +10 -0
  270. data/lib/vulkan/generated/extensions/vk_nv_extension_152.rb +10 -0
  271. data/lib/vulkan/generated/extensions/vk_nv_extension_155.rb +10 -0
  272. data/lib/vulkan/generated/extensions/vk_nv_extension_164.rb +10 -0
  273. data/lib/vulkan/generated/extensions/vk_nv_extension_168.rb +10 -0
  274. data/lib/vulkan/generated/extensions/vk_nv_extension_241.rb +10 -0
  275. data/lib/vulkan/generated/extensions/vk_nv_extension_242.rb +10 -0
  276. data/lib/vulkan/generated/extensions/vk_nv_extension_245.rb +10 -0
  277. data/lib/vulkan/generated/extensions/vk_nv_extension_53.rb +10 -0
  278. data/lib/vulkan/generated/extensions/vk_nv_external_memory.rb +12 -0
  279. data/lib/vulkan/generated/extensions/vk_nv_external_memory_capabilities.rb +10 -0
  280. data/lib/vulkan/generated/extensions/vk_nv_external_memory_win32.rb +12 -0
  281. data/lib/vulkan/generated/extensions/vk_nv_fill_rectangle.rb +11 -0
  282. data/lib/vulkan/generated/extensions/vk_nv_fragment_coverage_to_color.rb +11 -0
  283. data/lib/vulkan/generated/extensions/vk_nv_fragment_shader_barycentric.rb +11 -0
  284. data/lib/vulkan/generated/extensions/vk_nv_framebuffer_mixed_samples.rb +11 -0
  285. data/lib/vulkan/generated/extensions/vk_nv_geometry_shader_passthrough.rb +10 -0
  286. data/lib/vulkan/generated/extensions/vk_nv_glsl_shader.rb +11 -0
  287. data/lib/vulkan/generated/extensions/vk_nv_mesh_shader.rb +16 -0
  288. data/lib/vulkan/generated/extensions/vk_nv_ray_tracing.rb +40 -0
  289. data/lib/vulkan/generated/extensions/vk_nv_representative_fragment_test.rb +12 -0
  290. data/lib/vulkan/generated/extensions/vk_nv_sample_mask_override_coverage.rb +10 -0
  291. data/lib/vulkan/generated/extensions/vk_nv_scissor_exclusive.rb +13 -0
  292. data/lib/vulkan/generated/extensions/vk_nv_shader_image_footprint.rb +11 -0
  293. data/lib/vulkan/generated/extensions/vk_nv_shader_subgroup_partitioned.rb +11 -0
  294. data/lib/vulkan/generated/extensions/vk_nv_shading_rate_image.rb +20 -0
  295. data/lib/vulkan/generated/extensions/vk_nv_viewport_array2.rb +10 -0
  296. data/lib/vulkan/generated/extensions/vk_nv_viewport_swizzle.rb +11 -0
  297. data/lib/vulkan/generated/extensions/vk_nv_win32_keyed_mutex.rb +11 -0
  298. data/lib/vulkan/generated/extensions/vk_nvx_device_generated_commands.rb +21 -0
  299. data/lib/vulkan/generated/extensions/vk_nvx_extension_30.rb +10 -0
  300. data/lib/vulkan/generated/extensions/vk_nvx_extension_31.rb +10 -0
  301. data/lib/vulkan/generated/extensions/vk_nvx_extension_48.rb +10 -0
  302. data/lib/vulkan/generated/extensions/vk_nvx_extension_52.rb +10 -0
  303. data/lib/vulkan/generated/extensions/vk_nvx_multiview_per_view_attributes.rb +13 -0
  304. data/lib/vulkan/generated/extensions/vk_qcom_extension_171.rb +10 -0
  305. data/lib/vulkan/generated/extensions/vk_qcom_extension_172.rb +10 -0
  306. data/lib/vulkan/generated/extensions/vk_qcom_extension_173.rb +10 -0
  307. data/lib/vulkan/generated/extensions/vk_qcom_extension_174.rb +10 -0
  308. data/lib/vulkan/generated/extensions.rb +251 -0
  309. data/lib/vulkan/generated/structs.rb +2600 -0
  310. data/lib/vulkan/generated/types.rb +348 -0
  311. data/lib/vulkan/generated/vk.xml +10127 -0
  312. data/lib/vulkan/generated.rb +77 -0
  313. data/lib/vulkan/image.rb +263 -0
  314. data/lib/vulkan/image_memory.rb +13 -0
  315. data/lib/vulkan/image_view.rb +46 -0
  316. data/lib/vulkan/instance.rb +183 -0
  317. data/lib/vulkan/logical_device.rb +165 -0
  318. data/lib/vulkan/memory.rb +171 -0
  319. data/lib/vulkan/mock/swapchain_surface_info.rb +42 -0
  320. data/lib/vulkan/mock.rb +5 -0
  321. data/lib/vulkan/physical_device.rb +162 -0
  322. data/lib/vulkan/pipeline.rb +294 -0
  323. data/lib/vulkan/platform.rb +34 -0
  324. data/lib/vulkan/queue.rb +94 -0
  325. data/lib/vulkan/queue_family.rb +27 -0
  326. data/lib/vulkan/render_pass/subpass.rb +80 -0
  327. data/lib/vulkan/render_pass.rb +71 -0
  328. data/lib/vulkan/sampler.rb +48 -0
  329. data/lib/vulkan/semaphore.rb +16 -0
  330. data/lib/vulkan/shader_stage.rb +33 -0
  331. data/lib/vulkan/surface.rb +10 -0
  332. data/lib/vulkan/swapchain.rb +87 -0
  333. data/lib/vulkan/swapchain_builder.rb +111 -0
  334. data/lib/vulkan/swapchain_surface_info.rb +54 -0
  335. data/lib/vulkan/version.rb +3 -0
  336. data/lib/vulkan/window_surface.rb +13 -0
  337. data/lib/vulkan-ruby.rb +1 -0
  338. data/lib/vulkan.rb +91 -0
  339. data/tasks/examples.rake +29 -0
  340. data/tasks/fetch.rake +9 -0
  341. data/tasks/generate/commands.rake +51 -0
  342. data/tasks/generate/enums.rake +43 -0
  343. data/tasks/generate/extensions.rake +35 -0
  344. data/tasks/generate/structs.rake +117 -0
  345. data/tasks/generate/types.rake +91 -0
  346. data/tasks/generate.rake +2 -0
  347. data/tasks/helpers.rb +59 -0
  348. data/tasks/shaders.rake +8 -0
  349. data/vulkan-ruby.gemspec +45 -0
  350. metadata +546 -0
@@ -0,0 +1,78 @@
1
+ require 'vulkan/platform'
2
+
3
+ module Vulkan
4
+ class DispatchTable
5
+ include Vulkan::Platform
6
+
7
+ attr_reader :instance, :device
8
+
9
+ def initialize(instance, device)
10
+ # NOTE it's important we keep handles to both instance and device to
11
+ # avoid garbage collection of those objects if they should go out of
12
+ # scope in the greater program. As long as anyone keeps a handle to
13
+ # this dispatch table, they are still using both the device and
14
+ # instance, and premature GC of those objects can be catastrophic
15
+ # (segfaults). Because of the #to_ptr below, this may constitute a bit
16
+ # of a refactor later on, for clarity's sake -- but for now merely
17
+ # keeping the handles around is good enough.
18
+ @_instance = instance
19
+ @_device = device
20
+
21
+ @instance = instance.respond_to?(:to_ptr) ? instance.to_ptr : instance
22
+ @device = device.respond_to?(:to_ptr) ? device.to_ptr : device
23
+ raise ArgumentError, "instance must be a pointer or nil" unless @instance.nil? || @instance.kind_of?(Fiddle::Pointer)
24
+ raise ArgumentError, "device must be a pointer or nil" unless @device.nil? || @device.kind_of?(Fiddle::Pointer)
25
+ end
26
+
27
+ def respond_to?(method_name)
28
+ super || Vulkan.function_registry.key?(method_name)
29
+ end
30
+
31
+ def inspect
32
+ "#<#{self.class} instance@#{instance.to_i.to_s(16)} device@#{device.to_i.to_s(16)}>"
33
+ end
34
+
35
+ def call_trace(name, calling_convention, *params)
36
+ if ENV['CALL_TRACE']
37
+ args_s = params.map do |arg|
38
+ arg = arg.to_ptr if arg.respond_to?(:to_ptr)
39
+ arg.kind_of?(Fiddle::Pointer) ? arg.to_i.to_s(16) : arg.inspect
40
+ end
41
+ suffix = " as #{calling_convention}" if calling_convention != :default
42
+ puts "CALL: #{@instance.to_i.to_s(16)}/#{@device.to_i.to_s(16)}/#{name}(#{args_s.join(', ')})#{suffix}"
43
+ end
44
+ end
45
+
46
+ def vkGetInstanceProcAddr(*args)
47
+ call_trace(:vkGetInstanceProcAddr, calling_convention_human, *args)
48
+ Vulkan.vkGetInstanceProcAddr(*args)
49
+ end
50
+
51
+ def method_missing(name, *args)
52
+ super unless respond_to?(name)
53
+ function_info = Vulkan.function_registry[name]
54
+
55
+ if @instance.nil? || @device.nil? || name == :vkGetDeviceProcAddr
56
+ # instance function
57
+ puts "LOOKUP: Looking up instance function #{name.inspect}" if ENV['CALL_TRACE']
58
+ addr = vkGetInstanceProcAddr(@instance, name.to_s)
59
+ else
60
+ # device function, but fall back to instance if device func lookup fails
61
+ puts "LOOKUP: Looking up device function #{name.inspect}" if ENV['CALL_TRACE']
62
+ addr = vkGetDeviceProcAddr(@device, name.to_s)
63
+ if addr.to_i == 0
64
+ puts "LOOKUP: Not a device function - Looking up instance function #{name.inspect}" if ENV['CALL_TRACE']
65
+ addr = vkGetInstanceProcAddr(@instance, name.to_s)
66
+ end
67
+ end
68
+
69
+ super if addr.to_i == 0 # method not found
70
+ func = Fiddle::Function.new(addr, function_info[:params_types], function_info[:return_type], calling_convention, name: name)
71
+ define_singleton_method(name) do |*params|
72
+ call_trace(name, calling_convention_human, *params)
73
+ func.call(*params)
74
+ end
75
+ send(name, *args)
76
+ end
77
+ end
78
+ end
@@ -0,0 +1,43 @@
1
+ module Vulkan
2
+ class Error < StandardError
3
+ class ResultCheckError < Error
4
+ # TODO populate these during enum generation
5
+ CODES = {
6
+ VK_SUCCESS => "Command completed successfully",
7
+ VK_NOT_READY => "A fence or query has not yet completed",
8
+ VK_TIMEOUT => "A wait operation has not completed in the specified time",
9
+ VK_EVENT_SET => "An event is signaled",
10
+ VK_EVENT_RESET => "An event is unsignaled",
11
+ VK_INCOMPLETE => "A return array was too small for the result",
12
+ VK_ERROR_OUT_OF_HOST_MEMORY => "A host memory allocation has failed",
13
+ VK_ERROR_OUT_OF_DEVICE_MEMORY => "A device memory allocation has failed",
14
+ VK_ERROR_INITIALIZATION_FAILED => "Initialization of a object has failed",
15
+ VK_ERROR_DEVICE_LOST => "The logical device has been lost. See <<devsandqueues-lost-device>>",
16
+ VK_ERROR_MEMORY_MAP_FAILED => "Mapping of a memory object has failed",
17
+ VK_ERROR_LAYER_NOT_PRESENT => "Layer specified does not exist",
18
+ VK_ERROR_EXTENSION_NOT_PRESENT => "Extension specified does not exist",
19
+ VK_ERROR_FEATURE_NOT_PRESENT => "Requested feature is not available on this device",
20
+ VK_ERROR_INCOMPATIBLE_DRIVER => "Unable to find a compatible Vulkan driver",
21
+ VK_ERROR_TOO_MANY_OBJECTS => "Too many objects of the type have already been created",
22
+ VK_ERROR_FORMAT_NOT_SUPPORTED => "Requested format is not supported on this device",
23
+ VK_ERROR_FRAGMENTED_POOL => "A requested pool allocation has failed due to fragmentation of the pool's memory",
24
+ VK_ERROR_OUT_OF_DATE_KHR => "Swapchain is out of date",
25
+ VK_SUBOPTIMAL_KHR => "Swapchain is suboptimal"
26
+ }
27
+
28
+ attr_reader :code
29
+
30
+ def initialize(code)
31
+ raise 'BUG: error code is nil, probably a in this gem' if code.nil?
32
+ @code = code
33
+ super(CODES[code] || "Unknown error code: 0x#{code.to_s(16)} (#{code})")
34
+ end
35
+ end
36
+
37
+ class UnsupportedFeature < StandardError
38
+ def initialize(ruby_name, vulkan_name)
39
+ super "You requested an unsupported feature: #{vulkan_name} (#{ruby_name.inspect})"
40
+ end
41
+ end
42
+ end
43
+ end
@@ -0,0 +1,32 @@
1
+ module Vulkan
2
+ class Fence
3
+ include Vulkan::Checks
4
+ include Vulkan::Finalizer
5
+
6
+ def initialize(vk, signaled: false)
7
+ @vk = vk
8
+ fence_info = VkFenceCreateInfo.malloc
9
+ fence_info.sType = VK_STRUCTURE_TYPE_FENCE_CREATE_INFO
10
+ fence_info.flags = (signaled ? VK_FENCE_CREATE_SIGNALED_BIT : 0)
11
+ fence_p = Vulkan.create_value('void *', nil)
12
+ check_result @vk.vkCreateFence(@vk.device, fence_info, nil, fence_p)
13
+ @handle = fence_p.value
14
+ finalize_with @vk, :vkDestroyFence, @vk.device, @handle, nil
15
+ @self_p = Vulkan.create_value('void *', nil)
16
+ @self_p.value = @handle
17
+ end
18
+
19
+ def wait
20
+ @vk.vkWaitForFences(@vk.device, 1, @self_p, VK_TRUE, 0xffffffffffffffff)
21
+ end
22
+
23
+ def reset
24
+ @vk.vkResetFences(@vk.device, 1, @self_p)
25
+ end
26
+
27
+ def wait_and_reset
28
+ wait
29
+ reset
30
+ end
31
+ end
32
+ end
@@ -0,0 +1,43 @@
1
+ module Vulkan
2
+ module Finalizer
3
+ module ClassMethods
4
+ def finalizer(vk, cleanup_method_name, *cleanup_method_args)
5
+ proc do
6
+ begin
7
+ unless ENV['NO_FINALIZE']
8
+ if ENV['CALL_TRACE']
9
+ cleanup_method_args_s = cleanup_method_args.map do |arg|
10
+ arg = arg.to_ptr if arg.respond_to?(:to_ptr)
11
+ arg = arg.hexaddr if arg.respond_to?(:hexaddr)
12
+ arg.kind_of?(Fiddle::Pointer) ? arg.to_i.to_s(16) : arg.inspect
13
+ end
14
+ puts "FINALIZE #{name}: #{vk.instance.to_i.to_s(16)}/#{vk.device.to_i.to_s(16)}/(#{cleanup_method_args_s.join(', ')})"
15
+ end
16
+
17
+ vk.send(cleanup_method_name, *cleanup_method_args)
18
+ end
19
+ rescue
20
+ puts $!
21
+ $!.backtrace.each { |line| puts " #{line}" }
22
+ end
23
+ end
24
+ end
25
+ end
26
+
27
+ def self.included(base)
28
+ base.module_eval { extend Vulkan::Finalizer::ClassMethods }
29
+ end
30
+
31
+ def finalize_with(vk, cleanup_method_name, *cleanup_method_args)
32
+ ObjectSpace.define_finalizer(self, self.class.finalizer(vk, cleanup_method_name, *cleanup_method_args))
33
+ end
34
+
35
+ def to_ptr
36
+ @handle
37
+ end
38
+
39
+ def hexaddr
40
+ to_ptr.to_i.to_s(16)
41
+ end
42
+ end
43
+ end
@@ -0,0 +1,37 @@
1
+ module Vulkan
2
+ class Framebuffer
3
+ include Vulkan::Checks
4
+ include Vulkan::Conversions
5
+ include Vulkan::Finalizer
6
+
7
+ attr_reader :width
8
+ attr_reader :height
9
+ attr_reader :layers
10
+
11
+ def initialize(vk, attachments:, width:, height:, render_pass:, layers: 1)
12
+ @vk = vk
13
+ @width = width
14
+ @height = height
15
+ @layers = layers
16
+ @attachments = attachments
17
+
18
+ framebuffer_info = VkFramebufferCreateInfo.malloc
19
+ framebuffer_info.sType = VK_STRUCTURE_TYPE_FRAMEBUFFER_CREATE_INFO
20
+ framebuffer_info.renderPass = render_pass
21
+ framebuffer_info.attachmentCount = attachments.size
22
+ framebuffer_info.pAttachments = array_of_pointers(attachments)
23
+ framebuffer_info.width = width
24
+ framebuffer_info.height = height
25
+ framebuffer_info.layers = layers
26
+
27
+ framebuffer_p = Vulkan.create_value("void *", nil)
28
+ check_result @vk.vkCreateFramebuffer(vk.device, framebuffer_info, nil, framebuffer_p)
29
+ @handle = framebuffer_p.value
30
+ finalize_with vk, :vkDestroyFramebuffer, vk.device, @handle, nil
31
+ end
32
+
33
+ def to_ptr
34
+ @handle
35
+ end
36
+ end
37
+ end
@@ -0,0 +1,298 @@
1
+ # vulkan-ruby 1.0.83.0
2
+ #
3
+ # => https://github.com/sinisterchipmunk/vulkan-ruby
4
+ #
5
+ # [NOTICE] This is an automatically generated file.
6
+
7
+ module Vulkan
8
+ register_function "VkResult vkCreateInstance" , "const VkInstanceCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkInstance* pInstance"
9
+ register_function "void vkDestroyInstance" , "VkInstance instance, const VkAllocationCallbacks* pAllocator"
10
+ register_function "VkResult vkEnumeratePhysicalDevices" , "VkInstance instance, uint32_t* pPhysicalDeviceCount, VkPhysicalDevice* pPhysicalDevices"
11
+ register_function "PFN_vkVoidFunction vkGetDeviceProcAddr" , "VkDevice device, const char* pName"
12
+ register_function "void vkGetPhysicalDeviceProperties" , "VkPhysicalDevice physicalDevice, VkPhysicalDeviceProperties* pProperties"
13
+ register_function "void vkGetPhysicalDeviceQueueFamilyProperties" , "VkPhysicalDevice physicalDevice, uint32_t* pQueueFamilyPropertyCount, VkQueueFamilyProperties* pQueueFamilyProperties"
14
+ register_function "void vkGetPhysicalDeviceMemoryProperties" , "VkPhysicalDevice physicalDevice, VkPhysicalDeviceMemoryProperties* pMemoryProperties"
15
+ register_function "void vkGetPhysicalDeviceFeatures" , "VkPhysicalDevice physicalDevice, VkPhysicalDeviceFeatures* pFeatures"
16
+ register_function "void vkGetPhysicalDeviceFormatProperties" , "VkPhysicalDevice physicalDevice, VkFormat format, VkFormatProperties* pFormatProperties"
17
+ register_function "VkResult vkGetPhysicalDeviceImageFormatProperties" , "VkPhysicalDevice physicalDevice, VkFormat format, VkImageType type, VkImageTiling tiling, VkImageUsageFlags usage, VkImageCreateFlags flags, VkImageFormatProperties* pImageFormatProperties"
18
+ register_function "VkResult vkCreateDevice" , "VkPhysicalDevice physicalDevice, const VkDeviceCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkDevice* pDevice"
19
+ register_function "void vkDestroyDevice" , "VkDevice device, const VkAllocationCallbacks* pAllocator"
20
+ register_function "VkResult vkEnumerateInstanceVersion" , "uint32_t* pApiVersion"
21
+ register_function "VkResult vkEnumerateInstanceLayerProperties" , "uint32_t* pPropertyCount, VkLayerProperties* pProperties"
22
+ register_function "VkResult vkEnumerateInstanceExtensionProperties" , "const char* pLayerName, uint32_t* pPropertyCount, VkExtensionProperties* pProperties"
23
+ register_function "VkResult vkEnumerateDeviceLayerProperties" , "VkPhysicalDevice physicalDevice, uint32_t* pPropertyCount, VkLayerProperties* pProperties"
24
+ register_function "VkResult vkEnumerateDeviceExtensionProperties" , "VkPhysicalDevice physicalDevice, const char* pLayerName, uint32_t* pPropertyCount, VkExtensionProperties* pProperties"
25
+ register_function "void vkGetDeviceQueue" , "VkDevice device, uint32_t queueFamilyIndex, uint32_t queueIndex, VkQueue* pQueue"
26
+ register_function "VkResult vkQueueSubmit" , "VkQueue queue, uint32_t submitCount, const VkSubmitInfo* pSubmits, VkFence fence"
27
+ register_function "VkResult vkQueueWaitIdle" , "VkQueue queue"
28
+ register_function "VkResult vkDeviceWaitIdle" , "VkDevice device"
29
+ register_function "VkResult vkAllocateMemory" , "VkDevice device, const VkMemoryAllocateInfo* pAllocateInfo, const VkAllocationCallbacks* pAllocator, VkDeviceMemory* pMemory"
30
+ register_function "void vkFreeMemory" , "VkDevice device, VkDeviceMemory memory, const VkAllocationCallbacks* pAllocator"
31
+ register_function "VkResult vkMapMemory" , "VkDevice device, VkDeviceMemory memory, VkDeviceSize offset, VkDeviceSize size, VkMemoryMapFlags flags, void** ppData"
32
+ register_function "void vkUnmapMemory" , "VkDevice device, VkDeviceMemory memory"
33
+ register_function "VkResult vkFlushMappedMemoryRanges" , "VkDevice device, uint32_t memoryRangeCount, const VkMappedMemoryRange* pMemoryRanges"
34
+ register_function "VkResult vkInvalidateMappedMemoryRanges" , "VkDevice device, uint32_t memoryRangeCount, const VkMappedMemoryRange* pMemoryRanges"
35
+ register_function "void vkGetDeviceMemoryCommitment" , "VkDevice device, VkDeviceMemory memory, VkDeviceSize* pCommittedMemoryInBytes"
36
+ register_function "void vkGetBufferMemoryRequirements" , "VkDevice device, VkBuffer buffer, VkMemoryRequirements* pMemoryRequirements"
37
+ register_function "VkResult vkBindBufferMemory" , "VkDevice device, VkBuffer buffer, VkDeviceMemory memory, VkDeviceSize memoryOffset"
38
+ register_function "void vkGetImageMemoryRequirements" , "VkDevice device, VkImage image, VkMemoryRequirements* pMemoryRequirements"
39
+ register_function "VkResult vkBindImageMemory" , "VkDevice device, VkImage image, VkDeviceMemory memory, VkDeviceSize memoryOffset"
40
+ register_function "void vkGetImageSparseMemoryRequirements" , "VkDevice device, VkImage image, uint32_t* pSparseMemoryRequirementCount, VkSparseImageMemoryRequirements* pSparseMemoryRequirements"
41
+ register_function "void vkGetPhysicalDeviceSparseImageFormatProperties" , "VkPhysicalDevice physicalDevice, VkFormat format, VkImageType type, VkSampleCountFlagBits samples, VkImageUsageFlags usage, VkImageTiling tiling, uint32_t* pPropertyCount, VkSparseImageFormatProperties* pProperties"
42
+ register_function "VkResult vkQueueBindSparse" , "VkQueue queue, uint32_t bindInfoCount, const VkBindSparseInfo* pBindInfo, VkFence fence"
43
+ register_function "VkResult vkCreateFence" , "VkDevice device, const VkFenceCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkFence* pFence"
44
+ register_function "void vkDestroyFence" , "VkDevice device, VkFence fence, const VkAllocationCallbacks* pAllocator"
45
+ register_function "VkResult vkResetFences" , "VkDevice device, uint32_t fenceCount, const VkFence* pFences"
46
+ register_function "VkResult vkGetFenceStatus" , "VkDevice device, VkFence fence"
47
+ register_function "VkResult vkWaitForFences" , "VkDevice device, uint32_t fenceCount, const VkFence* pFences, VkBool32 waitAll, uint64_t timeout"
48
+ register_function "VkResult vkCreateSemaphore" , "VkDevice device, const VkSemaphoreCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkSemaphore* pSemaphore"
49
+ register_function "void vkDestroySemaphore" , "VkDevice device, VkSemaphore semaphore, const VkAllocationCallbacks* pAllocator"
50
+ register_function "VkResult vkCreateEvent" , "VkDevice device, const VkEventCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkEvent* pEvent"
51
+ register_function "void vkDestroyEvent" , "VkDevice device, VkEvent event, const VkAllocationCallbacks* pAllocator"
52
+ register_function "VkResult vkGetEventStatus" , "VkDevice device, VkEvent event"
53
+ register_function "VkResult vkSetEvent" , "VkDevice device, VkEvent event"
54
+ register_function "VkResult vkResetEvent" , "VkDevice device, VkEvent event"
55
+ register_function "VkResult vkCreateQueryPool" , "VkDevice device, const VkQueryPoolCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkQueryPool* pQueryPool"
56
+ register_function "void vkDestroyQueryPool" , "VkDevice device, VkQueryPool queryPool, const VkAllocationCallbacks* pAllocator"
57
+ register_function "VkResult vkGetQueryPoolResults" , "VkDevice device, VkQueryPool queryPool, uint32_t firstQuery, uint32_t queryCount, size_t dataSize, void* pData, VkDeviceSize stride, VkQueryResultFlags flags"
58
+ register_function "VkResult vkCreateBuffer" , "VkDevice device, const VkBufferCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkBuffer* pBuffer"
59
+ register_function "void vkDestroyBuffer" , "VkDevice device, VkBuffer buffer, const VkAllocationCallbacks* pAllocator"
60
+ register_function "VkResult vkCreateBufferView" , "VkDevice device, const VkBufferViewCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkBufferView* pView"
61
+ register_function "void vkDestroyBufferView" , "VkDevice device, VkBufferView bufferView, const VkAllocationCallbacks* pAllocator"
62
+ register_function "VkResult vkCreateImage" , "VkDevice device, const VkImageCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkImage* pImage"
63
+ register_function "void vkDestroyImage" , "VkDevice device, VkImage image, const VkAllocationCallbacks* pAllocator"
64
+ register_function "void vkGetImageSubresourceLayout" , "VkDevice device, VkImage image, const VkImageSubresource* pSubresource, VkSubresourceLayout* pLayout"
65
+ register_function "VkResult vkCreateImageView" , "VkDevice device, const VkImageViewCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkImageView* pView"
66
+ register_function "void vkDestroyImageView" , "VkDevice device, VkImageView imageView, const VkAllocationCallbacks* pAllocator"
67
+ register_function "VkResult vkCreateShaderModule" , "VkDevice device, const VkShaderModuleCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkShaderModule* pShaderModule"
68
+ register_function "void vkDestroyShaderModule" , "VkDevice device, VkShaderModule shaderModule, const VkAllocationCallbacks* pAllocator"
69
+ register_function "VkResult vkCreatePipelineCache" , "VkDevice device, const VkPipelineCacheCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkPipelineCache* pPipelineCache"
70
+ register_function "void vkDestroyPipelineCache" , "VkDevice device, VkPipelineCache pipelineCache, const VkAllocationCallbacks* pAllocator"
71
+ register_function "VkResult vkGetPipelineCacheData" , "VkDevice device, VkPipelineCache pipelineCache, size_t* pDataSize, void* pData"
72
+ register_function "VkResult vkMergePipelineCaches" , "VkDevice device, VkPipelineCache dstCache, uint32_t srcCacheCount, const VkPipelineCache* pSrcCaches"
73
+ register_function "VkResult vkCreateGraphicsPipelines" , "VkDevice device, VkPipelineCache pipelineCache, uint32_t createInfoCount, const VkGraphicsPipelineCreateInfo* pCreateInfos, const VkAllocationCallbacks* pAllocator, VkPipeline* pPipelines"
74
+ register_function "VkResult vkCreateComputePipelines" , "VkDevice device, VkPipelineCache pipelineCache, uint32_t createInfoCount, const VkComputePipelineCreateInfo* pCreateInfos, const VkAllocationCallbacks* pAllocator, VkPipeline* pPipelines"
75
+ register_function "void vkDestroyPipeline" , "VkDevice device, VkPipeline pipeline, const VkAllocationCallbacks* pAllocator"
76
+ register_function "VkResult vkCreatePipelineLayout" , "VkDevice device, const VkPipelineLayoutCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkPipelineLayout* pPipelineLayout"
77
+ register_function "void vkDestroyPipelineLayout" , "VkDevice device, VkPipelineLayout pipelineLayout, const VkAllocationCallbacks* pAllocator"
78
+ register_function "VkResult vkCreateSampler" , "VkDevice device, const VkSamplerCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkSampler* pSampler"
79
+ register_function "void vkDestroySampler" , "VkDevice device, VkSampler sampler, const VkAllocationCallbacks* pAllocator"
80
+ register_function "VkResult vkCreateDescriptorSetLayout" , "VkDevice device, const VkDescriptorSetLayoutCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkDescriptorSetLayout* pSetLayout"
81
+ register_function "void vkDestroyDescriptorSetLayout" , "VkDevice device, VkDescriptorSetLayout descriptorSetLayout, const VkAllocationCallbacks* pAllocator"
82
+ register_function "VkResult vkCreateDescriptorPool" , "VkDevice device, const VkDescriptorPoolCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkDescriptorPool* pDescriptorPool"
83
+ register_function "void vkDestroyDescriptorPool" , "VkDevice device, VkDescriptorPool descriptorPool, const VkAllocationCallbacks* pAllocator"
84
+ register_function "VkResult vkResetDescriptorPool" , "VkDevice device, VkDescriptorPool descriptorPool, VkDescriptorPoolResetFlags flags"
85
+ register_function "VkResult vkAllocateDescriptorSets" , "VkDevice device, const VkDescriptorSetAllocateInfo* pAllocateInfo, VkDescriptorSet* pDescriptorSets"
86
+ register_function "VkResult vkFreeDescriptorSets" , "VkDevice device, VkDescriptorPool descriptorPool, uint32_t descriptorSetCount, const VkDescriptorSet* pDescriptorSets"
87
+ register_function "void vkUpdateDescriptorSets" , "VkDevice device, uint32_t descriptorWriteCount, const VkWriteDescriptorSet* pDescriptorWrites, uint32_t descriptorCopyCount, const VkCopyDescriptorSet* pDescriptorCopies"
88
+ register_function "VkResult vkCreateFramebuffer" , "VkDevice device, const VkFramebufferCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkFramebuffer* pFramebuffer"
89
+ register_function "void vkDestroyFramebuffer" , "VkDevice device, VkFramebuffer framebuffer, const VkAllocationCallbacks* pAllocator"
90
+ register_function "VkResult vkCreateRenderPass" , "VkDevice device, const VkRenderPassCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkRenderPass* pRenderPass"
91
+ register_function "void vkDestroyRenderPass" , "VkDevice device, VkRenderPass renderPass, const VkAllocationCallbacks* pAllocator"
92
+ register_function "void vkGetRenderAreaGranularity" , "VkDevice device, VkRenderPass renderPass, VkExtent2D* pGranularity"
93
+ register_function "VkResult vkCreateCommandPool" , "VkDevice device, const VkCommandPoolCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkCommandPool* pCommandPool"
94
+ register_function "void vkDestroyCommandPool" , "VkDevice device, VkCommandPool commandPool, const VkAllocationCallbacks* pAllocator"
95
+ register_function "VkResult vkResetCommandPool" , "VkDevice device, VkCommandPool commandPool, VkCommandPoolResetFlags flags"
96
+ register_function "VkResult vkAllocateCommandBuffers" , "VkDevice device, const VkCommandBufferAllocateInfo* pAllocateInfo, VkCommandBuffer* pCommandBuffers"
97
+ register_function "void vkFreeCommandBuffers" , "VkDevice device, VkCommandPool commandPool, uint32_t commandBufferCount, const VkCommandBuffer* pCommandBuffers"
98
+ register_function "VkResult vkBeginCommandBuffer" , "VkCommandBuffer commandBuffer, const VkCommandBufferBeginInfo* pBeginInfo"
99
+ register_function "VkResult vkEndCommandBuffer" , "VkCommandBuffer commandBuffer"
100
+ register_function "VkResult vkResetCommandBuffer" , "VkCommandBuffer commandBuffer, VkCommandBufferResetFlags flags"
101
+ register_function "void vkCmdBindPipeline" , "VkCommandBuffer commandBuffer, VkPipelineBindPoint pipelineBindPoint, VkPipeline pipeline"
102
+ register_function "void vkCmdSetViewport" , "VkCommandBuffer commandBuffer, uint32_t firstViewport, uint32_t viewportCount, const VkViewport* pViewports"
103
+ register_function "void vkCmdSetScissor" , "VkCommandBuffer commandBuffer, uint32_t firstScissor, uint32_t scissorCount, const VkRect2D* pScissors"
104
+ register_function "void vkCmdSetLineWidth" , "VkCommandBuffer commandBuffer, float lineWidth"
105
+ register_function "void vkCmdSetDepthBias" , "VkCommandBuffer commandBuffer, float depthBiasConstantFactor, float depthBiasClamp, float depthBiasSlopeFactor"
106
+ register_function "void vkCmdSetBlendConstants" , "VkCommandBuffer commandBuffer, const float blendConstants[4]"
107
+ register_function "void vkCmdSetDepthBounds" , "VkCommandBuffer commandBuffer, float minDepthBounds, float maxDepthBounds"
108
+ register_function "void vkCmdSetStencilCompareMask" , "VkCommandBuffer commandBuffer, VkStencilFaceFlags faceMask, uint32_t compareMask"
109
+ register_function "void vkCmdSetStencilWriteMask" , "VkCommandBuffer commandBuffer, VkStencilFaceFlags faceMask, uint32_t writeMask"
110
+ register_function "void vkCmdSetStencilReference" , "VkCommandBuffer commandBuffer, VkStencilFaceFlags faceMask, uint32_t reference"
111
+ register_function "void vkCmdBindDescriptorSets" , "VkCommandBuffer commandBuffer, VkPipelineBindPoint pipelineBindPoint, VkPipelineLayout layout, uint32_t firstSet, uint32_t descriptorSetCount, const VkDescriptorSet* pDescriptorSets, uint32_t dynamicOffsetCount, const uint32_t* pDynamicOffsets"
112
+ register_function "void vkCmdBindIndexBuffer" , "VkCommandBuffer commandBuffer, VkBuffer buffer, VkDeviceSize offset, VkIndexType indexType"
113
+ register_function "void vkCmdBindVertexBuffers" , "VkCommandBuffer commandBuffer, uint32_t firstBinding, uint32_t bindingCount, const VkBuffer* pBuffers, const VkDeviceSize* pOffsets"
114
+ register_function "void vkCmdDraw" , "VkCommandBuffer commandBuffer, uint32_t vertexCount, uint32_t instanceCount, uint32_t firstVertex, uint32_t firstInstance"
115
+ register_function "void vkCmdDrawIndexed" , "VkCommandBuffer commandBuffer, uint32_t indexCount, uint32_t instanceCount, uint32_t firstIndex, int32_t vertexOffset, uint32_t firstInstance"
116
+ register_function "void vkCmdDrawIndirect" , "VkCommandBuffer commandBuffer, VkBuffer buffer, VkDeviceSize offset, uint32_t drawCount, uint32_t stride"
117
+ register_function "void vkCmdDrawIndexedIndirect" , "VkCommandBuffer commandBuffer, VkBuffer buffer, VkDeviceSize offset, uint32_t drawCount, uint32_t stride"
118
+ register_function "void vkCmdDispatch" , "VkCommandBuffer commandBuffer, uint32_t groupCountX, uint32_t groupCountY, uint32_t groupCountZ"
119
+ register_function "void vkCmdDispatchIndirect" , "VkCommandBuffer commandBuffer, VkBuffer buffer, VkDeviceSize offset"
120
+ register_function "void vkCmdCopyBuffer" , "VkCommandBuffer commandBuffer, VkBuffer srcBuffer, VkBuffer dstBuffer, uint32_t regionCount, const VkBufferCopy* pRegions"
121
+ register_function "void vkCmdCopyImage" , "VkCommandBuffer commandBuffer, VkImage srcImage, VkImageLayout srcImageLayout, VkImage dstImage, VkImageLayout dstImageLayout, uint32_t regionCount, const VkImageCopy* pRegions"
122
+ register_function "void vkCmdBlitImage" , "VkCommandBuffer commandBuffer, VkImage srcImage, VkImageLayout srcImageLayout, VkImage dstImage, VkImageLayout dstImageLayout, uint32_t regionCount, const VkImageBlit* pRegions, VkFilter filter"
123
+ register_function "void vkCmdCopyBufferToImage" , "VkCommandBuffer commandBuffer, VkBuffer srcBuffer, VkImage dstImage, VkImageLayout dstImageLayout, uint32_t regionCount, const VkBufferImageCopy* pRegions"
124
+ register_function "void vkCmdCopyImageToBuffer" , "VkCommandBuffer commandBuffer, VkImage srcImage, VkImageLayout srcImageLayout, VkBuffer dstBuffer, uint32_t regionCount, const VkBufferImageCopy* pRegions"
125
+ register_function "void vkCmdUpdateBuffer" , "VkCommandBuffer commandBuffer, VkBuffer dstBuffer, VkDeviceSize dstOffset, VkDeviceSize dataSize, const void* pData"
126
+ register_function "void vkCmdFillBuffer" , "VkCommandBuffer commandBuffer, VkBuffer dstBuffer, VkDeviceSize dstOffset, VkDeviceSize size, uint32_t data"
127
+ register_function "void vkCmdClearColorImage" , "VkCommandBuffer commandBuffer, VkImage image, VkImageLayout imageLayout, const VkClearColorValue* pColor, uint32_t rangeCount, const VkImageSubresourceRange* pRanges"
128
+ register_function "void vkCmdClearDepthStencilImage" , "VkCommandBuffer commandBuffer, VkImage image, VkImageLayout imageLayout, const VkClearDepthStencilValue* pDepthStencil, uint32_t rangeCount, const VkImageSubresourceRange* pRanges"
129
+ register_function "void vkCmdClearAttachments" , "VkCommandBuffer commandBuffer, uint32_t attachmentCount, const VkClearAttachment* pAttachments, uint32_t rectCount, const VkClearRect* pRects"
130
+ register_function "void vkCmdResolveImage" , "VkCommandBuffer commandBuffer, VkImage srcImage, VkImageLayout srcImageLayout, VkImage dstImage, VkImageLayout dstImageLayout, uint32_t regionCount, const VkImageResolve* pRegions"
131
+ register_function "void vkCmdSetEvent" , "VkCommandBuffer commandBuffer, VkEvent event, VkPipelineStageFlags stageMask"
132
+ register_function "void vkCmdResetEvent" , "VkCommandBuffer commandBuffer, VkEvent event, VkPipelineStageFlags stageMask"
133
+ register_function "void vkCmdWaitEvents" , "VkCommandBuffer commandBuffer, uint32_t eventCount, const VkEvent* pEvents, VkPipelineStageFlags srcStageMask, VkPipelineStageFlags dstStageMask, uint32_t memoryBarrierCount, const VkMemoryBarrier* pMemoryBarriers, uint32_t bufferMemoryBarrierCount, const VkBufferMemoryBarrier* pBufferMemoryBarriers, uint32_t imageMemoryBarrierCount, const VkImageMemoryBarrier* pImageMemoryBarriers"
134
+ register_function "void vkCmdPipelineBarrier" , "VkCommandBuffer commandBuffer, VkPipelineStageFlags srcStageMask, VkPipelineStageFlags dstStageMask, VkDependencyFlags dependencyFlags, uint32_t memoryBarrierCount, const VkMemoryBarrier* pMemoryBarriers, uint32_t bufferMemoryBarrierCount, const VkBufferMemoryBarrier* pBufferMemoryBarriers, uint32_t imageMemoryBarrierCount, const VkImageMemoryBarrier* pImageMemoryBarriers"
135
+ register_function "void vkCmdBeginQuery" , "VkCommandBuffer commandBuffer, VkQueryPool queryPool, uint32_t query, VkQueryControlFlags flags"
136
+ register_function "void vkCmdEndQuery" , "VkCommandBuffer commandBuffer, VkQueryPool queryPool, uint32_t query"
137
+ register_function "void vkCmdBeginConditionalRenderingEXT" , "VkCommandBuffer commandBuffer, const VkConditionalRenderingBeginInfoEXT* pConditionalRenderingBegin"
138
+ register_function "void vkCmdEndConditionalRenderingEXT" , "VkCommandBuffer commandBuffer"
139
+ register_function "void vkCmdResetQueryPool" , "VkCommandBuffer commandBuffer, VkQueryPool queryPool, uint32_t firstQuery, uint32_t queryCount"
140
+ register_function "void vkCmdWriteTimestamp" , "VkCommandBuffer commandBuffer, VkPipelineStageFlagBits pipelineStage, VkQueryPool queryPool, uint32_t query"
141
+ register_function "void vkCmdCopyQueryPoolResults" , "VkCommandBuffer commandBuffer, VkQueryPool queryPool, uint32_t firstQuery, uint32_t queryCount, VkBuffer dstBuffer, VkDeviceSize dstOffset, VkDeviceSize stride, VkQueryResultFlags flags"
142
+ register_function "void vkCmdPushConstants" , "VkCommandBuffer commandBuffer, VkPipelineLayout layout, VkShaderStageFlags stageFlags, uint32_t offset, uint32_t size, const void* pValues"
143
+ register_function "void vkCmdBeginRenderPass" , "VkCommandBuffer commandBuffer, const VkRenderPassBeginInfo* pRenderPassBegin, VkSubpassContents contents"
144
+ register_function "void vkCmdNextSubpass" , "VkCommandBuffer commandBuffer, VkSubpassContents contents"
145
+ register_function "void vkCmdEndRenderPass" , "VkCommandBuffer commandBuffer"
146
+ register_function "void vkCmdExecuteCommands" , "VkCommandBuffer commandBuffer, uint32_t commandBufferCount, const VkCommandBuffer* pCommandBuffers"
147
+ register_function "VkResult vkCreateAndroidSurfaceKHR" , "VkInstance instance, const VkAndroidSurfaceCreateInfoKHR* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkSurfaceKHR* pSurface"
148
+ register_function "VkResult vkGetPhysicalDeviceDisplayPropertiesKHR" , "VkPhysicalDevice physicalDevice, uint32_t* pPropertyCount, VkDisplayPropertiesKHR* pProperties"
149
+ register_function "VkResult vkGetPhysicalDeviceDisplayPlanePropertiesKHR" , "VkPhysicalDevice physicalDevice, uint32_t* pPropertyCount, VkDisplayPlanePropertiesKHR* pProperties"
150
+ register_function "VkResult vkGetDisplayPlaneSupportedDisplaysKHR" , "VkPhysicalDevice physicalDevice, uint32_t planeIndex, uint32_t* pDisplayCount, VkDisplayKHR* pDisplays"
151
+ register_function "VkResult vkGetDisplayModePropertiesKHR" , "VkPhysicalDevice physicalDevice, VkDisplayKHR display, uint32_t* pPropertyCount, VkDisplayModePropertiesKHR* pProperties"
152
+ register_function "VkResult vkCreateDisplayModeKHR" , "VkPhysicalDevice physicalDevice, VkDisplayKHR display, const VkDisplayModeCreateInfoKHR* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkDisplayModeKHR* pMode"
153
+ register_function "VkResult vkGetDisplayPlaneCapabilitiesKHR" , "VkPhysicalDevice physicalDevice, VkDisplayModeKHR mode, uint32_t planeIndex, VkDisplayPlaneCapabilitiesKHR* pCapabilities"
154
+ register_function "VkResult vkCreateDisplayPlaneSurfaceKHR" , "VkInstance instance, const VkDisplaySurfaceCreateInfoKHR* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkSurfaceKHR* pSurface"
155
+ register_function "VkResult vkCreateSharedSwapchainsKHR" , "VkDevice device, uint32_t swapchainCount, const VkSwapchainCreateInfoKHR* pCreateInfos, const VkAllocationCallbacks* pAllocator, VkSwapchainKHR* pSwapchains"
156
+ register_function "VkResult vkCreateMirSurfaceKHR" , "VkInstance instance, const VkMirSurfaceCreateInfoKHR* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkSurfaceKHR* pSurface"
157
+ register_function "VkBool32 vkGetPhysicalDeviceMirPresentationSupportKHR" , "VkPhysicalDevice physicalDevice, uint32_t queueFamilyIndex, MirConnection* connection"
158
+ register_function "void vkDestroySurfaceKHR" , "VkInstance instance, VkSurfaceKHR surface, const VkAllocationCallbacks* pAllocator"
159
+ register_function "VkResult vkGetPhysicalDeviceSurfaceSupportKHR" , "VkPhysicalDevice physicalDevice, uint32_t queueFamilyIndex, VkSurfaceKHR surface, VkBool32* pSupported"
160
+ register_function "VkResult vkGetPhysicalDeviceSurfaceCapabilitiesKHR" , "VkPhysicalDevice physicalDevice, VkSurfaceKHR surface, VkSurfaceCapabilitiesKHR* pSurfaceCapabilities"
161
+ register_function "VkResult vkGetPhysicalDeviceSurfaceFormatsKHR" , "VkPhysicalDevice physicalDevice, VkSurfaceKHR surface, uint32_t* pSurfaceFormatCount, VkSurfaceFormatKHR* pSurfaceFormats"
162
+ register_function "VkResult vkGetPhysicalDeviceSurfacePresentModesKHR" , "VkPhysicalDevice physicalDevice, VkSurfaceKHR surface, uint32_t* pPresentModeCount, VkPresentModeKHR* pPresentModes"
163
+ register_function "VkResult vkCreateSwapchainKHR" , "VkDevice device, const VkSwapchainCreateInfoKHR* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkSwapchainKHR* pSwapchain"
164
+ register_function "void vkDestroySwapchainKHR" , "VkDevice device, VkSwapchainKHR swapchain, const VkAllocationCallbacks* pAllocator"
165
+ register_function "VkResult vkGetSwapchainImagesKHR" , "VkDevice device, VkSwapchainKHR swapchain, uint32_t* pSwapchainImageCount, VkImage* pSwapchainImages"
166
+ register_function "VkResult vkAcquireNextImageKHR" , "VkDevice device, VkSwapchainKHR swapchain, uint64_t timeout, VkSemaphore semaphore, VkFence fence, uint32_t* pImageIndex"
167
+ register_function "VkResult vkQueuePresentKHR" , "VkQueue queue, const VkPresentInfoKHR* pPresentInfo"
168
+ register_function "VkResult vkCreateViSurfaceNN" , "VkInstance instance, const VkViSurfaceCreateInfoNN* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkSurfaceKHR* pSurface"
169
+ register_function "VkResult vkCreateWaylandSurfaceKHR" , "VkInstance instance, const VkWaylandSurfaceCreateInfoKHR* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkSurfaceKHR* pSurface"
170
+ register_function "VkBool32 vkGetPhysicalDeviceWaylandPresentationSupportKHR" , "VkPhysicalDevice physicalDevice, uint32_t queueFamilyIndex, struct wl_display* display"
171
+ register_function "VkResult vkCreateWin32SurfaceKHR" , "VkInstance instance, const VkWin32SurfaceCreateInfoKHR* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkSurfaceKHR* pSurface"
172
+ register_function "VkBool32 vkGetPhysicalDeviceWin32PresentationSupportKHR" , "VkPhysicalDevice physicalDevice, uint32_t queueFamilyIndex"
173
+ register_function "VkResult vkCreateXlibSurfaceKHR" , "VkInstance instance, const VkXlibSurfaceCreateInfoKHR* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkSurfaceKHR* pSurface"
174
+ register_function "VkBool32 vkGetPhysicalDeviceXlibPresentationSupportKHR" , "VkPhysicalDevice physicalDevice, uint32_t queueFamilyIndex, Display* dpy, VisualID visualID"
175
+ register_function "VkResult vkCreateXcbSurfaceKHR" , "VkInstance instance, const VkXcbSurfaceCreateInfoKHR* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkSurfaceKHR* pSurface"
176
+ register_function "VkBool32 vkGetPhysicalDeviceXcbPresentationSupportKHR" , "VkPhysicalDevice physicalDevice, uint32_t queueFamilyIndex, xcb_connection_t* connection, xcb_visualid_t visual_id"
177
+ register_function "VkResult vkCreateDebugReportCallbackEXT" , "VkInstance instance, const VkDebugReportCallbackCreateInfoEXT* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkDebugReportCallbackEXT* pCallback"
178
+ register_function "void vkDestroyDebugReportCallbackEXT" , "VkInstance instance, VkDebugReportCallbackEXT callback, const VkAllocationCallbacks* pAllocator"
179
+ register_function "void vkDebugReportMessageEXT" , "VkInstance instance, VkDebugReportFlagsEXT flags, VkDebugReportObjectTypeEXT objectType, uint64_t object, size_t location, int32_t messageCode, const char* pLayerPrefix, const char* pMessage"
180
+ register_function "VkResult vkDebugMarkerSetObjectNameEXT" , "VkDevice device, const VkDebugMarkerObjectNameInfoEXT* pNameInfo"
181
+ register_function "VkResult vkDebugMarkerSetObjectTagEXT" , "VkDevice device, const VkDebugMarkerObjectTagInfoEXT* pTagInfo"
182
+ register_function "void vkCmdDebugMarkerBeginEXT" , "VkCommandBuffer commandBuffer, const VkDebugMarkerMarkerInfoEXT* pMarkerInfo"
183
+ register_function "void vkCmdDebugMarkerEndEXT" , "VkCommandBuffer commandBuffer"
184
+ register_function "void vkCmdDebugMarkerInsertEXT" , "VkCommandBuffer commandBuffer, const VkDebugMarkerMarkerInfoEXT* pMarkerInfo"
185
+ register_function "VkResult vkGetPhysicalDeviceExternalImageFormatPropertiesNV", "VkPhysicalDevice physicalDevice, VkFormat format, VkImageType type, VkImageTiling tiling, VkImageUsageFlags usage, VkImageCreateFlags flags, VkExternalMemoryHandleTypeFlagsNV externalHandleType, VkExternalImageFormatPropertiesNV* pExternalImageFormatProperties"
186
+ register_function "VkResult vkGetMemoryWin32HandleNV" , "VkDevice device, VkDeviceMemory memory, VkExternalMemoryHandleTypeFlagsNV handleType, HANDLE* pHandle"
187
+ register_function "void vkCmdDrawIndirectCountAMD" , "VkCommandBuffer commandBuffer, VkBuffer buffer, VkDeviceSize offset, VkBuffer countBuffer, VkDeviceSize countBufferOffset, uint32_t maxDrawCount, uint32_t stride"
188
+ register_function "void vkCmdDrawIndexedIndirectCountAMD" , "VkCommandBuffer commandBuffer, VkBuffer buffer, VkDeviceSize offset, VkBuffer countBuffer, VkDeviceSize countBufferOffset, uint32_t maxDrawCount, uint32_t stride"
189
+ register_function "void vkCmdProcessCommandsNVX" , "VkCommandBuffer commandBuffer, const VkCmdProcessCommandsInfoNVX* pProcessCommandsInfo"
190
+ register_function "void vkCmdReserveSpaceForCommandsNVX" , "VkCommandBuffer commandBuffer, const VkCmdReserveSpaceForCommandsInfoNVX* pReserveSpaceInfo"
191
+ register_function "VkResult vkCreateIndirectCommandsLayoutNVX" , "VkDevice device, const VkIndirectCommandsLayoutCreateInfoNVX* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkIndirectCommandsLayoutNVX* pIndirectCommandsLayout"
192
+ register_function "void vkDestroyIndirectCommandsLayoutNVX" , "VkDevice device, VkIndirectCommandsLayoutNVX indirectCommandsLayout, const VkAllocationCallbacks* pAllocator"
193
+ register_function "VkResult vkCreateObjectTableNVX" , "VkDevice device, const VkObjectTableCreateInfoNVX* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkObjectTableNVX* pObjectTable"
194
+ register_function "void vkDestroyObjectTableNVX" , "VkDevice device, VkObjectTableNVX objectTable, const VkAllocationCallbacks* pAllocator"
195
+ register_function "VkResult vkRegisterObjectsNVX" , "VkDevice device, VkObjectTableNVX objectTable, uint32_t objectCount, const VkObjectTableEntryNVX* const* ppObjectTableEntries, const uint32_t* pObjectIndices"
196
+ register_function "VkResult vkUnregisterObjectsNVX" , "VkDevice device, VkObjectTableNVX objectTable, uint32_t objectCount, const VkObjectEntryTypeNVX* pObjectEntryTypes, const uint32_t* pObjectIndices"
197
+ register_function "void vkGetPhysicalDeviceGeneratedCommandsPropertiesNVX" , "VkPhysicalDevice physicalDevice, VkDeviceGeneratedCommandsFeaturesNVX* pFeatures, VkDeviceGeneratedCommandsLimitsNVX* pLimits"
198
+ register_function "void vkGetPhysicalDeviceFeatures2" , "VkPhysicalDevice physicalDevice, VkPhysicalDeviceFeatures2* pFeatures"
199
+ register_function "void vkGetPhysicalDeviceProperties2" , "VkPhysicalDevice physicalDevice, VkPhysicalDeviceProperties2* pProperties"
200
+ register_function "void vkGetPhysicalDeviceFormatProperties2" , "VkPhysicalDevice physicalDevice, VkFormat format, VkFormatProperties2* pFormatProperties"
201
+ register_function "VkResult vkGetPhysicalDeviceImageFormatProperties2" , "VkPhysicalDevice physicalDevice, const VkPhysicalDeviceImageFormatInfo2* pImageFormatInfo, VkImageFormatProperties2* pImageFormatProperties"
202
+ register_function "void vkGetPhysicalDeviceQueueFamilyProperties2" , "VkPhysicalDevice physicalDevice, uint32_t* pQueueFamilyPropertyCount, VkQueueFamilyProperties2* pQueueFamilyProperties"
203
+ register_function "void vkGetPhysicalDeviceMemoryProperties2" , "VkPhysicalDevice physicalDevice, VkPhysicalDeviceMemoryProperties2* pMemoryProperties"
204
+ register_function "void vkGetPhysicalDeviceSparseImageFormatProperties2" , "VkPhysicalDevice physicalDevice, const VkPhysicalDeviceSparseImageFormatInfo2* pFormatInfo, uint32_t* pPropertyCount, VkSparseImageFormatProperties2* pProperties"
205
+ register_function "void vkCmdPushDescriptorSetKHR" , "VkCommandBuffer commandBuffer, VkPipelineBindPoint pipelineBindPoint, VkPipelineLayout layout, uint32_t set, uint32_t descriptorWriteCount, const VkWriteDescriptorSet* pDescriptorWrites"
206
+ register_function "void vkTrimCommandPool" , "VkDevice device, VkCommandPool commandPool, VkCommandPoolTrimFlags flags"
207
+ register_function "void vkGetPhysicalDeviceExternalBufferProperties" , "VkPhysicalDevice physicalDevice, const VkPhysicalDeviceExternalBufferInfo* pExternalBufferInfo, VkExternalBufferProperties* pExternalBufferProperties"
208
+ register_function "VkResult vkGetMemoryWin32HandleKHR" , "VkDevice device, const VkMemoryGetWin32HandleInfoKHR* pGetWin32HandleInfo, HANDLE* pHandle"
209
+ register_function "VkResult vkGetMemoryWin32HandlePropertiesKHR" , "VkDevice device, VkExternalMemoryHandleTypeFlagBits handleType, HANDLE handle, VkMemoryWin32HandlePropertiesKHR* pMemoryWin32HandleProperties"
210
+ register_function "VkResult vkGetMemoryFdKHR" , "VkDevice device, const VkMemoryGetFdInfoKHR* pGetFdInfo, int* pFd"
211
+ register_function "VkResult vkGetMemoryFdPropertiesKHR" , "VkDevice device, VkExternalMemoryHandleTypeFlagBits handleType, int fd, VkMemoryFdPropertiesKHR* pMemoryFdProperties"
212
+ register_function "void vkGetPhysicalDeviceExternalSemaphoreProperties" , "VkPhysicalDevice physicalDevice, const VkPhysicalDeviceExternalSemaphoreInfo* pExternalSemaphoreInfo, VkExternalSemaphoreProperties* pExternalSemaphoreProperties"
213
+ register_function "VkResult vkGetSemaphoreWin32HandleKHR" , "VkDevice device, const VkSemaphoreGetWin32HandleInfoKHR* pGetWin32HandleInfo, HANDLE* pHandle"
214
+ register_function "VkResult vkImportSemaphoreWin32HandleKHR" , "VkDevice device, const VkImportSemaphoreWin32HandleInfoKHR* pImportSemaphoreWin32HandleInfo"
215
+ register_function "VkResult vkGetSemaphoreFdKHR" , "VkDevice device, const VkSemaphoreGetFdInfoKHR* pGetFdInfo, int* pFd"
216
+ register_function "VkResult vkImportSemaphoreFdKHR" , "VkDevice device, const VkImportSemaphoreFdInfoKHR* pImportSemaphoreFdInfo"
217
+ register_function "void vkGetPhysicalDeviceExternalFenceProperties" , "VkPhysicalDevice physicalDevice, const VkPhysicalDeviceExternalFenceInfo* pExternalFenceInfo, VkExternalFenceProperties* pExternalFenceProperties"
218
+ register_function "VkResult vkGetFenceWin32HandleKHR" , "VkDevice device, const VkFenceGetWin32HandleInfoKHR* pGetWin32HandleInfo, HANDLE* pHandle"
219
+ register_function "VkResult vkImportFenceWin32HandleKHR" , "VkDevice device, const VkImportFenceWin32HandleInfoKHR* pImportFenceWin32HandleInfo"
220
+ register_function "VkResult vkGetFenceFdKHR" , "VkDevice device, const VkFenceGetFdInfoKHR* pGetFdInfo, int* pFd"
221
+ register_function "VkResult vkImportFenceFdKHR" , "VkDevice device, const VkImportFenceFdInfoKHR* pImportFenceFdInfo"
222
+ register_function "VkResult vkReleaseDisplayEXT" , "VkPhysicalDevice physicalDevice, VkDisplayKHR display"
223
+ register_function "VkResult vkAcquireXlibDisplayEXT" , "VkPhysicalDevice physicalDevice, Display* dpy, VkDisplayKHR display"
224
+ register_function "VkResult vkGetRandROutputDisplayEXT" , "VkPhysicalDevice physicalDevice, Display* dpy, RROutput rrOutput, VkDisplayKHR* pDisplay"
225
+ register_function "VkResult vkDisplayPowerControlEXT" , "VkDevice device, VkDisplayKHR display, const VkDisplayPowerInfoEXT* pDisplayPowerInfo"
226
+ register_function "VkResult vkRegisterDeviceEventEXT" , "VkDevice device, const VkDeviceEventInfoEXT* pDeviceEventInfo, const VkAllocationCallbacks* pAllocator, VkFence* pFence"
227
+ register_function "VkResult vkRegisterDisplayEventEXT" , "VkDevice device, VkDisplayKHR display, const VkDisplayEventInfoEXT* pDisplayEventInfo, const VkAllocationCallbacks* pAllocator, VkFence* pFence"
228
+ register_function "VkResult vkGetSwapchainCounterEXT" , "VkDevice device, VkSwapchainKHR swapchain, VkSurfaceCounterFlagBitsEXT counter, uint64_t* pCounterValue"
229
+ register_function "VkResult vkGetPhysicalDeviceSurfaceCapabilities2EXT" , "VkPhysicalDevice physicalDevice, VkSurfaceKHR surface, VkSurfaceCapabilities2EXT* pSurfaceCapabilities"
230
+ register_function "VkResult vkEnumeratePhysicalDeviceGroups" , "VkInstance instance, uint32_t* pPhysicalDeviceGroupCount, VkPhysicalDeviceGroupProperties* pPhysicalDeviceGroupProperties"
231
+ register_function "void vkGetDeviceGroupPeerMemoryFeatures" , "VkDevice device, uint32_t heapIndex, uint32_t localDeviceIndex, uint32_t remoteDeviceIndex, VkPeerMemoryFeatureFlags* pPeerMemoryFeatures"
232
+ register_function "VkResult vkBindBufferMemory2" , "VkDevice device, uint32_t bindInfoCount, const VkBindBufferMemoryInfo* pBindInfos"
233
+ register_function "VkResult vkBindImageMemory2" , "VkDevice device, uint32_t bindInfoCount, const VkBindImageMemoryInfo* pBindInfos"
234
+ register_function "void vkCmdSetDeviceMask" , "VkCommandBuffer commandBuffer, uint32_t deviceMask"
235
+ register_function "VkResult vkGetDeviceGroupPresentCapabilitiesKHR" , "VkDevice device, VkDeviceGroupPresentCapabilitiesKHR* pDeviceGroupPresentCapabilities"
236
+ register_function "VkResult vkGetDeviceGroupSurfacePresentModesKHR" , "VkDevice device, VkSurfaceKHR surface, VkDeviceGroupPresentModeFlagsKHR* pModes"
237
+ register_function "VkResult vkAcquireNextImage2KHR" , "VkDevice device, const VkAcquireNextImageInfoKHR* pAcquireInfo, uint32_t* pImageIndex"
238
+ register_function "void vkCmdDispatchBase" , "VkCommandBuffer commandBuffer, uint32_t baseGroupX, uint32_t baseGroupY, uint32_t baseGroupZ, uint32_t groupCountX, uint32_t groupCountY, uint32_t groupCountZ"
239
+ register_function "VkResult vkGetPhysicalDevicePresentRectanglesKHR" , "VkPhysicalDevice physicalDevice, VkSurfaceKHR surface, uint32_t* pRectCount, VkRect2D* pRects"
240
+ register_function "VkResult vkCreateDescriptorUpdateTemplate" , "VkDevice device, const VkDescriptorUpdateTemplateCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkDescriptorUpdateTemplate* pDescriptorUpdateTemplate"
241
+ register_function "void vkDestroyDescriptorUpdateTemplate" , "VkDevice device, VkDescriptorUpdateTemplate descriptorUpdateTemplate, const VkAllocationCallbacks* pAllocator"
242
+ register_function "void vkUpdateDescriptorSetWithTemplate" , "VkDevice device, VkDescriptorSet descriptorSet, VkDescriptorUpdateTemplate descriptorUpdateTemplate, const void* pData"
243
+ register_function "void vkCmdPushDescriptorSetWithTemplateKHR" , "VkCommandBuffer commandBuffer, VkDescriptorUpdateTemplate descriptorUpdateTemplate, VkPipelineLayout layout, uint32_t set, const void* pData"
244
+ register_function "void vkSetHdrMetadataEXT" , "VkDevice device, uint32_t swapchainCount, const VkSwapchainKHR* pSwapchains, const VkHdrMetadataEXT* pMetadata"
245
+ register_function "VkResult vkGetSwapchainStatusKHR" , "VkDevice device, VkSwapchainKHR swapchain"
246
+ register_function "VkResult vkGetRefreshCycleDurationGOOGLE" , "VkDevice device, VkSwapchainKHR swapchain, VkRefreshCycleDurationGOOGLE* pDisplayTimingProperties"
247
+ register_function "VkResult vkGetPastPresentationTimingGOOGLE" , "VkDevice device, VkSwapchainKHR swapchain, uint32_t* pPresentationTimingCount, VkPastPresentationTimingGOOGLE* pPresentationTimings"
248
+ register_function "VkResult vkCreateIOSSurfaceMVK" , "VkInstance instance, const VkIOSSurfaceCreateInfoMVK* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkSurfaceKHR* pSurface"
249
+ register_function "VkResult vkCreateMacOSSurfaceMVK" , "VkInstance instance, const VkMacOSSurfaceCreateInfoMVK* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkSurfaceKHR* pSurface"
250
+ register_function "void vkCmdSetViewportWScalingNV" , "VkCommandBuffer commandBuffer, uint32_t firstViewport, uint32_t viewportCount, const VkViewportWScalingNV* pViewportWScalings"
251
+ register_function "void vkCmdSetDiscardRectangleEXT" , "VkCommandBuffer commandBuffer, uint32_t firstDiscardRectangle, uint32_t discardRectangleCount, const VkRect2D* pDiscardRectangles"
252
+ register_function "void vkCmdSetSampleLocationsEXT" , "VkCommandBuffer commandBuffer, const VkSampleLocationsInfoEXT* pSampleLocationsInfo"
253
+ register_function "void vkGetPhysicalDeviceMultisamplePropertiesEXT" , "VkPhysicalDevice physicalDevice, VkSampleCountFlagBits samples, VkMultisamplePropertiesEXT* pMultisampleProperties"
254
+ register_function "VkResult vkGetPhysicalDeviceSurfaceCapabilities2KHR" , "VkPhysicalDevice physicalDevice, const VkPhysicalDeviceSurfaceInfo2KHR* pSurfaceInfo, VkSurfaceCapabilities2KHR* pSurfaceCapabilities"
255
+ register_function "VkResult vkGetPhysicalDeviceSurfaceFormats2KHR" , "VkPhysicalDevice physicalDevice, const VkPhysicalDeviceSurfaceInfo2KHR* pSurfaceInfo, uint32_t* pSurfaceFormatCount, VkSurfaceFormat2KHR* pSurfaceFormats"
256
+ register_function "VkResult vkGetPhysicalDeviceDisplayProperties2KHR" , "VkPhysicalDevice physicalDevice, uint32_t* pPropertyCount, VkDisplayProperties2KHR* pProperties"
257
+ register_function "VkResult vkGetPhysicalDeviceDisplayPlaneProperties2KHR" , "VkPhysicalDevice physicalDevice, uint32_t* pPropertyCount, VkDisplayPlaneProperties2KHR* pProperties"
258
+ register_function "VkResult vkGetDisplayModeProperties2KHR" , "VkPhysicalDevice physicalDevice, VkDisplayKHR display, uint32_t* pPropertyCount, VkDisplayModeProperties2KHR* pProperties"
259
+ register_function "VkResult vkGetDisplayPlaneCapabilities2KHR" , "VkPhysicalDevice physicalDevice, const VkDisplayPlaneInfo2KHR* pDisplayPlaneInfo, VkDisplayPlaneCapabilities2KHR* pCapabilities"
260
+ register_function "void vkGetBufferMemoryRequirements2" , "VkDevice device, const VkBufferMemoryRequirementsInfo2* pInfo, VkMemoryRequirements2* pMemoryRequirements"
261
+ register_function "void vkGetImageMemoryRequirements2" , "VkDevice device, const VkImageMemoryRequirementsInfo2* pInfo, VkMemoryRequirements2* pMemoryRequirements"
262
+ register_function "void vkGetImageSparseMemoryRequirements2" , "VkDevice device, const VkImageSparseMemoryRequirementsInfo2* pInfo, uint32_t* pSparseMemoryRequirementCount, VkSparseImageMemoryRequirements2* pSparseMemoryRequirements"
263
+ register_function "VkResult vkCreateSamplerYcbcrConversion" , "VkDevice device, const VkSamplerYcbcrConversionCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkSamplerYcbcrConversion* pYcbcrConversion"
264
+ register_function "void vkDestroySamplerYcbcrConversion" , "VkDevice device, VkSamplerYcbcrConversion ycbcrConversion, const VkAllocationCallbacks* pAllocator"
265
+ register_function "void vkGetDeviceQueue2" , "VkDevice device, const VkDeviceQueueInfo2* pQueueInfo, VkQueue* pQueue"
266
+ register_function "VkResult vkCreateValidationCacheEXT" , "VkDevice device, const VkValidationCacheCreateInfoEXT* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkValidationCacheEXT* pValidationCache"
267
+ register_function "void vkDestroyValidationCacheEXT" , "VkDevice device, VkValidationCacheEXT validationCache, const VkAllocationCallbacks* pAllocator"
268
+ register_function "VkResult vkGetValidationCacheDataEXT" , "VkDevice device, VkValidationCacheEXT validationCache, size_t* pDataSize, void* pData"
269
+ register_function "VkResult vkMergeValidationCachesEXT" , "VkDevice device, VkValidationCacheEXT dstCache, uint32_t srcCacheCount, const VkValidationCacheEXT* pSrcCaches"
270
+ register_function "void vkGetDescriptorSetLayoutSupport" , "VkDevice device, const VkDescriptorSetLayoutCreateInfo* pCreateInfo, VkDescriptorSetLayoutSupport* pSupport"
271
+ register_function "VkResult vkGetSwapchainGrallocUsageANDROID" , "VkDevice device, VkFormat format, VkImageUsageFlags imageUsage, int* grallocUsage"
272
+ register_function "VkResult vkAcquireImageANDROID" , "VkDevice device, VkImage image, int nativeFenceFd, VkSemaphore semaphore, VkFence fence"
273
+ register_function "VkResult vkQueueSignalReleaseImageANDROID" , "VkQueue queue, uint32_t waitSemaphoreCount, const VkSemaphore* pWaitSemaphores, VkImage image, int* pNativeFenceFd"
274
+ register_function "VkResult vkGetShaderInfoAMD" , "VkDevice device, VkPipeline pipeline, VkShaderStageFlagBits shaderStage, VkShaderInfoTypeAMD infoType, size_t* pInfoSize, void* pInfo"
275
+ register_function "VkResult vkSetDebugUtilsObjectNameEXT" , "VkDevice device, const VkDebugUtilsObjectNameInfoEXT* pNameInfo"
276
+ register_function "VkResult vkSetDebugUtilsObjectTagEXT" , "VkDevice device, const VkDebugUtilsObjectTagInfoEXT* pTagInfo"
277
+ register_function "void vkQueueBeginDebugUtilsLabelEXT" , "VkQueue queue, const VkDebugUtilsLabelEXT* pLabelInfo"
278
+ register_function "void vkQueueEndDebugUtilsLabelEXT" , "VkQueue queue"
279
+ register_function "void vkQueueInsertDebugUtilsLabelEXT" , "VkQueue queue, const VkDebugUtilsLabelEXT* pLabelInfo"
280
+ register_function "void vkCmdBeginDebugUtilsLabelEXT" , "VkCommandBuffer commandBuffer, const VkDebugUtilsLabelEXT* pLabelInfo"
281
+ register_function "void vkCmdEndDebugUtilsLabelEXT" , "VkCommandBuffer commandBuffer"
282
+ register_function "void vkCmdInsertDebugUtilsLabelEXT" , "VkCommandBuffer commandBuffer, const VkDebugUtilsLabelEXT* pLabelInfo"
283
+ register_function "VkResult vkCreateDebugUtilsMessengerEXT" , "VkInstance instance, const VkDebugUtilsMessengerCreateInfoEXT* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkDebugUtilsMessengerEXT* pMessenger"
284
+ register_function "void vkDestroyDebugUtilsMessengerEXT" , "VkInstance instance, VkDebugUtilsMessengerEXT messenger, const VkAllocationCallbacks* pAllocator"
285
+ register_function "void vkSubmitDebugUtilsMessageEXT" , "VkInstance instance, VkDebugUtilsMessageSeverityFlagBitsEXT messageSeverity, VkDebugUtilsMessageTypeFlagsEXT messageTypes, const VkDebugUtilsMessengerCallbackDataEXT* pCallbackData"
286
+ register_function "VkResult vkGetMemoryHostPointerPropertiesEXT" , "VkDevice device, VkExternalMemoryHandleTypeFlagBits handleType, const void* pHostPointer, VkMemoryHostPointerPropertiesEXT* pMemoryHostPointerProperties"
287
+ register_function "void vkCmdWriteBufferMarkerAMD" , "VkCommandBuffer commandBuffer, VkPipelineStageFlagBits pipelineStage, VkBuffer dstBuffer, VkDeviceSize dstOffset, uint32_t marker"
288
+ register_function "VkResult vkCreateRenderPass2KHR" , "VkDevice device, const VkRenderPassCreateInfo2KHR* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkRenderPass* pRenderPass"
289
+ register_function "void vkCmdBeginRenderPass2KHR" , "VkCommandBuffer commandBuffer, const VkRenderPassBeginInfo* pRenderPassBegin, const VkSubpassBeginInfoKHR* pSubpassBeginInfo"
290
+ register_function "void vkCmdNextSubpass2KHR" , "VkCommandBuffer commandBuffer, const VkSubpassBeginInfoKHR* pSubpassBeginInfo, const VkSubpassEndInfoKHR* pSubpassEndInfo"
291
+ register_function "void vkCmdEndRenderPass2KHR" , "VkCommandBuffer commandBuffer, const VkSubpassEndInfoKHR* pSubpassEndInfo"
292
+ register_function "VkResult vkGetAndroidHardwareBufferPropertiesANDROID" , "VkDevice device, const struct AHardwareBuffer* buffer, VkAndroidHardwareBufferPropertiesANDROID* pProperties"
293
+ register_function "VkResult vkGetMemoryAndroidHardwareBufferANDROID" , "VkDevice device, const VkMemoryGetAndroidHardwareBufferInfoANDROID* pInfo, struct AHardwareBuffer** pBuffer"
294
+ register_function "void vkCmdDrawIndirectCountKHR" , "VkCommandBuffer commandBuffer, VkBuffer buffer, VkDeviceSize offset, VkBuffer countBuffer, VkDeviceSize countBufferOffset, uint32_t maxDrawCount, uint32_t stride"
295
+ register_function "void vkCmdDrawIndexedIndirectCountKHR" , "VkCommandBuffer commandBuffer, VkBuffer buffer, VkDeviceSize offset, VkBuffer countBuffer, VkDeviceSize countBufferOffset, uint32_t maxDrawCount, uint32_t stride"
296
+ register_function "void vkCmdSetCheckpointNV" , "VkCommandBuffer commandBuffer, const void* pCheckpointMarker"
297
+ register_function "void vkGetQueueCheckpointDataNV" , "VkQueue queue, uint32_t* pCheckpointDataCount, VkCheckpointDataNV* pCheckpointData"
298
+ end