some changes
All checks were successful
pyrite-dev/milsko/pipeline/head This commit looks good

This commit is contained in:
Nishi 2026-04-17 01:03:14 +09:00
commit 5220f742be
Signed by: nishi
GPG key ID: 27EF69B208EB9343
3 changed files with 23 additions and 4 deletions

View file

@ -489,8 +489,8 @@ static int vulkan_devices_setup(MwWidget handle, vulkan_t* o) {
return 0;
}
void MwVulkanConfigure(MwVulkanConfig cfg) {
vulkan_config = cfg;
void MwVulkanConfigure(MwVulkanConfig* cfg) {
vulkan_config = *cfg;
}
void MwVulkanEnableExtension(const char* name) {
@ -595,7 +595,7 @@ void MwVulkanEnableLayer(const char* ext_name) {
(void)ext_name;
}
void MwVulkanConfigure(MwVulkanConfig cfg) {
void MwVulkanConfigure(MwVulkanConfig* cfg) {
(void)cfg;
}