How to use PFN_vkAcquireFullScreenExclusiveModeEXT? #998
-
|
How do you use it? |
Beta Was this translation helpful? Give feedback.
Answered by
MarijnS95
Jul 2, 2025
Replies: 1 comment 1 reply
-
|
You'd use it like you would with any other Vulkan extension wrapper provided by let fullscreen_exclusive = ash::ext::full_screen_exclusive::Device::new(&instance, &device);
fullscreen_exclusive.acquire_full_screen_exclusive_mode(swapchain); |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
Zerowalker
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You'd use it like you would with any other Vulkan extension wrapper provided by
ash: initialize the function-pointer wrapper, and call the high-level function on it: