From 01f75a6db3143c98a05b0e4e83531a2fb13f5b0c Mon Sep 17 00:00:00 2001 From: lmp Date: Sat, 11 Nov 2023 15:22:11 +0100 Subject: [PATCH] vulkan: fix importing `sdl.vulkan` module. Fixes #607 --- vulkan/vulkan.c.v | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/vulkan/vulkan.c.v b/vulkan/vulkan.c.v index 34617e3a..eb6d1679 100644 --- a/vulkan/vulkan.c.v +++ b/vulkan/vulkan.c.v @@ -1,7 +1,9 @@ // Copyright(C) 2021 Lars Pontoppidan. All rights reserved. // Use of this source code is governed by an MIT license // that can be found in the LICENSE file. -module sdl +module vulkan + +import sdl // // SDL_vulkan.h @@ -165,7 +167,7 @@ fn C.SDL_Vulkan_GetInstanceExtensions(window &C.SDL_Window, p_count &u32, p_name */ // // See also: SDL_Vulkan_CreateSurface() -pub fn vulkan_get_instance_extensions(window &Window, p_count &u32, p_names &&char) bool { +pub fn vulkan_get_instance_extensions(window &sdl.Window, p_count &u32, p_names &&char) bool { return C.SDL_Vulkan_GetInstanceExtensions(window, p_count, p_names) } @@ -225,6 +227,6 @@ fn C.SDL_Vulkan_GetDrawableSize(window &C.SDL_Window, w &int, h &int) // // See also: SDL_GetWindowSize() // See also: SDL_CreateWindow() -pub fn vulkan_get_drawable_size(window &Window, w &int, h &int) { +pub fn vulkan_get_drawable_size(window &sdl.Window, w &int, h &int) { C.SDL_Vulkan_GetDrawableSize(window, w, h) }