Class VkSurfaceCapabilitiesFullScreenExclusiveEXT

java.lang.Object
org.lwjgl.system.Pointer.Default
org.lwjgl.system.Struct<VkSurfaceCapabilitiesFullScreenExclusiveEXT>
org.lwjgl.vulkan.VkSurfaceCapabilitiesFullScreenExclusiveEXT
All Implemented Interfaces:
AutoCloseable, org.lwjgl.system.NativeResource, org.lwjgl.system.Pointer

public class VkSurfaceCapabilitiesFullScreenExclusiveEXT extends org.lwjgl.system.Struct<VkSurfaceCapabilitiesFullScreenExclusiveEXT> implements org.lwjgl.system.NativeResource
Structure describing full screen exclusive capabilities of a surface.
Description

This structure can be included in the pNext chain of VkSurfaceCapabilities2KHR to determine support for exclusive full-screen access. If fullScreenExclusiveSupported is FALSE, it indicates that exclusive full-screen access is not obtainable for this surface.

Applications must not attempt to create swapchains with FULL_SCREEN_EXCLUSIVE_APPLICATION_CONTROLLED_EXT set if fullScreenExclusiveSupported is FALSE.

Valid Usage (Implicit)

Layout


 struct VkSurfaceCapabilitiesFullScreenExclusiveEXT {
     VkStructureType sType();
     void * pNext();
     VkBool32 fullScreenExclusiveSupported;
 }