We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5fadb18 commit 30b1c03Copy full SHA for 30b1c03
src/sdl3.zig
@@ -1015,7 +1015,7 @@ pub const vk = struct {
1015
pub fn getInstanceExtensions(count: *i32, maybe_names: ?[*][*:0]u8) bool {
1016
return SDL_Vulkan_GetInstanceExtensions(count, maybe_names);
1017
}
1018
- extern fn SDL_Vulkan_GetInstanceExtensions(count: *i32, names: ?[*][*]u8) bool;
+ extern fn SDL_Vulkan_GetInstanceExtensions(count: *i32, names: ?[*][*:0]u8) bool;
1019
1020
pub fn createSurface(window: *Window, instance: Instance, surface: *anyopaque) bool {
1021
return SDL_Vulkan_CreateSurface(window, instance, surface);
0 commit comments