vulkan-api-1.1.3.0: Low-level low-overhead vulkan api bindings

Safe HaskellNone
LanguageHaskell2010

Graphics.Vulkan.Ext.VK_KHR_surface

Contents

Synopsis

Vulkan extension: VK_KHR_surface

supported: vulkan

contact: James Jones cubanismo,Ian Elliott ianelliottus

author: KHR

type: instance

Extension number: 1

type VkDestroySurfaceKHR = "vkDestroySurfaceKHR" Source #

type HS_vkDestroySurfaceKHR Source #

Arguments

 = VkInstance

instance

-> VkSurfaceKHR

surface

-> Ptr VkAllocationCallbacks

pAllocator

-> IO () 
void vkDestroySurfaceKHR
    ( VkInstance instance
    , VkSurfaceKHR surface
    , const VkAllocationCallbacks* pAllocator
    )

vkDestroySurfaceKHR registry at www.khronos.org

vkDestroySurfaceKHR Source #

Arguments

:: VkInstance

instance

-> VkSurfaceKHR

surface

-> Ptr VkAllocationCallbacks

pAllocator

-> IO () 
void vkDestroySurfaceKHR
    ( VkInstance instance
    , VkSurfaceKHR surface
    , const VkAllocationCallbacks* pAllocator
    )

vkDestroySurfaceKHR registry at www.khronos.org

Note: When useNativeFFI-1-0 cabal flag is enabled, this function is linked statically as a foreign import call to C Vulkan loader. Otherwise, it is looked up dynamically at runtime using dlsym-like machinery (platform-dependent).

Independently of the flag setting, you can lookup the function manually at runtime:

myDestroySurfaceKHR <- vkGetInstanceProc @VkDestroySurfaceKHR vkInstance

or less efficient:

myDestroySurfaceKHR <- vkGetProc @VkDestroySurfaceKHR

Note: vkDestroySurfaceKHRUnsafe and vkDestroySurfaceKHRSafe are the unsafe and safe FFI imports of this function, respectively. vkDestroySurfaceKHR is an alias of vkDestroySurfaceKHRUnsafe when the useUnsafeFFIDefault cabal flag is enabled; otherwise, it is an alias of vkDestroySurfaceKHRSafe.

vkDestroySurfaceKHRUnsafe Source #

Arguments

:: VkInstance

instance

-> VkSurfaceKHR

surface

-> Ptr VkAllocationCallbacks

pAllocator

-> IO () 
void vkDestroySurfaceKHR
    ( VkInstance instance
    , VkSurfaceKHR surface
    , const VkAllocationCallbacks* pAllocator
    )

vkDestroySurfaceKHR registry at www.khronos.org

Note: When useNativeFFI-1-0 cabal flag is enabled, this function is linked statically as a foreign import call to C Vulkan loader. Otherwise, it is looked up dynamically at runtime using dlsym-like machinery (platform-dependent).

Independently of the flag setting, you can lookup the function manually at runtime:

myDestroySurfaceKHR <- vkGetInstanceProc @VkDestroySurfaceKHR vkInstance

or less efficient:

myDestroySurfaceKHR <- vkGetProc @VkDestroySurfaceKHR

Note: vkDestroySurfaceKHRUnsafe and vkDestroySurfaceKHRSafe are the unsafe and safe FFI imports of this function, respectively. vkDestroySurfaceKHR is an alias of vkDestroySurfaceKHRUnsafe when the useUnsafeFFIDefault cabal flag is enabled; otherwise, it is an alias of vkDestroySurfaceKHRSafe.

vkDestroySurfaceKHRSafe Source #

Arguments

:: VkInstance

instance

-> VkSurfaceKHR

surface

-> Ptr VkAllocationCallbacks

pAllocator

-> IO () 
void vkDestroySurfaceKHR
    ( VkInstance instance
    , VkSurfaceKHR surface
    , const VkAllocationCallbacks* pAllocator
    )

vkDestroySurfaceKHR registry at www.khronos.org

Note: When useNativeFFI-1-0 cabal flag is enabled, this function is linked statically as a foreign import call to C Vulkan loader. Otherwise, it is looked up dynamically at runtime using dlsym-like machinery (platform-dependent).

Independently of the flag setting, you can lookup the function manually at runtime:

myDestroySurfaceKHR <- vkGetInstanceProc @VkDestroySurfaceKHR vkInstance

or less efficient:

myDestroySurfaceKHR <- vkGetProc @VkDestroySurfaceKHR

Note: vkDestroySurfaceKHRUnsafe and vkDestroySurfaceKHRSafe are the unsafe and safe FFI imports of this function, respectively. vkDestroySurfaceKHR is an alias of vkDestroySurfaceKHRUnsafe when the useUnsafeFFIDefault cabal flag is enabled; otherwise, it is an alias of vkDestroySurfaceKHRSafe.

type VkGetPhysicalDeviceSurfaceSupportKHR = "vkGetPhysicalDeviceSurfaceSupportKHR" Source #

type HS_vkGetPhysicalDeviceSurfaceSupportKHR Source #

Arguments

 = VkPhysicalDevice

physicalDevice

-> Word32

queueFamilyIndex

-> VkSurfaceKHR

surface

-> Ptr VkBool32

pSupported

-> IO VkResult 

Success codes: VK_SUCCESS.

Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, VK_ERROR_OUT_OF_DEVICE_MEMORY, VK_ERROR_SURFACE_LOST_KHR.

VkResult vkGetPhysicalDeviceSurfaceSupportKHR
    ( VkPhysicalDevice physicalDevice
    , uint32_t queueFamilyIndex
    , VkSurfaceKHR surface
    , VkBool32* pSupported
    )

vkGetPhysicalDeviceSurfaceSupportKHR registry at www.khronos.org

vkGetPhysicalDeviceSurfaceSupportKHR Source #

Arguments

:: VkPhysicalDevice

physicalDevice

-> Word32

queueFamilyIndex

-> VkSurfaceKHR

surface

-> Ptr VkBool32

pSupported

-> IO VkResult 

Success codes: VK_SUCCESS.

Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, VK_ERROR_OUT_OF_DEVICE_MEMORY, VK_ERROR_SURFACE_LOST_KHR.

VkResult vkGetPhysicalDeviceSurfaceSupportKHR
    ( VkPhysicalDevice physicalDevice
    , uint32_t queueFamilyIndex
    , VkSurfaceKHR surface
    , VkBool32* pSupported
    )

vkGetPhysicalDeviceSurfaceSupportKHR registry at www.khronos.org

Note: When useNativeFFI-1-0 cabal flag is enabled, this function is linked statically as a foreign import call to C Vulkan loader. Otherwise, it is looked up dynamically at runtime using dlsym-like machinery (platform-dependent).

Independently of the flag setting, you can lookup the function manually at runtime:

myGetPhysicalDeviceSurfaceSupportKHR <- vkGetInstanceProc @VkGetPhysicalDeviceSurfaceSupportKHR vkInstance

or less efficient:

myGetPhysicalDeviceSurfaceSupportKHR <- vkGetProc @VkGetPhysicalDeviceSurfaceSupportKHR

Note: vkGetPhysicalDeviceSurfaceSupportKHRUnsafe and vkGetPhysicalDeviceSurfaceSupportKHRSafe are the unsafe and safe FFI imports of this function, respectively. vkGetPhysicalDeviceSurfaceSupportKHR is an alias of vkGetPhysicalDeviceSurfaceSupportKHRUnsafe when the useUnsafeFFIDefault cabal flag is enabled; otherwise, it is an alias of vkGetPhysicalDeviceSurfaceSupportKHRSafe.

vkGetPhysicalDeviceSurfaceSupportKHRUnsafe Source #

Arguments

:: VkPhysicalDevice

physicalDevice

-> Word32

queueFamilyIndex

-> VkSurfaceKHR

surface

-> Ptr VkBool32

pSupported

-> IO VkResult 

Success codes: VK_SUCCESS.

Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, VK_ERROR_OUT_OF_DEVICE_MEMORY, VK_ERROR_SURFACE_LOST_KHR.

VkResult vkGetPhysicalDeviceSurfaceSupportKHR
    ( VkPhysicalDevice physicalDevice
    , uint32_t queueFamilyIndex
    , VkSurfaceKHR surface
    , VkBool32* pSupported
    )

vkGetPhysicalDeviceSurfaceSupportKHR registry at www.khronos.org

Note: When useNativeFFI-1-0 cabal flag is enabled, this function is linked statically as a foreign import call to C Vulkan loader. Otherwise, it is looked up dynamically at runtime using dlsym-like machinery (platform-dependent).

Independently of the flag setting, you can lookup the function manually at runtime:

myGetPhysicalDeviceSurfaceSupportKHR <- vkGetInstanceProc @VkGetPhysicalDeviceSurfaceSupportKHR vkInstance

or less efficient:

myGetPhysicalDeviceSurfaceSupportKHR <- vkGetProc @VkGetPhysicalDeviceSurfaceSupportKHR

Note: vkGetPhysicalDeviceSurfaceSupportKHRUnsafe and vkGetPhysicalDeviceSurfaceSupportKHRSafe are the unsafe and safe FFI imports of this function, respectively. vkGetPhysicalDeviceSurfaceSupportKHR is an alias of vkGetPhysicalDeviceSurfaceSupportKHRUnsafe when the useUnsafeFFIDefault cabal flag is enabled; otherwise, it is an alias of vkGetPhysicalDeviceSurfaceSupportKHRSafe.

vkGetPhysicalDeviceSurfaceSupportKHRSafe Source #

Arguments

:: VkPhysicalDevice

physicalDevice

-> Word32

queueFamilyIndex

-> VkSurfaceKHR

surface

-> Ptr VkBool32

pSupported

-> IO VkResult 

Success codes: VK_SUCCESS.

Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, VK_ERROR_OUT_OF_DEVICE_MEMORY, VK_ERROR_SURFACE_LOST_KHR.

VkResult vkGetPhysicalDeviceSurfaceSupportKHR
    ( VkPhysicalDevice physicalDevice
    , uint32_t queueFamilyIndex
    , VkSurfaceKHR surface
    , VkBool32* pSupported
    )

vkGetPhysicalDeviceSurfaceSupportKHR registry at www.khronos.org

Note: When useNativeFFI-1-0 cabal flag is enabled, this function is linked statically as a foreign import call to C Vulkan loader. Otherwise, it is looked up dynamically at runtime using dlsym-like machinery (platform-dependent).

Independently of the flag setting, you can lookup the function manually at runtime:

myGetPhysicalDeviceSurfaceSupportKHR <- vkGetInstanceProc @VkGetPhysicalDeviceSurfaceSupportKHR vkInstance

or less efficient:

myGetPhysicalDeviceSurfaceSupportKHR <- vkGetProc @VkGetPhysicalDeviceSurfaceSupportKHR

Note: vkGetPhysicalDeviceSurfaceSupportKHRUnsafe and vkGetPhysicalDeviceSurfaceSupportKHRSafe are the unsafe and safe FFI imports of this function, respectively. vkGetPhysicalDeviceSurfaceSupportKHR is an alias of vkGetPhysicalDeviceSurfaceSupportKHRUnsafe when the useUnsafeFFIDefault cabal flag is enabled; otherwise, it is an alias of vkGetPhysicalDeviceSurfaceSupportKHRSafe.

type VkGetPhysicalDeviceSurfaceCapabilitiesKHR = "vkGetPhysicalDeviceSurfaceCapabilitiesKHR" Source #

type HS_vkGetPhysicalDeviceSurfaceCapabilitiesKHR Source #

Arguments

 = VkPhysicalDevice

physicalDevice

-> VkSurfaceKHR

surface

-> Ptr VkSurfaceCapabilitiesKHR

pSurfaceCapabilities

-> IO VkResult 

Success codes: VK_SUCCESS.

Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, VK_ERROR_OUT_OF_DEVICE_MEMORY, VK_ERROR_SURFACE_LOST_KHR.

VkResult vkGetPhysicalDeviceSurfaceCapabilitiesKHR
    ( VkPhysicalDevice physicalDevice
    , VkSurfaceKHR surface
    , VkSurfaceCapabilitiesKHR* pSurfaceCapabilities
    )

vkGetPhysicalDeviceSurfaceCapabilitiesKHR registry at www.khronos.org

vkGetPhysicalDeviceSurfaceCapabilitiesKHR Source #

Arguments

:: VkPhysicalDevice

physicalDevice

-> VkSurfaceKHR

surface

-> Ptr VkSurfaceCapabilitiesKHR

pSurfaceCapabilities

-> IO VkResult 

Success codes: VK_SUCCESS.

Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, VK_ERROR_OUT_OF_DEVICE_MEMORY, VK_ERROR_SURFACE_LOST_KHR.

VkResult vkGetPhysicalDeviceSurfaceCapabilitiesKHR
    ( VkPhysicalDevice physicalDevice
    , VkSurfaceKHR surface
    , VkSurfaceCapabilitiesKHR* pSurfaceCapabilities
    )

vkGetPhysicalDeviceSurfaceCapabilitiesKHR registry at www.khronos.org

Note: When useNativeFFI-1-0 cabal flag is enabled, this function is linked statically as a foreign import call to C Vulkan loader. Otherwise, it is looked up dynamically at runtime using dlsym-like machinery (platform-dependent).

Independently of the flag setting, you can lookup the function manually at runtime:

myGetPhysicalDeviceSurfaceCapabilitiesKHR <- vkGetInstanceProc @VkGetPhysicalDeviceSurfaceCapabilitiesKHR vkInstance

or less efficient:

myGetPhysicalDeviceSurfaceCapabilitiesKHR <- vkGetProc @VkGetPhysicalDeviceSurfaceCapabilitiesKHR

Note: vkGetPhysicalDeviceSurfaceCapabilitiesKHRUnsafe and vkGetPhysicalDeviceSurfaceCapabilitiesKHRSafe are the unsafe and safe FFI imports of this function, respectively. vkGetPhysicalDeviceSurfaceCapabilitiesKHR is an alias of vkGetPhysicalDeviceSurfaceCapabilitiesKHRUnsafe when the useUnsafeFFIDefault cabal flag is enabled; otherwise, it is an alias of vkGetPhysicalDeviceSurfaceCapabilitiesKHRSafe.

vkGetPhysicalDeviceSurfaceCapabilitiesKHRUnsafe Source #

Arguments

:: VkPhysicalDevice

physicalDevice

-> VkSurfaceKHR

surface

-> Ptr VkSurfaceCapabilitiesKHR

pSurfaceCapabilities

-> IO VkResult 

Success codes: VK_SUCCESS.

Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, VK_ERROR_OUT_OF_DEVICE_MEMORY, VK_ERROR_SURFACE_LOST_KHR.

VkResult vkGetPhysicalDeviceSurfaceCapabilitiesKHR
    ( VkPhysicalDevice physicalDevice
    , VkSurfaceKHR surface
    , VkSurfaceCapabilitiesKHR* pSurfaceCapabilities
    )

vkGetPhysicalDeviceSurfaceCapabilitiesKHR registry at www.khronos.org

Note: When useNativeFFI-1-0 cabal flag is enabled, this function is linked statically as a foreign import call to C Vulkan loader. Otherwise, it is looked up dynamically at runtime using dlsym-like machinery (platform-dependent).

Independently of the flag setting, you can lookup the function manually at runtime:

myGetPhysicalDeviceSurfaceCapabilitiesKHR <- vkGetInstanceProc @VkGetPhysicalDeviceSurfaceCapabilitiesKHR vkInstance

or less efficient:

myGetPhysicalDeviceSurfaceCapabilitiesKHR <- vkGetProc @VkGetPhysicalDeviceSurfaceCapabilitiesKHR

Note: vkGetPhysicalDeviceSurfaceCapabilitiesKHRUnsafe and vkGetPhysicalDeviceSurfaceCapabilitiesKHRSafe are the unsafe and safe FFI imports of this function, respectively. vkGetPhysicalDeviceSurfaceCapabilitiesKHR is an alias of vkGetPhysicalDeviceSurfaceCapabilitiesKHRUnsafe when the useUnsafeFFIDefault cabal flag is enabled; otherwise, it is an alias of vkGetPhysicalDeviceSurfaceCapabilitiesKHRSafe.

vkGetPhysicalDeviceSurfaceCapabilitiesKHRSafe Source #

Arguments

:: VkPhysicalDevice

physicalDevice

-> VkSurfaceKHR

surface

-> Ptr VkSurfaceCapabilitiesKHR

pSurfaceCapabilities

-> IO VkResult 

Success codes: VK_SUCCESS.

Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, VK_ERROR_OUT_OF_DEVICE_MEMORY, VK_ERROR_SURFACE_LOST_KHR.

VkResult vkGetPhysicalDeviceSurfaceCapabilitiesKHR
    ( VkPhysicalDevice physicalDevice
    , VkSurfaceKHR surface
    , VkSurfaceCapabilitiesKHR* pSurfaceCapabilities
    )

vkGetPhysicalDeviceSurfaceCapabilitiesKHR registry at www.khronos.org

Note: When useNativeFFI-1-0 cabal flag is enabled, this function is linked statically as a foreign import call to C Vulkan loader. Otherwise, it is looked up dynamically at runtime using dlsym-like machinery (platform-dependent).

Independently of the flag setting, you can lookup the function manually at runtime:

myGetPhysicalDeviceSurfaceCapabilitiesKHR <- vkGetInstanceProc @VkGetPhysicalDeviceSurfaceCapabilitiesKHR vkInstance

or less efficient:

myGetPhysicalDeviceSurfaceCapabilitiesKHR <- vkGetProc @VkGetPhysicalDeviceSurfaceCapabilitiesKHR

Note: vkGetPhysicalDeviceSurfaceCapabilitiesKHRUnsafe and vkGetPhysicalDeviceSurfaceCapabilitiesKHRSafe are the unsafe and safe FFI imports of this function, respectively. vkGetPhysicalDeviceSurfaceCapabilitiesKHR is an alias of vkGetPhysicalDeviceSurfaceCapabilitiesKHRUnsafe when the useUnsafeFFIDefault cabal flag is enabled; otherwise, it is an alias of vkGetPhysicalDeviceSurfaceCapabilitiesKHRSafe.

type VkGetPhysicalDeviceSurfaceFormatsKHR = "vkGetPhysicalDeviceSurfaceFormatsKHR" Source #

type HS_vkGetPhysicalDeviceSurfaceFormatsKHR Source #

Arguments

 = VkPhysicalDevice

physicalDevice

-> VkSurfaceKHR

surface

-> Ptr Word32

pSurfaceFormatCount

-> Ptr VkSurfaceFormatKHR

pSurfaceFormats

-> IO VkResult 

Success codes: VK_SUCCESS, VK_INCOMPLETE.

Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, VK_ERROR_OUT_OF_DEVICE_MEMORY, VK_ERROR_SURFACE_LOST_KHR.

VkResult vkGetPhysicalDeviceSurfaceFormatsKHR
    ( VkPhysicalDevice physicalDevice
    , VkSurfaceKHR surface
    , uint32_t* pSurfaceFormatCount
    , VkSurfaceFormatKHR* pSurfaceFormats
    )

vkGetPhysicalDeviceSurfaceFormatsKHR registry at www.khronos.org

vkGetPhysicalDeviceSurfaceFormatsKHR Source #

Arguments

:: VkPhysicalDevice

physicalDevice

-> VkSurfaceKHR

surface

-> Ptr Word32

pSurfaceFormatCount

-> Ptr VkSurfaceFormatKHR

pSurfaceFormats

-> IO VkResult 

Success codes: VK_SUCCESS, VK_INCOMPLETE.

Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, VK_ERROR_OUT_OF_DEVICE_MEMORY, VK_ERROR_SURFACE_LOST_KHR.

VkResult vkGetPhysicalDeviceSurfaceFormatsKHR
    ( VkPhysicalDevice physicalDevice
    , VkSurfaceKHR surface
    , uint32_t* pSurfaceFormatCount
    , VkSurfaceFormatKHR* pSurfaceFormats
    )

vkGetPhysicalDeviceSurfaceFormatsKHR registry at www.khronos.org

Note: When useNativeFFI-1-0 cabal flag is enabled, this function is linked statically as a foreign import call to C Vulkan loader. Otherwise, it is looked up dynamically at runtime using dlsym-like machinery (platform-dependent).

Independently of the flag setting, you can lookup the function manually at runtime:

myGetPhysicalDeviceSurfaceFormatsKHR <- vkGetInstanceProc @VkGetPhysicalDeviceSurfaceFormatsKHR vkInstance

or less efficient:

myGetPhysicalDeviceSurfaceFormatsKHR <- vkGetProc @VkGetPhysicalDeviceSurfaceFormatsKHR

Note: vkGetPhysicalDeviceSurfaceFormatsKHRUnsafe and vkGetPhysicalDeviceSurfaceFormatsKHRSafe are the unsafe and safe FFI imports of this function, respectively. vkGetPhysicalDeviceSurfaceFormatsKHR is an alias of vkGetPhysicalDeviceSurfaceFormatsKHRUnsafe when the useUnsafeFFIDefault cabal flag is enabled; otherwise, it is an alias of vkGetPhysicalDeviceSurfaceFormatsKHRSafe.

vkGetPhysicalDeviceSurfaceFormatsKHRUnsafe Source #

Arguments

:: VkPhysicalDevice

physicalDevice

-> VkSurfaceKHR

surface

-> Ptr Word32

pSurfaceFormatCount

-> Ptr VkSurfaceFormatKHR

pSurfaceFormats

-> IO VkResult 

Success codes: VK_SUCCESS, VK_INCOMPLETE.

Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, VK_ERROR_OUT_OF_DEVICE_MEMORY, VK_ERROR_SURFACE_LOST_KHR.

VkResult vkGetPhysicalDeviceSurfaceFormatsKHR
    ( VkPhysicalDevice physicalDevice
    , VkSurfaceKHR surface
    , uint32_t* pSurfaceFormatCount
    , VkSurfaceFormatKHR* pSurfaceFormats
    )

vkGetPhysicalDeviceSurfaceFormatsKHR registry at www.khronos.org

Note: When useNativeFFI-1-0 cabal flag is enabled, this function is linked statically as a foreign import call to C Vulkan loader. Otherwise, it is looked up dynamically at runtime using dlsym-like machinery (platform-dependent).

Independently of the flag setting, you can lookup the function manually at runtime:

myGetPhysicalDeviceSurfaceFormatsKHR <- vkGetInstanceProc @VkGetPhysicalDeviceSurfaceFormatsKHR vkInstance

or less efficient:

myGetPhysicalDeviceSurfaceFormatsKHR <- vkGetProc @VkGetPhysicalDeviceSurfaceFormatsKHR

Note: vkGetPhysicalDeviceSurfaceFormatsKHRUnsafe and vkGetPhysicalDeviceSurfaceFormatsKHRSafe are the unsafe and safe FFI imports of this function, respectively. vkGetPhysicalDeviceSurfaceFormatsKHR is an alias of vkGetPhysicalDeviceSurfaceFormatsKHRUnsafe when the useUnsafeFFIDefault cabal flag is enabled; otherwise, it is an alias of vkGetPhysicalDeviceSurfaceFormatsKHRSafe.

vkGetPhysicalDeviceSurfaceFormatsKHRSafe Source #

Arguments

:: VkPhysicalDevice

physicalDevice

-> VkSurfaceKHR

surface

-> Ptr Word32

pSurfaceFormatCount

-> Ptr VkSurfaceFormatKHR

pSurfaceFormats

-> IO VkResult 

Success codes: VK_SUCCESS, VK_INCOMPLETE.

Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, VK_ERROR_OUT_OF_DEVICE_MEMORY, VK_ERROR_SURFACE_LOST_KHR.

VkResult vkGetPhysicalDeviceSurfaceFormatsKHR
    ( VkPhysicalDevice physicalDevice
    , VkSurfaceKHR surface
    , uint32_t* pSurfaceFormatCount
    , VkSurfaceFormatKHR* pSurfaceFormats
    )

vkGetPhysicalDeviceSurfaceFormatsKHR registry at www.khronos.org

Note: When useNativeFFI-1-0 cabal flag is enabled, this function is linked statically as a foreign import call to C Vulkan loader. Otherwise, it is looked up dynamically at runtime using dlsym-like machinery (platform-dependent).

Independently of the flag setting, you can lookup the function manually at runtime:

myGetPhysicalDeviceSurfaceFormatsKHR <- vkGetInstanceProc @VkGetPhysicalDeviceSurfaceFormatsKHR vkInstance

or less efficient:

myGetPhysicalDeviceSurfaceFormatsKHR <- vkGetProc @VkGetPhysicalDeviceSurfaceFormatsKHR

Note: vkGetPhysicalDeviceSurfaceFormatsKHRUnsafe and vkGetPhysicalDeviceSurfaceFormatsKHRSafe are the unsafe and safe FFI imports of this function, respectively. vkGetPhysicalDeviceSurfaceFormatsKHR is an alias of vkGetPhysicalDeviceSurfaceFormatsKHRUnsafe when the useUnsafeFFIDefault cabal flag is enabled; otherwise, it is an alias of vkGetPhysicalDeviceSurfaceFormatsKHRSafe.

type VkGetPhysicalDeviceSurfacePresentModesKHR = "vkGetPhysicalDeviceSurfacePresentModesKHR" Source #

type HS_vkGetPhysicalDeviceSurfacePresentModesKHR Source #

Arguments

 = VkPhysicalDevice

physicalDevice

-> VkSurfaceKHR

surface

-> Ptr Word32

pPresentModeCount

-> Ptr VkPresentModeKHR

pPresentModes

-> IO VkResult 

Success codes: VK_SUCCESS, VK_INCOMPLETE.

Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, VK_ERROR_OUT_OF_DEVICE_MEMORY, VK_ERROR_SURFACE_LOST_KHR.

VkResult vkGetPhysicalDeviceSurfacePresentModesKHR
    ( VkPhysicalDevice physicalDevice
    , VkSurfaceKHR surface
    , uint32_t* pPresentModeCount
    , VkPresentModeKHR* pPresentModes
    )

vkGetPhysicalDeviceSurfacePresentModesKHR registry at www.khronos.org

vkGetPhysicalDeviceSurfacePresentModesKHR Source #

Arguments

:: VkPhysicalDevice

physicalDevice

-> VkSurfaceKHR

surface

-> Ptr Word32

pPresentModeCount

-> Ptr VkPresentModeKHR

pPresentModes

-> IO VkResult 

Success codes: VK_SUCCESS, VK_INCOMPLETE.

Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, VK_ERROR_OUT_OF_DEVICE_MEMORY, VK_ERROR_SURFACE_LOST_KHR.

VkResult vkGetPhysicalDeviceSurfacePresentModesKHR
    ( VkPhysicalDevice physicalDevice
    , VkSurfaceKHR surface
    , uint32_t* pPresentModeCount
    , VkPresentModeKHR* pPresentModes
    )

vkGetPhysicalDeviceSurfacePresentModesKHR registry at www.khronos.org

Note: When useNativeFFI-1-0 cabal flag is enabled, this function is linked statically as a foreign import call to C Vulkan loader. Otherwise, it is looked up dynamically at runtime using dlsym-like machinery (platform-dependent).

Independently of the flag setting, you can lookup the function manually at runtime:

myGetPhysicalDeviceSurfacePresentModesKHR <- vkGetInstanceProc @VkGetPhysicalDeviceSurfacePresentModesKHR vkInstance

or less efficient:

myGetPhysicalDeviceSurfacePresentModesKHR <- vkGetProc @VkGetPhysicalDeviceSurfacePresentModesKHR

Note: vkGetPhysicalDeviceSurfacePresentModesKHRUnsafe and vkGetPhysicalDeviceSurfacePresentModesKHRSafe are the unsafe and safe FFI imports of this function, respectively. vkGetPhysicalDeviceSurfacePresentModesKHR is an alias of vkGetPhysicalDeviceSurfacePresentModesKHRUnsafe when the useUnsafeFFIDefault cabal flag is enabled; otherwise, it is an alias of vkGetPhysicalDeviceSurfacePresentModesKHRSafe.

vkGetPhysicalDeviceSurfacePresentModesKHRUnsafe Source #

Arguments

:: VkPhysicalDevice

physicalDevice

-> VkSurfaceKHR

surface

-> Ptr Word32

pPresentModeCount

-> Ptr VkPresentModeKHR

pPresentModes

-> IO VkResult 

Success codes: VK_SUCCESS, VK_INCOMPLETE.

Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, VK_ERROR_OUT_OF_DEVICE_MEMORY, VK_ERROR_SURFACE_LOST_KHR.

VkResult vkGetPhysicalDeviceSurfacePresentModesKHR
    ( VkPhysicalDevice physicalDevice
    , VkSurfaceKHR surface
    , uint32_t* pPresentModeCount
    , VkPresentModeKHR* pPresentModes
    )

vkGetPhysicalDeviceSurfacePresentModesKHR registry at www.khronos.org

Note: When useNativeFFI-1-0 cabal flag is enabled, this function is linked statically as a foreign import call to C Vulkan loader. Otherwise, it is looked up dynamically at runtime using dlsym-like machinery (platform-dependent).

Independently of the flag setting, you can lookup the function manually at runtime:

myGetPhysicalDeviceSurfacePresentModesKHR <- vkGetInstanceProc @VkGetPhysicalDeviceSurfacePresentModesKHR vkInstance

or less efficient:

myGetPhysicalDeviceSurfacePresentModesKHR <- vkGetProc @VkGetPhysicalDeviceSurfacePresentModesKHR

Note: vkGetPhysicalDeviceSurfacePresentModesKHRUnsafe and vkGetPhysicalDeviceSurfacePresentModesKHRSafe are the unsafe and safe FFI imports of this function, respectively. vkGetPhysicalDeviceSurfacePresentModesKHR is an alias of vkGetPhysicalDeviceSurfacePresentModesKHRUnsafe when the useUnsafeFFIDefault cabal flag is enabled; otherwise, it is an alias of vkGetPhysicalDeviceSurfacePresentModesKHRSafe.

vkGetPhysicalDeviceSurfacePresentModesKHRSafe Source #

Arguments

:: VkPhysicalDevice

physicalDevice

-> VkSurfaceKHR

surface

-> Ptr Word32

pPresentModeCount

-> Ptr VkPresentModeKHR

pPresentModes

-> IO VkResult 

Success codes: VK_SUCCESS, VK_INCOMPLETE.

Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, VK_ERROR_OUT_OF_DEVICE_MEMORY, VK_ERROR_SURFACE_LOST_KHR.

VkResult vkGetPhysicalDeviceSurfacePresentModesKHR
    ( VkPhysicalDevice physicalDevice
    , VkSurfaceKHR surface
    , uint32_t* pPresentModeCount
    , VkPresentModeKHR* pPresentModes
    )

vkGetPhysicalDeviceSurfacePresentModesKHR registry at www.khronos.org

Note: When useNativeFFI-1-0 cabal flag is enabled, this function is linked statically as a foreign import call to C Vulkan loader. Otherwise, it is looked up dynamically at runtime using dlsym-like machinery (platform-dependent).

Independently of the flag setting, you can lookup the function manually at runtime:

myGetPhysicalDeviceSurfacePresentModesKHR <- vkGetInstanceProc @VkGetPhysicalDeviceSurfacePresentModesKHR vkInstance

or less efficient:

myGetPhysicalDeviceSurfacePresentModesKHR <- vkGetProc @VkGetPhysicalDeviceSurfacePresentModesKHR

Note: vkGetPhysicalDeviceSurfacePresentModesKHRUnsafe and vkGetPhysicalDeviceSurfacePresentModesKHRSafe are the unsafe and safe FFI imports of this function, respectively. vkGetPhysicalDeviceSurfacePresentModesKHR is an alias of vkGetPhysicalDeviceSurfacePresentModesKHRUnsafe when the useUnsafeFFIDefault cabal flag is enabled; otherwise, it is an alias of vkGetPhysicalDeviceSurfacePresentModesKHRSafe.

newtype VkBool32 Source #

Constructors

VkBool32 Word32 

Instances

Bounded VkBool32 Source # 
Enum VkBool32 Source # 
Eq VkBool32 Source # 
Integral VkBool32 Source # 
Data VkBool32 Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> VkBool32 -> c VkBool32 #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c VkBool32 #

toConstr :: VkBool32 -> Constr #

dataTypeOf :: VkBool32 -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c VkBool32) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c VkBool32) #

gmapT :: (forall b. Data b => b -> b) -> VkBool32 -> VkBool32 #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> VkBool32 -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> VkBool32 -> r #

gmapQ :: (forall d. Data d => d -> u) -> VkBool32 -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> VkBool32 -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> VkBool32 -> m VkBool32 #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> VkBool32 -> m VkBool32 #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> VkBool32 -> m VkBool32 #

Num VkBool32 Source # 
Ord VkBool32 Source # 
Read VkBool32 Source # 
Real VkBool32 Source # 
Show VkBool32 Source # 
Generic VkBool32 Source # 

Associated Types

type Rep VkBool32 :: * -> * #

Methods

from :: VkBool32 -> Rep VkBool32 x #

to :: Rep VkBool32 x -> VkBool32 #

Storable VkBool32 Source # 
Bits VkBool32 Source # 
FiniteBits VkBool32 Source # 
type Rep VkBool32 Source # 
type Rep VkBool32 = D1 (MetaData "VkBool32" "Graphics.Vulkan.Types.BaseTypes" "vulkan-api-1.1.3.0-FHhzd5k5VLu5phG4JhXQzZ" True) (C1 (MetaCons "VkBool32" PrefixI False) (S1 (MetaSel (Nothing Symbol) NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 Word32)))

newtype VkDeviceSize Source #

Constructors

VkDeviceSize Word64 

Instances

Bounded VkDeviceSize Source # 
Enum VkDeviceSize Source # 
Eq VkDeviceSize Source # 
Integral VkDeviceSize Source # 
Data VkDeviceSize Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> VkDeviceSize -> c VkDeviceSize #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c VkDeviceSize #

toConstr :: VkDeviceSize -> Constr #

dataTypeOf :: VkDeviceSize -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c VkDeviceSize) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c VkDeviceSize) #

gmapT :: (forall b. Data b => b -> b) -> VkDeviceSize -> VkDeviceSize #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> VkDeviceSize -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> VkDeviceSize -> r #

gmapQ :: (forall d. Data d => d -> u) -> VkDeviceSize -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> VkDeviceSize -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> VkDeviceSize -> m VkDeviceSize #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> VkDeviceSize -> m VkDeviceSize #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> VkDeviceSize -> m VkDeviceSize #

Num VkDeviceSize Source # 
Ord VkDeviceSize Source # 
Read VkDeviceSize Source # 
Real VkDeviceSize Source # 
Show VkDeviceSize Source # 
Generic VkDeviceSize Source # 

Associated Types

type Rep VkDeviceSize :: * -> * #

Storable VkDeviceSize Source # 
Bits VkDeviceSize Source # 
FiniteBits VkDeviceSize Source # 
type Rep VkDeviceSize Source # 
type Rep VkDeviceSize = D1 (MetaData "VkDeviceSize" "Graphics.Vulkan.Types.BaseTypes" "vulkan-api-1.1.3.0-FHhzd5k5VLu5phG4JhXQzZ" True) (C1 (MetaCons "VkDeviceSize" PrefixI False) (S1 (MetaSel (Nothing Symbol) NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 Word64)))

newtype VkFlags Source #

Constructors

VkFlags Word32 

Instances

Bounded VkFlags Source # 
Enum VkFlags Source # 
Eq VkFlags Source # 

Methods

(==) :: VkFlags -> VkFlags -> Bool #

(/=) :: VkFlags -> VkFlags -> Bool #

Integral VkFlags Source # 
Data VkFlags Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> VkFlags -> c VkFlags #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c VkFlags #

toConstr :: VkFlags -> Constr #

dataTypeOf :: VkFlags -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c VkFlags) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c VkFlags) #

gmapT :: (forall b. Data b => b -> b) -> VkFlags -> VkFlags #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> VkFlags -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> VkFlags -> r #

gmapQ :: (forall d. Data d => d -> u) -> VkFlags -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> VkFlags -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> VkFlags -> m VkFlags #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> VkFlags -> m VkFlags #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> VkFlags -> m VkFlags #

Num VkFlags Source # 
Ord VkFlags Source # 
Read VkFlags Source # 
Real VkFlags Source # 
Show VkFlags Source # 
Generic VkFlags Source # 

Associated Types

type Rep VkFlags :: * -> * #

Methods

from :: VkFlags -> Rep VkFlags x #

to :: Rep VkFlags x -> VkFlags #

Storable VkFlags Source # 
Bits VkFlags Source # 
FiniteBits VkFlags Source # 
type Rep VkFlags Source # 
type Rep VkFlags = D1 (MetaData "VkFlags" "Graphics.Vulkan.Types.BaseTypes" "vulkan-api-1.1.3.0-FHhzd5k5VLu5phG4JhXQzZ" True) (C1 (MetaCons "VkFlags" PrefixI False) (S1 (MetaSel (Nothing Symbol) NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 Word32)))

newtype VkSampleMask Source #

Constructors

VkSampleMask Word32 

Instances

Bounded VkSampleMask Source # 
Enum VkSampleMask Source # 
Eq VkSampleMask Source # 
Integral VkSampleMask Source # 
Data VkSampleMask Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> VkSampleMask -> c VkSampleMask #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c VkSampleMask #

toConstr :: VkSampleMask -> Constr #

dataTypeOf :: VkSampleMask -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c VkSampleMask) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c VkSampleMask) #

gmapT :: (forall b. Data b => b -> b) -> VkSampleMask -> VkSampleMask #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> VkSampleMask -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> VkSampleMask -> r #

gmapQ :: (forall d. Data d => d -> u) -> VkSampleMask -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> VkSampleMask -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> VkSampleMask -> m VkSampleMask #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> VkSampleMask -> m VkSampleMask #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> VkSampleMask -> m VkSampleMask #

Num VkSampleMask Source # 
Ord VkSampleMask Source # 
Read VkSampleMask Source # 
Real VkSampleMask Source # 
Show VkSampleMask Source # 
Generic VkSampleMask Source # 

Associated Types

type Rep VkSampleMask :: * -> * #

Storable VkSampleMask Source # 
Bits VkSampleMask Source # 
FiniteBits VkSampleMask Source # 
type Rep VkSampleMask Source # 
type Rep VkSampleMask = D1 (MetaData "VkSampleMask" "Graphics.Vulkan.Types.BaseTypes" "vulkan-api-1.1.3.0-FHhzd5k5VLu5phG4JhXQzZ" True) (C1 (MetaCons "VkSampleMask" PrefixI False) (S1 (MetaSel (Nothing Symbol) NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 Word32)))

newtype VkColorComponentBitmask a Source #

Instances

Bounded (VkColorComponentBitmask FlagMask) Source # 
Enum (VkColorComponentBitmask FlagMask) Source # 
Eq (VkColorComponentBitmask a) Source # 
Integral (VkColorComponentBitmask FlagMask) Source # 
Typeable FlagType a => Data (VkColorComponentBitmask a) Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> VkColorComponentBitmask a -> c (VkColorComponentBitmask a) #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c (VkColorComponentBitmask a) #

toConstr :: VkColorComponentBitmask a -> Constr #

dataTypeOf :: VkColorComponentBitmask a -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c (VkColorComponentBitmask a)) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c (VkColorComponentBitmask a)) #

gmapT :: (forall b. Data b => b -> b) -> VkColorComponentBitmask a -> VkColorComponentBitmask a #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> VkColorComponentBitmask a -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> VkColorComponentBitmask a -> r #

gmapQ :: (forall d. Data d => d -> u) -> VkColorComponentBitmask a -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> VkColorComponentBitmask a -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> VkColorComponentBitmask a -> m (VkColorComponentBitmask a) #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> VkColorComponentBitmask a -> m (VkColorComponentBitmask a) #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> VkColorComponentBitmask a -> m (VkColorComponentBitmask a) #

Num (VkColorComponentBitmask FlagMask) Source # 
Ord (VkColorComponentBitmask a) Source # 
Read (VkColorComponentBitmask a) Source # 
Real (VkColorComponentBitmask FlagMask) Source # 
Show (VkColorComponentBitmask a) Source # 
Generic (VkColorComponentBitmask a) Source # 
Storable (VkColorComponentBitmask a) Source # 
Bits (VkColorComponentBitmask FlagMask) Source # 

Methods

(.&.) :: VkColorComponentBitmask FlagMask -> VkColorComponentBitmask FlagMask -> VkColorComponentBitmask FlagMask #

(.|.) :: VkColorComponentBitmask FlagMask -> VkColorComponentBitmask FlagMask -> VkColorComponentBitmask FlagMask #

xor :: VkColorComponentBitmask FlagMask -> VkColorComponentBitmask FlagMask -> VkColorComponentBitmask FlagMask #

complement :: VkColorComponentBitmask FlagMask -> VkColorComponentBitmask FlagMask #

shift :: VkColorComponentBitmask FlagMask -> Int -> VkColorComponentBitmask FlagMask #

rotate :: VkColorComponentBitmask FlagMask -> Int -> VkColorComponentBitmask FlagMask #

zeroBits :: VkColorComponentBitmask FlagMask #

bit :: Int -> VkColorComponentBitmask FlagMask #

setBit :: VkColorComponentBitmask FlagMask -> Int -> VkColorComponentBitmask FlagMask #

clearBit :: VkColorComponentBitmask FlagMask -> Int -> VkColorComponentBitmask FlagMask #

complementBit :: VkColorComponentBitmask FlagMask -> Int -> VkColorComponentBitmask FlagMask #

testBit :: VkColorComponentBitmask FlagMask -> Int -> Bool #

bitSizeMaybe :: VkColorComponentBitmask FlagMask -> Maybe Int #

bitSize :: VkColorComponentBitmask FlagMask -> Int #

isSigned :: VkColorComponentBitmask FlagMask -> Bool #

shiftL :: VkColorComponentBitmask FlagMask -> Int -> VkColorComponentBitmask FlagMask #

unsafeShiftL :: VkColorComponentBitmask FlagMask -> Int -> VkColorComponentBitmask FlagMask #

shiftR :: VkColorComponentBitmask FlagMask -> Int -> VkColorComponentBitmask FlagMask #

unsafeShiftR :: VkColorComponentBitmask FlagMask -> Int -> VkColorComponentBitmask FlagMask #

rotateL :: VkColorComponentBitmask FlagMask -> Int -> VkColorComponentBitmask FlagMask #

rotateR :: VkColorComponentBitmask FlagMask -> Int -> VkColorComponentBitmask FlagMask #

popCount :: VkColorComponentBitmask FlagMask -> Int #

FiniteBits (VkColorComponentBitmask FlagMask) Source # 
type Rep (VkColorComponentBitmask a) Source # 
type Rep (VkColorComponentBitmask a) = D1 (MetaData "VkColorComponentBitmask" "Graphics.Vulkan.Types.Enum.Color" "vulkan-api-1.1.3.0-FHhzd5k5VLu5phG4JhXQzZ" True) (C1 (MetaCons "VkColorComponentBitmask" PrefixI False) (S1 (MetaSel (Nothing Symbol) NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 VkFlags)))

pattern VK_COLOR_COMPONENT_R_BIT :: forall a. VkColorComponentBitmask a Source #

bitpos = 0

pattern VK_COLOR_COMPONENT_G_BIT :: forall a. VkColorComponentBitmask a Source #

bitpos = 1

pattern VK_COLOR_COMPONENT_B_BIT :: forall a. VkColorComponentBitmask a Source #

bitpos = 2

pattern VK_COLOR_COMPONENT_A_BIT :: forall a. VkColorComponentBitmask a Source #

bitpos = 3

newtype VkColorSpaceKHR Source #

Constructors

VkColorSpaceKHR Int32 

Instances

Bounded VkColorSpaceKHR Source # 
Enum VkColorSpaceKHR Source # 
Eq VkColorSpaceKHR Source # 
Data VkColorSpaceKHR Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> VkColorSpaceKHR -> c VkColorSpaceKHR #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c VkColorSpaceKHR #

toConstr :: VkColorSpaceKHR -> Constr #

dataTypeOf :: VkColorSpaceKHR -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c VkColorSpaceKHR) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c VkColorSpaceKHR) #

gmapT :: (forall b. Data b => b -> b) -> VkColorSpaceKHR -> VkColorSpaceKHR #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> VkColorSpaceKHR -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> VkColorSpaceKHR -> r #

gmapQ :: (forall d. Data d => d -> u) -> VkColorSpaceKHR -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> VkColorSpaceKHR -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> VkColorSpaceKHR -> m VkColorSpaceKHR #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> VkColorSpaceKHR -> m VkColorSpaceKHR #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> VkColorSpaceKHR -> m VkColorSpaceKHR #

Num VkColorSpaceKHR Source # 
Ord VkColorSpaceKHR Source # 
Read VkColorSpaceKHR Source # 
Show VkColorSpaceKHR Source # 
Generic VkColorSpaceKHR Source # 
Storable VkColorSpaceKHR Source # 
type Rep VkColorSpaceKHR Source # 
type Rep VkColorSpaceKHR = D1 (MetaData "VkColorSpaceKHR" "Graphics.Vulkan.Types.Enum.Color" "vulkan-api-1.1.3.0-FHhzd5k5VLu5phG4JhXQzZ" True) (C1 (MetaCons "VkColorSpaceKHR" PrefixI False) (S1 (MetaSel (Nothing Symbol) NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 Int32)))

newtype VkCompositeAlphaBitmaskKHR a Source #

Instances

Bounded (VkCompositeAlphaBitmaskKHR FlagMask) Source # 
Enum (VkCompositeAlphaBitmaskKHR FlagMask) Source # 
Eq (VkCompositeAlphaBitmaskKHR a) Source # 
Integral (VkCompositeAlphaBitmaskKHR FlagMask) Source # 
Typeable FlagType a => Data (VkCompositeAlphaBitmaskKHR a) Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> VkCompositeAlphaBitmaskKHR a -> c (VkCompositeAlphaBitmaskKHR a) #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c (VkCompositeAlphaBitmaskKHR a) #

toConstr :: VkCompositeAlphaBitmaskKHR a -> Constr #

dataTypeOf :: VkCompositeAlphaBitmaskKHR a -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c (VkCompositeAlphaBitmaskKHR a)) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c (VkCompositeAlphaBitmaskKHR a)) #

gmapT :: (forall b. Data b => b -> b) -> VkCompositeAlphaBitmaskKHR a -> VkCompositeAlphaBitmaskKHR a #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> VkCompositeAlphaBitmaskKHR a -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> VkCompositeAlphaBitmaskKHR a -> r #

gmapQ :: (forall d. Data d => d -> u) -> VkCompositeAlphaBitmaskKHR a -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> VkCompositeAlphaBitmaskKHR a -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> VkCompositeAlphaBitmaskKHR a -> m (VkCompositeAlphaBitmaskKHR a) #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> VkCompositeAlphaBitmaskKHR a -> m (VkCompositeAlphaBitmaskKHR a) #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> VkCompositeAlphaBitmaskKHR a -> m (VkCompositeAlphaBitmaskKHR a) #

Num (VkCompositeAlphaBitmaskKHR FlagMask) Source # 
Ord (VkCompositeAlphaBitmaskKHR a) Source # 
Read (VkCompositeAlphaBitmaskKHR a) Source # 
Real (VkCompositeAlphaBitmaskKHR FlagMask) Source # 
Show (VkCompositeAlphaBitmaskKHR a) Source # 
Generic (VkCompositeAlphaBitmaskKHR a) Source # 
Storable (VkCompositeAlphaBitmaskKHR a) Source # 
Bits (VkCompositeAlphaBitmaskKHR FlagMask) Source # 

Methods

(.&.) :: VkCompositeAlphaBitmaskKHR FlagMask -> VkCompositeAlphaBitmaskKHR FlagMask -> VkCompositeAlphaBitmaskKHR FlagMask #

(.|.) :: VkCompositeAlphaBitmaskKHR FlagMask -> VkCompositeAlphaBitmaskKHR FlagMask -> VkCompositeAlphaBitmaskKHR FlagMask #

xor :: VkCompositeAlphaBitmaskKHR FlagMask -> VkCompositeAlphaBitmaskKHR FlagMask -> VkCompositeAlphaBitmaskKHR FlagMask #

complement :: VkCompositeAlphaBitmaskKHR FlagMask -> VkCompositeAlphaBitmaskKHR FlagMask #

shift :: VkCompositeAlphaBitmaskKHR FlagMask -> Int -> VkCompositeAlphaBitmaskKHR FlagMask #

rotate :: VkCompositeAlphaBitmaskKHR FlagMask -> Int -> VkCompositeAlphaBitmaskKHR FlagMask #

zeroBits :: VkCompositeAlphaBitmaskKHR FlagMask #

bit :: Int -> VkCompositeAlphaBitmaskKHR FlagMask #

setBit :: VkCompositeAlphaBitmaskKHR FlagMask -> Int -> VkCompositeAlphaBitmaskKHR FlagMask #

clearBit :: VkCompositeAlphaBitmaskKHR FlagMask -> Int -> VkCompositeAlphaBitmaskKHR FlagMask #

complementBit :: VkCompositeAlphaBitmaskKHR FlagMask -> Int -> VkCompositeAlphaBitmaskKHR FlagMask #

testBit :: VkCompositeAlphaBitmaskKHR FlagMask -> Int -> Bool #

bitSizeMaybe :: VkCompositeAlphaBitmaskKHR FlagMask -> Maybe Int #

bitSize :: VkCompositeAlphaBitmaskKHR FlagMask -> Int #

isSigned :: VkCompositeAlphaBitmaskKHR FlagMask -> Bool #

shiftL :: VkCompositeAlphaBitmaskKHR FlagMask -> Int -> VkCompositeAlphaBitmaskKHR FlagMask #

unsafeShiftL :: VkCompositeAlphaBitmaskKHR FlagMask -> Int -> VkCompositeAlphaBitmaskKHR FlagMask #

shiftR :: VkCompositeAlphaBitmaskKHR FlagMask -> Int -> VkCompositeAlphaBitmaskKHR FlagMask #

unsafeShiftR :: VkCompositeAlphaBitmaskKHR FlagMask -> Int -> VkCompositeAlphaBitmaskKHR FlagMask #

rotateL :: VkCompositeAlphaBitmaskKHR FlagMask -> Int -> VkCompositeAlphaBitmaskKHR FlagMask #

rotateR :: VkCompositeAlphaBitmaskKHR FlagMask -> Int -> VkCompositeAlphaBitmaskKHR FlagMask #

popCount :: VkCompositeAlphaBitmaskKHR FlagMask -> Int #

FiniteBits (VkCompositeAlphaBitmaskKHR FlagMask) Source # 
type Rep (VkCompositeAlphaBitmaskKHR a) Source # 
type Rep (VkCompositeAlphaBitmaskKHR a) = D1 (MetaData "VkCompositeAlphaBitmaskKHR" "Graphics.Vulkan.Types.Enum.CompositeAlphaFlagsKHR" "vulkan-api-1.1.3.0-FHhzd5k5VLu5phG4JhXQzZ" True) (C1 (MetaCons "VkCompositeAlphaBitmaskKHR" PrefixI False) (S1 (MetaSel (Nothing Symbol) NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 VkFlags)))

newtype VkFormat Source #

Vulkan format definitions

type = enum

VkFormat registry at www.khronos.org

Constructors

VkFormat Int32 

Instances

Bounded VkFormat Source # 
Enum VkFormat Source # 
Eq VkFormat Source # 
Data VkFormat Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> VkFormat -> c VkFormat #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c VkFormat #

toConstr :: VkFormat -> Constr #

dataTypeOf :: VkFormat -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c VkFormat) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c VkFormat) #

gmapT :: (forall b. Data b => b -> b) -> VkFormat -> VkFormat #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> VkFormat -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> VkFormat -> r #

gmapQ :: (forall d. Data d => d -> u) -> VkFormat -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> VkFormat -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> VkFormat -> m VkFormat #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> VkFormat -> m VkFormat #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> VkFormat -> m VkFormat #

Num VkFormat Source # 
Ord VkFormat Source # 
Read VkFormat Source # 
Show VkFormat Source # 
Generic VkFormat Source # 

Associated Types

type Rep VkFormat :: * -> * #

Methods

from :: VkFormat -> Rep VkFormat x #

to :: Rep VkFormat x -> VkFormat #

Storable VkFormat Source # 
type Rep VkFormat Source # 
type Rep VkFormat = D1 (MetaData "VkFormat" "Graphics.Vulkan.Types.Enum.Format" "vulkan-api-1.1.3.0-FHhzd5k5VLu5phG4JhXQzZ" True) (C1 (MetaCons "VkFormat" PrefixI False) (S1 (MetaSel (Nothing Symbol) NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 Int32)))

newtype VkFormatFeatureBitmask a Source #

Instances

Bounded (VkFormatFeatureBitmask FlagMask) Source # 
Enum (VkFormatFeatureBitmask FlagMask) Source # 
Eq (VkFormatFeatureBitmask a) Source # 
Integral (VkFormatFeatureBitmask FlagMask) Source # 
Typeable FlagType a => Data (VkFormatFeatureBitmask a) Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> VkFormatFeatureBitmask a -> c (VkFormatFeatureBitmask a) #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c (VkFormatFeatureBitmask a) #

toConstr :: VkFormatFeatureBitmask a -> Constr #

dataTypeOf :: VkFormatFeatureBitmask a -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c (VkFormatFeatureBitmask a)) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c (VkFormatFeatureBitmask a)) #

gmapT :: (forall b. Data b => b -> b) -> VkFormatFeatureBitmask a -> VkFormatFeatureBitmask a #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> VkFormatFeatureBitmask a -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> VkFormatFeatureBitmask a -> r #

gmapQ :: (forall d. Data d => d -> u) -> VkFormatFeatureBitmask a -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> VkFormatFeatureBitmask a -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> VkFormatFeatureBitmask a -> m (VkFormatFeatureBitmask a) #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> VkFormatFeatureBitmask a -> m (VkFormatFeatureBitmask a) #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> VkFormatFeatureBitmask a -> m (VkFormatFeatureBitmask a) #

Num (VkFormatFeatureBitmask FlagMask) Source # 
Ord (VkFormatFeatureBitmask a) Source # 
Read (VkFormatFeatureBitmask a) Source # 
Real (VkFormatFeatureBitmask FlagMask) Source # 
Show (VkFormatFeatureBitmask a) Source # 
Generic (VkFormatFeatureBitmask a) Source # 
Storable (VkFormatFeatureBitmask a) Source # 
Bits (VkFormatFeatureBitmask FlagMask) Source # 

Methods

(.&.) :: VkFormatFeatureBitmask FlagMask -> VkFormatFeatureBitmask FlagMask -> VkFormatFeatureBitmask FlagMask #

(.|.) :: VkFormatFeatureBitmask FlagMask -> VkFormatFeatureBitmask FlagMask -> VkFormatFeatureBitmask FlagMask #

xor :: VkFormatFeatureBitmask FlagMask -> VkFormatFeatureBitmask FlagMask -> VkFormatFeatureBitmask FlagMask #

complement :: VkFormatFeatureBitmask FlagMask -> VkFormatFeatureBitmask FlagMask #

shift :: VkFormatFeatureBitmask FlagMask -> Int -> VkFormatFeatureBitmask FlagMask #

rotate :: VkFormatFeatureBitmask FlagMask -> Int -> VkFormatFeatureBitmask FlagMask #

zeroBits :: VkFormatFeatureBitmask FlagMask #

bit :: Int -> VkFormatFeatureBitmask FlagMask #

setBit :: VkFormatFeatureBitmask FlagMask -> Int -> VkFormatFeatureBitmask FlagMask #

clearBit :: VkFormatFeatureBitmask FlagMask -> Int -> VkFormatFeatureBitmask FlagMask #

complementBit :: VkFormatFeatureBitmask FlagMask -> Int -> VkFormatFeatureBitmask FlagMask #

testBit :: VkFormatFeatureBitmask FlagMask -> Int -> Bool #

bitSizeMaybe :: VkFormatFeatureBitmask FlagMask -> Maybe Int #

bitSize :: VkFormatFeatureBitmask FlagMask -> Int #

isSigned :: VkFormatFeatureBitmask FlagMask -> Bool #

shiftL :: VkFormatFeatureBitmask FlagMask -> Int -> VkFormatFeatureBitmask FlagMask #

unsafeShiftL :: VkFormatFeatureBitmask FlagMask -> Int -> VkFormatFeatureBitmask FlagMask #

shiftR :: VkFormatFeatureBitmask FlagMask -> Int -> VkFormatFeatureBitmask FlagMask #

unsafeShiftR :: VkFormatFeatureBitmask FlagMask -> Int -> VkFormatFeatureBitmask FlagMask #

rotateL :: VkFormatFeatureBitmask FlagMask -> Int -> VkFormatFeatureBitmask FlagMask #

rotateR :: VkFormatFeatureBitmask FlagMask -> Int -> VkFormatFeatureBitmask FlagMask #

popCount :: VkFormatFeatureBitmask FlagMask -> Int #

FiniteBits (VkFormatFeatureBitmask FlagMask) Source # 
type Rep (VkFormatFeatureBitmask a) Source # 
type Rep (VkFormatFeatureBitmask a) = D1 (MetaData "VkFormatFeatureBitmask" "Graphics.Vulkan.Types.Enum.Format" "vulkan-api-1.1.3.0-FHhzd5k5VLu5phG4JhXQzZ" True) (C1 (MetaCons "VkFormatFeatureBitmask" PrefixI False) (S1 (MetaSel (Nothing Symbol) NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 VkFlags)))

pattern VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT :: forall a. VkFormatFeatureBitmask a Source #

Format can be used for sampled images (SAMPLED_IMAGE and COMBINED_IMAGE_SAMPLER descriptor types)

bitpos = 0

pattern VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT :: forall a. VkFormatFeatureBitmask a Source #

Format can be used for storage images (STORAGE_IMAGE descriptor type)

bitpos = 1

pattern VK_FORMAT_FEATURE_STORAGE_IMAGE_ATOMIC_BIT :: forall a. VkFormatFeatureBitmask a Source #

Format supports atomic operations in case it is used for storage images

bitpos = 2

pattern VK_FORMAT_FEATURE_UNIFORM_TEXEL_BUFFER_BIT :: forall a. VkFormatFeatureBitmask a Source #

Format can be used for uniform texel buffers (TBOs)

bitpos = 3

pattern VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_BIT :: forall a. VkFormatFeatureBitmask a Source #

Format can be used for storage texel buffers (IBOs)

bitpos = 4

pattern VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_ATOMIC_BIT :: forall a. VkFormatFeatureBitmask a Source #

Format supports atomic operations in case it is used for storage texel buffers

bitpos = 5

pattern VK_FORMAT_FEATURE_VERTEX_BUFFER_BIT :: forall a. VkFormatFeatureBitmask a Source #

Format can be used for vertex buffers (VBOs)

bitpos = 6

pattern VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT :: forall a. VkFormatFeatureBitmask a Source #

Format can be used for color attachment images

bitpos = 7

pattern VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT :: forall a. VkFormatFeatureBitmask a Source #

Format supports blending in case it is used for color attachment images

bitpos = 8

pattern VK_FORMAT_FEATURE_DEPTH_STENCIL_ATTACHMENT_BIT :: forall a. VkFormatFeatureBitmask a Source #

Format can be used for depth/stencil attachment images

bitpos = 9

pattern VK_FORMAT_FEATURE_BLIT_SRC_BIT :: forall a. VkFormatFeatureBitmask a Source #

Format can be used as the source image of blits with vkCmdBlitImage

bitpos = 10

pattern VK_FORMAT_FEATURE_BLIT_DST_BIT :: forall a. VkFormatFeatureBitmask a Source #

Format can be used as the destination image of blits with vkCmdBlitImage

bitpos = 11

pattern VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT :: forall a. VkFormatFeatureBitmask a Source #

Format can be filtered with VK_FILTER_LINEAR when being sampled

bitpos = 12

newtype VkImageAspectBitmask a Source #

Instances

Bounded (VkImageAspectBitmask FlagMask) Source # 
Enum (VkImageAspectBitmask FlagMask) Source # 
Eq (VkImageAspectBitmask a) Source # 
Integral (VkImageAspectBitmask FlagMask) Source # 
Typeable FlagType a => Data (VkImageAspectBitmask a) Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> VkImageAspectBitmask a -> c (VkImageAspectBitmask a) #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c (VkImageAspectBitmask a) #

toConstr :: VkImageAspectBitmask a -> Constr #

dataTypeOf :: VkImageAspectBitmask a -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c (VkImageAspectBitmask a)) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c (VkImageAspectBitmask a)) #

gmapT :: (forall b. Data b => b -> b) -> VkImageAspectBitmask a -> VkImageAspectBitmask a #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> VkImageAspectBitmask a -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> VkImageAspectBitmask a -> r #

gmapQ :: (forall d. Data d => d -> u) -> VkImageAspectBitmask a -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> VkImageAspectBitmask a -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> VkImageAspectBitmask a -> m (VkImageAspectBitmask a) #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> VkImageAspectBitmask a -> m (VkImageAspectBitmask a) #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> VkImageAspectBitmask a -> m (VkImageAspectBitmask a) #

Num (VkImageAspectBitmask FlagMask) Source # 
Ord (VkImageAspectBitmask a) Source # 
Read (VkImageAspectBitmask a) Source # 
Real (VkImageAspectBitmask FlagMask) Source # 
Show (VkImageAspectBitmask a) Source # 
Generic (VkImageAspectBitmask a) Source # 
Storable (VkImageAspectBitmask a) Source # 
Bits (VkImageAspectBitmask FlagMask) Source # 

Methods

(.&.) :: VkImageAspectBitmask FlagMask -> VkImageAspectBitmask FlagMask -> VkImageAspectBitmask FlagMask #

(.|.) :: VkImageAspectBitmask FlagMask -> VkImageAspectBitmask FlagMask -> VkImageAspectBitmask FlagMask #

xor :: VkImageAspectBitmask FlagMask -> VkImageAspectBitmask FlagMask -> VkImageAspectBitmask FlagMask #

complement :: VkImageAspectBitmask FlagMask -> VkImageAspectBitmask FlagMask #

shift :: VkImageAspectBitmask FlagMask -> Int -> VkImageAspectBitmask FlagMask #

rotate :: VkImageAspectBitmask FlagMask -> Int -> VkImageAspectBitmask FlagMask #

zeroBits :: VkImageAspectBitmask FlagMask #

bit :: Int -> VkImageAspectBitmask FlagMask #

setBit :: VkImageAspectBitmask FlagMask -> Int -> VkImageAspectBitmask FlagMask #

clearBit :: VkImageAspectBitmask FlagMask -> Int -> VkImageAspectBitmask FlagMask #

complementBit :: VkImageAspectBitmask FlagMask -> Int -> VkImageAspectBitmask FlagMask #

testBit :: VkImageAspectBitmask FlagMask -> Int -> Bool #

bitSizeMaybe :: VkImageAspectBitmask FlagMask -> Maybe Int #

bitSize :: VkImageAspectBitmask FlagMask -> Int #

isSigned :: VkImageAspectBitmask FlagMask -> Bool #

shiftL :: VkImageAspectBitmask FlagMask -> Int -> VkImageAspectBitmask FlagMask #

unsafeShiftL :: VkImageAspectBitmask FlagMask -> Int -> VkImageAspectBitmask FlagMask #

shiftR :: VkImageAspectBitmask FlagMask -> Int -> VkImageAspectBitmask FlagMask #

unsafeShiftR :: VkImageAspectBitmask FlagMask -> Int -> VkImageAspectBitmask FlagMask #

rotateL :: VkImageAspectBitmask FlagMask -> Int -> VkImageAspectBitmask FlagMask #

rotateR :: VkImageAspectBitmask FlagMask -> Int -> VkImageAspectBitmask FlagMask #

popCount :: VkImageAspectBitmask FlagMask -> Int #

FiniteBits (VkImageAspectBitmask FlagMask) Source # 
type Rep (VkImageAspectBitmask a) Source # 
type Rep (VkImageAspectBitmask a) = D1 (MetaData "VkImageAspectBitmask" "Graphics.Vulkan.Types.Enum.Image" "vulkan-api-1.1.3.0-FHhzd5k5VLu5phG4JhXQzZ" True) (C1 (MetaCons "VkImageAspectBitmask" PrefixI False) (S1 (MetaSel (Nothing Symbol) NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 VkFlags)))

pattern VK_IMAGE_ASPECT_COLOR_BIT :: forall a. VkImageAspectBitmask a Source #

bitpos = 0

pattern VK_IMAGE_ASPECT_DEPTH_BIT :: forall a. VkImageAspectBitmask a Source #

bitpos = 1

pattern VK_IMAGE_ASPECT_STENCIL_BIT :: forall a. VkImageAspectBitmask a Source #

bitpos = 2

newtype VkImageCreateBitmask a Source #

Instances

Bounded (VkImageCreateBitmask FlagMask) Source # 
Enum (VkImageCreateBitmask FlagMask) Source # 
Eq (VkImageCreateBitmask a) Source # 
Integral (VkImageCreateBitmask FlagMask) Source # 
Typeable FlagType a => Data (VkImageCreateBitmask a) Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> VkImageCreateBitmask a -> c (VkImageCreateBitmask a) #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c (VkImageCreateBitmask a) #

toConstr :: VkImageCreateBitmask a -> Constr #

dataTypeOf :: VkImageCreateBitmask a -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c (VkImageCreateBitmask a)) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c (VkImageCreateBitmask a)) #

gmapT :: (forall b. Data b => b -> b) -> VkImageCreateBitmask a -> VkImageCreateBitmask a #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> VkImageCreateBitmask a -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> VkImageCreateBitmask a -> r #

gmapQ :: (forall d. Data d => d -> u) -> VkImageCreateBitmask a -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> VkImageCreateBitmask a -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> VkImageCreateBitmask a -> m (VkImageCreateBitmask a) #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> VkImageCreateBitmask a -> m (VkImageCreateBitmask a) #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> VkImageCreateBitmask a -> m (VkImageCreateBitmask a) #

Num (VkImageCreateBitmask FlagMask) Source # 
Ord (VkImageCreateBitmask a) Source # 
Read (VkImageCreateBitmask a) Source # 
Real (VkImageCreateBitmask FlagMask) Source # 
Show (VkImageCreateBitmask a) Source # 
Generic (VkImageCreateBitmask a) Source # 
Storable (VkImageCreateBitmask a) Source # 
Bits (VkImageCreateBitmask FlagMask) Source # 

Methods

(.&.) :: VkImageCreateBitmask FlagMask -> VkImageCreateBitmask FlagMask -> VkImageCreateBitmask FlagMask #

(.|.) :: VkImageCreateBitmask FlagMask -> VkImageCreateBitmask FlagMask -> VkImageCreateBitmask FlagMask #

xor :: VkImageCreateBitmask FlagMask -> VkImageCreateBitmask FlagMask -> VkImageCreateBitmask FlagMask #

complement :: VkImageCreateBitmask FlagMask -> VkImageCreateBitmask FlagMask #

shift :: VkImageCreateBitmask FlagMask -> Int -> VkImageCreateBitmask FlagMask #

rotate :: VkImageCreateBitmask FlagMask -> Int -> VkImageCreateBitmask FlagMask #

zeroBits :: VkImageCreateBitmask FlagMask #

bit :: Int -> VkImageCreateBitmask FlagMask #

setBit :: VkImageCreateBitmask FlagMask -> Int -> VkImageCreateBitmask FlagMask #

clearBit :: VkImageCreateBitmask FlagMask -> Int -> VkImageCreateBitmask FlagMask #

complementBit :: VkImageCreateBitmask FlagMask -> Int -> VkImageCreateBitmask FlagMask #

testBit :: VkImageCreateBitmask FlagMask -> Int -> Bool #

bitSizeMaybe :: VkImageCreateBitmask FlagMask -> Maybe Int #

bitSize :: VkImageCreateBitmask FlagMask -> Int #

isSigned :: VkImageCreateBitmask FlagMask -> Bool #

shiftL :: VkImageCreateBitmask FlagMask -> Int -> VkImageCreateBitmask FlagMask #

unsafeShiftL :: VkImageCreateBitmask FlagMask -> Int -> VkImageCreateBitmask FlagMask #

shiftR :: VkImageCreateBitmask FlagMask -> Int -> VkImageCreateBitmask FlagMask #

unsafeShiftR :: VkImageCreateBitmask FlagMask -> Int -> VkImageCreateBitmask FlagMask #

rotateL :: VkImageCreateBitmask FlagMask -> Int -> VkImageCreateBitmask FlagMask #

rotateR :: VkImageCreateBitmask FlagMask -> Int -> VkImageCreateBitmask FlagMask #

popCount :: VkImageCreateBitmask FlagMask -> Int #

FiniteBits (VkImageCreateBitmask FlagMask) Source # 
type Rep (VkImageCreateBitmask a) Source # 
type Rep (VkImageCreateBitmask a) = D1 (MetaData "VkImageCreateBitmask" "Graphics.Vulkan.Types.Enum.Image" "vulkan-api-1.1.3.0-FHhzd5k5VLu5phG4JhXQzZ" True) (C1 (MetaCons "VkImageCreateBitmask" PrefixI False) (S1 (MetaSel (Nothing Symbol) NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 VkFlags)))

pattern VK_IMAGE_CREATE_SPARSE_BINDING_BIT :: forall a. VkImageCreateBitmask a Source #

Image should support sparse backing

bitpos = 0

pattern VK_IMAGE_CREATE_SPARSE_RESIDENCY_BIT :: forall a. VkImageCreateBitmask a Source #

Image should support sparse backing with partial residency

bitpos = 1

pattern VK_IMAGE_CREATE_SPARSE_ALIASED_BIT :: forall a. VkImageCreateBitmask a Source #

Image should support constent data access to physical memory ranges mapped into multiple locations of sparse images

bitpos = 2

pattern VK_IMAGE_CREATE_MUTABLE_FORMAT_BIT :: forall a. VkImageCreateBitmask a Source #

Allows image views to have different format than the base image

bitpos = 3

pattern VK_IMAGE_CREATE_CUBE_COMPATIBLE_BIT :: forall a. VkImageCreateBitmask a Source #

Allows creating image views with cube type from the created image

bitpos = 4

newtype VkImageLayout Source #

Constructors

VkImageLayout Int32 

Instances

Bounded VkImageLayout Source # 
Enum VkImageLayout Source # 
Eq VkImageLayout Source # 
Data VkImageLayout Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> VkImageLayout -> c VkImageLayout #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c VkImageLayout #

toConstr :: VkImageLayout -> Constr #

dataTypeOf :: VkImageLayout -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c VkImageLayout) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c VkImageLayout) #

gmapT :: (forall b. Data b => b -> b) -> VkImageLayout -> VkImageLayout #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> VkImageLayout -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> VkImageLayout -> r #

gmapQ :: (forall d. Data d => d -> u) -> VkImageLayout -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> VkImageLayout -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> VkImageLayout -> m VkImageLayout #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> VkImageLayout -> m VkImageLayout #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> VkImageLayout -> m VkImageLayout #

Num VkImageLayout Source # 
Ord VkImageLayout Source # 
Read VkImageLayout Source # 
Show VkImageLayout Source # 
Generic VkImageLayout Source # 

Associated Types

type Rep VkImageLayout :: * -> * #

Storable VkImageLayout Source # 
type Rep VkImageLayout Source # 
type Rep VkImageLayout = D1 (MetaData "VkImageLayout" "Graphics.Vulkan.Types.Enum.Image" "vulkan-api-1.1.3.0-FHhzd5k5VLu5phG4JhXQzZ" True) (C1 (MetaCons "VkImageLayout" PrefixI False) (S1 (MetaSel (Nothing Symbol) NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 Int32)))

pattern VK_IMAGE_LAYOUT_UNDEFINED :: VkImageLayout Source #

Implicit layout an image is when its contents are undefined due to various reasons (e.g. right after creation)

pattern VK_IMAGE_LAYOUT_GENERAL :: VkImageLayout Source #

General layout when image can be used for any kind of access

pattern VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL :: VkImageLayout Source #

Optimal layout when image is only used for color attachment read/write

pattern VK_IMAGE_LAYOUT_DEPTH_STENCIL_ATTACHMENT_OPTIMAL :: VkImageLayout Source #

Optimal layout when image is only used for depthstencil attachment readwrite

pattern VK_IMAGE_LAYOUT_DEPTH_STENCIL_READ_ONLY_OPTIMAL :: VkImageLayout Source #

Optimal layout when image is used for read only depth/stencil attachment and shader access

pattern VK_IMAGE_LAYOUT_SHADER_READ_ONLY_OPTIMAL :: VkImageLayout Source #

Optimal layout when image is used for read only shader access

pattern VK_IMAGE_LAYOUT_TRANSFER_SRC_OPTIMAL :: VkImageLayout Source #

Optimal layout when image is used only as source of transfer operations

pattern VK_IMAGE_LAYOUT_TRANSFER_DST_OPTIMAL :: VkImageLayout Source #

Optimal layout when image is used only as destination of transfer operations

pattern VK_IMAGE_LAYOUT_PREINITIALIZED :: VkImageLayout Source #

Initial layout used when the data is populated by the CPU

newtype VkImageTiling Source #

Constructors

VkImageTiling Int32 

Instances

Bounded VkImageTiling Source # 
Enum VkImageTiling Source # 
Eq VkImageTiling Source # 
Data VkImageTiling Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> VkImageTiling -> c VkImageTiling #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c VkImageTiling #

toConstr :: VkImageTiling -> Constr #

dataTypeOf :: VkImageTiling -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c VkImageTiling) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c VkImageTiling) #

gmapT :: (forall b. Data b => b -> b) -> VkImageTiling -> VkImageTiling #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> VkImageTiling -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> VkImageTiling -> r #

gmapQ :: (forall d. Data d => d -> u) -> VkImageTiling -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> VkImageTiling -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> VkImageTiling -> m VkImageTiling #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> VkImageTiling -> m VkImageTiling #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> VkImageTiling -> m VkImageTiling #

Num VkImageTiling Source # 
Ord VkImageTiling Source # 
Read VkImageTiling Source # 
Show VkImageTiling Source # 
Generic VkImageTiling Source # 

Associated Types

type Rep VkImageTiling :: * -> * #

Storable VkImageTiling Source # 
type Rep VkImageTiling Source # 
type Rep VkImageTiling = D1 (MetaData "VkImageTiling" "Graphics.Vulkan.Types.Enum.Image" "vulkan-api-1.1.3.0-FHhzd5k5VLu5phG4JhXQzZ" True) (C1 (MetaCons "VkImageTiling" PrefixI False) (S1 (MetaSel (Nothing Symbol) NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 Int32)))

newtype VkImageType Source #

Constructors

VkImageType Int32 

Instances

Bounded VkImageType Source # 
Enum VkImageType Source # 
Eq VkImageType Source # 
Data VkImageType Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> VkImageType -> c VkImageType #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c VkImageType #

toConstr :: VkImageType -> Constr #

dataTypeOf :: VkImageType -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c VkImageType) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c VkImageType) #

gmapT :: (forall b. Data b => b -> b) -> VkImageType -> VkImageType #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> VkImageType -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> VkImageType -> r #

gmapQ :: (forall d. Data d => d -> u) -> VkImageType -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> VkImageType -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> VkImageType -> m VkImageType #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> VkImageType -> m VkImageType #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> VkImageType -> m VkImageType #

Num VkImageType Source # 
Ord VkImageType Source # 
Read VkImageType Source # 
Show VkImageType Source # 
Generic VkImageType Source # 

Associated Types

type Rep VkImageType :: * -> * #

Storable VkImageType Source # 
type Rep VkImageType Source # 
type Rep VkImageType = D1 (MetaData "VkImageType" "Graphics.Vulkan.Types.Enum.Image" "vulkan-api-1.1.3.0-FHhzd5k5VLu5phG4JhXQzZ" True) (C1 (MetaCons "VkImageType" PrefixI False) (S1 (MetaSel (Nothing Symbol) NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 Int32)))

newtype VkImageUsageBitmask a Source #

Instances

Bounded (VkImageUsageBitmask FlagMask) Source # 
Enum (VkImageUsageBitmask FlagMask) Source # 
Eq (VkImageUsageBitmask a) Source # 
Integral (VkImageUsageBitmask FlagMask) Source # 
Typeable FlagType a => Data (VkImageUsageBitmask a) Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> VkImageUsageBitmask a -> c (VkImageUsageBitmask a) #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c (VkImageUsageBitmask a) #

toConstr :: VkImageUsageBitmask a -> Constr #

dataTypeOf :: VkImageUsageBitmask a -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c (VkImageUsageBitmask a)) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c (VkImageUsageBitmask a)) #

gmapT :: (forall b. Data b => b -> b) -> VkImageUsageBitmask a -> VkImageUsageBitmask a #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> VkImageUsageBitmask a -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> VkImageUsageBitmask a -> r #

gmapQ :: (forall d. Data d => d -> u) -> VkImageUsageBitmask a -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> VkImageUsageBitmask a -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> VkImageUsageBitmask a -> m (VkImageUsageBitmask a) #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> VkImageUsageBitmask a -> m (VkImageUsageBitmask a) #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> VkImageUsageBitmask a -> m (VkImageUsageBitmask a) #

Num (VkImageUsageBitmask FlagMask) Source # 
Ord (VkImageUsageBitmask a) Source # 
Read (VkImageUsageBitmask a) Source # 
Real (VkImageUsageBitmask FlagMask) Source # 
Show (VkImageUsageBitmask a) Source # 
Generic (VkImageUsageBitmask a) Source # 

Associated Types

type Rep (VkImageUsageBitmask a) :: * -> * #

Storable (VkImageUsageBitmask a) Source # 
Bits (VkImageUsageBitmask FlagMask) Source # 

Methods

(.&.) :: VkImageUsageBitmask FlagMask -> VkImageUsageBitmask FlagMask -> VkImageUsageBitmask FlagMask #

(.|.) :: VkImageUsageBitmask FlagMask -> VkImageUsageBitmask FlagMask -> VkImageUsageBitmask FlagMask #

xor :: VkImageUsageBitmask FlagMask -> VkImageUsageBitmask FlagMask -> VkImageUsageBitmask FlagMask #

complement :: VkImageUsageBitmask FlagMask -> VkImageUsageBitmask FlagMask #

shift :: VkImageUsageBitmask FlagMask -> Int -> VkImageUsageBitmask FlagMask #

rotate :: VkImageUsageBitmask FlagMask -> Int -> VkImageUsageBitmask FlagMask #

zeroBits :: VkImageUsageBitmask FlagMask #

bit :: Int -> VkImageUsageBitmask FlagMask #

setBit :: VkImageUsageBitmask FlagMask -> Int -> VkImageUsageBitmask FlagMask #

clearBit :: VkImageUsageBitmask FlagMask -> Int -> VkImageUsageBitmask FlagMask #

complementBit :: VkImageUsageBitmask FlagMask -> Int -> VkImageUsageBitmask FlagMask #

testBit :: VkImageUsageBitmask FlagMask -> Int -> Bool #

bitSizeMaybe :: VkImageUsageBitmask FlagMask -> Maybe Int #

bitSize :: VkImageUsageBitmask FlagMask -> Int #

isSigned :: VkImageUsageBitmask FlagMask -> Bool #

shiftL :: VkImageUsageBitmask FlagMask -> Int -> VkImageUsageBitmask FlagMask #

unsafeShiftL :: VkImageUsageBitmask FlagMask -> Int -> VkImageUsageBitmask FlagMask #

shiftR :: VkImageUsageBitmask FlagMask -> Int -> VkImageUsageBitmask FlagMask #

unsafeShiftR :: VkImageUsageBitmask FlagMask -> Int -> VkImageUsageBitmask FlagMask #

rotateL :: VkImageUsageBitmask FlagMask -> Int -> VkImageUsageBitmask FlagMask #

rotateR :: VkImageUsageBitmask FlagMask -> Int -> VkImageUsageBitmask FlagMask #

popCount :: VkImageUsageBitmask FlagMask -> Int #

FiniteBits (VkImageUsageBitmask FlagMask) Source # 
type Rep (VkImageUsageBitmask a) Source # 
type Rep (VkImageUsageBitmask a) = D1 (MetaData "VkImageUsageBitmask" "Graphics.Vulkan.Types.Enum.Image" "vulkan-api-1.1.3.0-FHhzd5k5VLu5phG4JhXQzZ" True) (C1 (MetaCons "VkImageUsageBitmask" PrefixI False) (S1 (MetaSel (Nothing Symbol) NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 VkFlags)))

pattern VK_IMAGE_USAGE_TRANSFER_SRC_BIT :: forall a. VkImageUsageBitmask a Source #

Can be used as a source of transfer operations

bitpos = 0

pattern VK_IMAGE_USAGE_TRANSFER_DST_BIT :: forall a. VkImageUsageBitmask a Source #

Can be used as a destination of transfer operations

bitpos = 1

pattern VK_IMAGE_USAGE_SAMPLED_BIT :: forall a. VkImageUsageBitmask a Source #

Can be sampled from (SAMPLED_IMAGE and COMBINED_IMAGE_SAMPLER descriptor types)

bitpos = 2

pattern VK_IMAGE_USAGE_STORAGE_BIT :: forall a. VkImageUsageBitmask a Source #

Can be used as storage image (STORAGE_IMAGE descriptor type)

bitpos = 3

pattern VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT :: forall a. VkImageUsageBitmask a Source #

Can be used as framebuffer color attachment

bitpos = 4

pattern VK_IMAGE_USAGE_DEPTH_STENCIL_ATTACHMENT_BIT :: forall a. VkImageUsageBitmask a Source #

Can be used as framebuffer depth/stencil attachment

bitpos = 5

pattern VK_IMAGE_USAGE_TRANSIENT_ATTACHMENT_BIT :: forall a. VkImageUsageBitmask a Source #

Image data not needed outside of rendering

bitpos = 6

pattern VK_IMAGE_USAGE_INPUT_ATTACHMENT_BIT :: forall a. VkImageUsageBitmask a Source #

Can be used as framebuffer input attachment

bitpos = 7

newtype VkImageViewType Source #

Constructors

VkImageViewType Int32 

Instances

Bounded VkImageViewType Source # 
Enum VkImageViewType Source # 
Eq VkImageViewType Source # 
Data VkImageViewType Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> VkImageViewType -> c VkImageViewType #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c VkImageViewType #

toConstr :: VkImageViewType -> Constr #

dataTypeOf :: VkImageViewType -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c VkImageViewType) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c VkImageViewType) #

gmapT :: (forall b. Data b => b -> b) -> VkImageViewType -> VkImageViewType #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> VkImageViewType -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> VkImageViewType -> r #

gmapQ :: (forall d. Data d => d -> u) -> VkImageViewType -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> VkImageViewType -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> VkImageViewType -> m VkImageViewType #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> VkImageViewType -> m VkImageViewType #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> VkImageViewType -> m VkImageViewType #

Num VkImageViewType Source # 
Ord VkImageViewType Source # 
Read VkImageViewType Source # 
Show VkImageViewType Source # 
Generic VkImageViewType Source # 
Storable VkImageViewType Source # 
type Rep VkImageViewType Source # 
type Rep VkImageViewType = D1 (MetaData "VkImageViewType" "Graphics.Vulkan.Types.Enum.Image" "vulkan-api-1.1.3.0-FHhzd5k5VLu5phG4JhXQzZ" True) (C1 (MetaCons "VkImageViewType" PrefixI False) (S1 (MetaSel (Nothing Symbol) NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 Int32)))

newtype VkInternalAllocationType Source #

Instances

Bounded VkInternalAllocationType Source # 
Enum VkInternalAllocationType Source # 
Eq VkInternalAllocationType Source # 
Data VkInternalAllocationType Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> VkInternalAllocationType -> c VkInternalAllocationType #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c VkInternalAllocationType #

toConstr :: VkInternalAllocationType -> Constr #

dataTypeOf :: VkInternalAllocationType -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c VkInternalAllocationType) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c VkInternalAllocationType) #

gmapT :: (forall b. Data b => b -> b) -> VkInternalAllocationType -> VkInternalAllocationType #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> VkInternalAllocationType -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> VkInternalAllocationType -> r #

gmapQ :: (forall d. Data d => d -> u) -> VkInternalAllocationType -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> VkInternalAllocationType -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> VkInternalAllocationType -> m VkInternalAllocationType #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> VkInternalAllocationType -> m VkInternalAllocationType #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> VkInternalAllocationType -> m VkInternalAllocationType #

Num VkInternalAllocationType Source # 
Ord VkInternalAllocationType Source # 
Read VkInternalAllocationType Source # 
Show VkInternalAllocationType Source # 
Generic VkInternalAllocationType Source # 
Storable VkInternalAllocationType Source # 
type Rep VkInternalAllocationType Source # 
type Rep VkInternalAllocationType = D1 (MetaData "VkInternalAllocationType" "Graphics.Vulkan.Types.Enum.InternalAllocationType" "vulkan-api-1.1.3.0-FHhzd5k5VLu5phG4JhXQzZ" True) (C1 (MetaCons "VkInternalAllocationType" PrefixI False) (S1 (MetaSel (Nothing Symbol) NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 Int32)))

newtype VkPresentModeKHR Source #

Constructors

VkPresentModeKHR Int32 

Instances

Bounded VkPresentModeKHR Source # 
Enum VkPresentModeKHR Source # 
Eq VkPresentModeKHR Source # 
Data VkPresentModeKHR Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> VkPresentModeKHR -> c VkPresentModeKHR #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c VkPresentModeKHR #

toConstr :: VkPresentModeKHR -> Constr #

dataTypeOf :: VkPresentModeKHR -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c VkPresentModeKHR) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c VkPresentModeKHR) #

gmapT :: (forall b. Data b => b -> b) -> VkPresentModeKHR -> VkPresentModeKHR #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> VkPresentModeKHR -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> VkPresentModeKHR -> r #

gmapQ :: (forall d. Data d => d -> u) -> VkPresentModeKHR -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> VkPresentModeKHR -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> VkPresentModeKHR -> m VkPresentModeKHR #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> VkPresentModeKHR -> m VkPresentModeKHR #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> VkPresentModeKHR -> m VkPresentModeKHR #

Num VkPresentModeKHR Source # 
Ord VkPresentModeKHR Source # 
Read VkPresentModeKHR Source # 
Show VkPresentModeKHR Source # 
Generic VkPresentModeKHR Source # 
Storable VkPresentModeKHR Source # 
type Rep VkPresentModeKHR Source # 
type Rep VkPresentModeKHR = D1 (MetaData "VkPresentModeKHR" "Graphics.Vulkan.Types.Enum.PresentModeKHR" "vulkan-api-1.1.3.0-FHhzd5k5VLu5phG4JhXQzZ" True) (C1 (MetaCons "VkPresentModeKHR" PrefixI False) (S1 (MetaSel (Nothing Symbol) NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 Int32)))

newtype VkResult Source #

API result codes

type = enum

VkResult registry at www.khronos.org

Constructors

VkResult Int32 

Instances

Bounded VkResult Source # 
Enum VkResult Source # 
Eq VkResult Source # 
Data VkResult Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> VkResult -> c VkResult #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c VkResult #

toConstr :: VkResult -> Constr #

dataTypeOf :: VkResult -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c VkResult) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c VkResult) #

gmapT :: (forall b. Data b => b -> b) -> VkResult -> VkResult #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> VkResult -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> VkResult -> r #

gmapQ :: (forall d. Data d => d -> u) -> VkResult -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> VkResult -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> VkResult -> m VkResult #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> VkResult -> m VkResult #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> VkResult -> m VkResult #

Num VkResult Source # 
Ord VkResult Source # 
Read VkResult Source # 
Show VkResult Source # 
Generic VkResult Source # 

Associated Types

type Rep VkResult :: * -> * #

Methods

from :: VkResult -> Rep VkResult x #

to :: Rep VkResult x -> VkResult #

Storable VkResult Source # 
type Rep VkResult Source # 
type Rep VkResult = D1 (MetaData "VkResult" "Graphics.Vulkan.Types.Enum.Result" "vulkan-api-1.1.3.0-FHhzd5k5VLu5phG4JhXQzZ" True) (C1 (MetaCons "VkResult" PrefixI False) (S1 (MetaSel (Nothing Symbol) NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 Int32)))

pattern VK_SUCCESS :: VkResult Source #

Command completed successfully

pattern VK_NOT_READY :: VkResult Source #

A fence or query has not yet completed

pattern VK_TIMEOUT :: VkResult Source #

A wait operation has not completed in the specified time

pattern VK_EVENT_SET :: VkResult Source #

An event is signaled

pattern VK_EVENT_RESET :: VkResult Source #

An event is unsignaled

pattern VK_INCOMPLETE :: VkResult Source #

A return array was too small for the result

pattern VK_ERROR_OUT_OF_HOST_MEMORY :: VkResult Source #

A host memory allocation has failed

pattern VK_ERROR_OUT_OF_DEVICE_MEMORY :: VkResult Source #

A device memory allocation has failed

pattern VK_ERROR_INITIALIZATION_FAILED :: VkResult Source #

Initialization of a object has failed

pattern VK_ERROR_DEVICE_LOST :: VkResult Source #

The logical device has been lost. See

pattern VK_ERROR_MEMORY_MAP_FAILED :: VkResult Source #

Mapping of a memory object has failed

pattern VK_ERROR_LAYER_NOT_PRESENT :: VkResult Source #

Layer specified does not exist

pattern VK_ERROR_EXTENSION_NOT_PRESENT :: VkResult Source #

Extension specified does not exist

pattern VK_ERROR_FEATURE_NOT_PRESENT :: VkResult Source #

Requested feature is not available on this device

pattern VK_ERROR_INCOMPATIBLE_DRIVER :: VkResult Source #

Unable to find a Vulkan driver

pattern VK_ERROR_TOO_MANY_OBJECTS :: VkResult Source #

Too many objects of the type have already been created

pattern VK_ERROR_FORMAT_NOT_SUPPORTED :: VkResult Source #

Requested format is not supported on this device

pattern VK_ERROR_FRAGMENTED_POOL :: VkResult Source #

A requested pool allocation has failed due to fragmentation of the pool's memory

newtype VkSurfaceCounterBitmaskEXT a Source #

Instances

Bounded (VkSurfaceCounterBitmaskEXT FlagMask) Source # 
Enum (VkSurfaceCounterBitmaskEXT FlagMask) Source # 
Eq (VkSurfaceCounterBitmaskEXT a) Source # 
Integral (VkSurfaceCounterBitmaskEXT FlagMask) Source # 
Typeable FlagType a => Data (VkSurfaceCounterBitmaskEXT a) Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> VkSurfaceCounterBitmaskEXT a -> c (VkSurfaceCounterBitmaskEXT a) #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c (VkSurfaceCounterBitmaskEXT a) #

toConstr :: VkSurfaceCounterBitmaskEXT a -> Constr #

dataTypeOf :: VkSurfaceCounterBitmaskEXT a -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c (VkSurfaceCounterBitmaskEXT a)) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c (VkSurfaceCounterBitmaskEXT a)) #

gmapT :: (forall b. Data b => b -> b) -> VkSurfaceCounterBitmaskEXT a -> VkSurfaceCounterBitmaskEXT a #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> VkSurfaceCounterBitmaskEXT a -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> VkSurfaceCounterBitmaskEXT a -> r #

gmapQ :: (forall d. Data d => d -> u) -> VkSurfaceCounterBitmaskEXT a -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> VkSurfaceCounterBitmaskEXT a -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> VkSurfaceCounterBitmaskEXT a -> m (VkSurfaceCounterBitmaskEXT a) #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> VkSurfaceCounterBitmaskEXT a -> m (VkSurfaceCounterBitmaskEXT a) #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> VkSurfaceCounterBitmaskEXT a -> m (VkSurfaceCounterBitmaskEXT a) #

Num (VkSurfaceCounterBitmaskEXT FlagMask) Source # 
Ord (VkSurfaceCounterBitmaskEXT a) Source # 
Read (VkSurfaceCounterBitmaskEXT a) Source # 
Real (VkSurfaceCounterBitmaskEXT FlagMask) Source # 
Show (VkSurfaceCounterBitmaskEXT a) Source # 
Generic (VkSurfaceCounterBitmaskEXT a) Source # 
Storable (VkSurfaceCounterBitmaskEXT a) Source # 
Bits (VkSurfaceCounterBitmaskEXT FlagMask) Source # 

Methods

(.&.) :: VkSurfaceCounterBitmaskEXT FlagMask -> VkSurfaceCounterBitmaskEXT FlagMask -> VkSurfaceCounterBitmaskEXT FlagMask #

(.|.) :: VkSurfaceCounterBitmaskEXT FlagMask -> VkSurfaceCounterBitmaskEXT FlagMask -> VkSurfaceCounterBitmaskEXT FlagMask #

xor :: VkSurfaceCounterBitmaskEXT FlagMask -> VkSurfaceCounterBitmaskEXT FlagMask -> VkSurfaceCounterBitmaskEXT FlagMask #

complement :: VkSurfaceCounterBitmaskEXT FlagMask -> VkSurfaceCounterBitmaskEXT FlagMask #

shift :: VkSurfaceCounterBitmaskEXT FlagMask -> Int -> VkSurfaceCounterBitmaskEXT FlagMask #

rotate :: VkSurfaceCounterBitmaskEXT FlagMask -> Int -> VkSurfaceCounterBitmaskEXT FlagMask #

zeroBits :: VkSurfaceCounterBitmaskEXT FlagMask #

bit :: Int -> VkSurfaceCounterBitmaskEXT FlagMask #

setBit :: VkSurfaceCounterBitmaskEXT FlagMask -> Int -> VkSurfaceCounterBitmaskEXT FlagMask #

clearBit :: VkSurfaceCounterBitmaskEXT FlagMask -> Int -> VkSurfaceCounterBitmaskEXT FlagMask #

complementBit :: VkSurfaceCounterBitmaskEXT FlagMask -> Int -> VkSurfaceCounterBitmaskEXT FlagMask #

testBit :: VkSurfaceCounterBitmaskEXT FlagMask -> Int -> Bool #

bitSizeMaybe :: VkSurfaceCounterBitmaskEXT FlagMask -> Maybe Int #

bitSize :: VkSurfaceCounterBitmaskEXT FlagMask -> Int #

isSigned :: VkSurfaceCounterBitmaskEXT FlagMask -> Bool #

shiftL :: VkSurfaceCounterBitmaskEXT FlagMask -> Int -> VkSurfaceCounterBitmaskEXT FlagMask #

unsafeShiftL :: VkSurfaceCounterBitmaskEXT FlagMask -> Int -> VkSurfaceCounterBitmaskEXT FlagMask #

shiftR :: VkSurfaceCounterBitmaskEXT FlagMask -> Int -> VkSurfaceCounterBitmaskEXT FlagMask #

unsafeShiftR :: VkSurfaceCounterBitmaskEXT FlagMask -> Int -> VkSurfaceCounterBitmaskEXT FlagMask #

rotateL :: VkSurfaceCounterBitmaskEXT FlagMask -> Int -> VkSurfaceCounterBitmaskEXT FlagMask #

rotateR :: VkSurfaceCounterBitmaskEXT FlagMask -> Int -> VkSurfaceCounterBitmaskEXT FlagMask #

popCount :: VkSurfaceCounterBitmaskEXT FlagMask -> Int #

FiniteBits (VkSurfaceCounterBitmaskEXT FlagMask) Source # 
type Rep (VkSurfaceCounterBitmaskEXT a) Source # 
type Rep (VkSurfaceCounterBitmaskEXT a) = D1 (MetaData "VkSurfaceCounterBitmaskEXT" "Graphics.Vulkan.Types.Enum.Surface" "vulkan-api-1.1.3.0-FHhzd5k5VLu5phG4JhXQzZ" True) (C1 (MetaCons "VkSurfaceCounterBitmaskEXT" PrefixI False) (S1 (MetaSel (Nothing Symbol) NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 VkFlags)))

newtype VkSurfaceTransformBitmaskKHR a Source #

Instances

Bounded (VkSurfaceTransformBitmaskKHR FlagMask) Source # 
Enum (VkSurfaceTransformBitmaskKHR FlagMask) Source # 
Eq (VkSurfaceTransformBitmaskKHR a) Source # 
Integral (VkSurfaceTransformBitmaskKHR FlagMask) Source # 
Typeable FlagType a => Data (VkSurfaceTransformBitmaskKHR a) Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> VkSurfaceTransformBitmaskKHR a -> c (VkSurfaceTransformBitmaskKHR a) #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c (VkSurfaceTransformBitmaskKHR a) #

toConstr :: VkSurfaceTransformBitmaskKHR a -> Constr #

dataTypeOf :: VkSurfaceTransformBitmaskKHR a -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c (VkSurfaceTransformBitmaskKHR a)) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c (VkSurfaceTransformBitmaskKHR a)) #

gmapT :: (forall b. Data b => b -> b) -> VkSurfaceTransformBitmaskKHR a -> VkSurfaceTransformBitmaskKHR a #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> VkSurfaceTransformBitmaskKHR a -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> VkSurfaceTransformBitmaskKHR a -> r #

gmapQ :: (forall d. Data d => d -> u) -> VkSurfaceTransformBitmaskKHR a -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> VkSurfaceTransformBitmaskKHR a -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> VkSurfaceTransformBitmaskKHR a -> m (VkSurfaceTransformBitmaskKHR a) #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> VkSurfaceTransformBitmaskKHR a -> m (VkSurfaceTransformBitmaskKHR a) #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> VkSurfaceTransformBitmaskKHR a -> m (VkSurfaceTransformBitmaskKHR a) #

Num (VkSurfaceTransformBitmaskKHR FlagMask) Source # 
Ord (VkSurfaceTransformBitmaskKHR a) Source # 
Read (VkSurfaceTransformBitmaskKHR a) Source # 
Real (VkSurfaceTransformBitmaskKHR FlagMask) Source # 
Show (VkSurfaceTransformBitmaskKHR a) Source # 
Generic (VkSurfaceTransformBitmaskKHR a) Source # 
Storable (VkSurfaceTransformBitmaskKHR a) Source # 
Bits (VkSurfaceTransformBitmaskKHR FlagMask) Source # 

Methods

(.&.) :: VkSurfaceTransformBitmaskKHR FlagMask -> VkSurfaceTransformBitmaskKHR FlagMask -> VkSurfaceTransformBitmaskKHR FlagMask #

(.|.) :: VkSurfaceTransformBitmaskKHR FlagMask -> VkSurfaceTransformBitmaskKHR FlagMask -> VkSurfaceTransformBitmaskKHR FlagMask #

xor :: VkSurfaceTransformBitmaskKHR FlagMask -> VkSurfaceTransformBitmaskKHR FlagMask -> VkSurfaceTransformBitmaskKHR FlagMask #

complement :: VkSurfaceTransformBitmaskKHR FlagMask -> VkSurfaceTransformBitmaskKHR FlagMask #

shift :: VkSurfaceTransformBitmaskKHR FlagMask -> Int -> VkSurfaceTransformBitmaskKHR FlagMask #

rotate :: VkSurfaceTransformBitmaskKHR FlagMask -> Int -> VkSurfaceTransformBitmaskKHR FlagMask #

zeroBits :: VkSurfaceTransformBitmaskKHR FlagMask #

bit :: Int -> VkSurfaceTransformBitmaskKHR FlagMask #

setBit :: VkSurfaceTransformBitmaskKHR FlagMask -> Int -> VkSurfaceTransformBitmaskKHR FlagMask #

clearBit :: VkSurfaceTransformBitmaskKHR FlagMask -> Int -> VkSurfaceTransformBitmaskKHR FlagMask #

complementBit :: VkSurfaceTransformBitmaskKHR FlagMask -> Int -> VkSurfaceTransformBitmaskKHR FlagMask #

testBit :: VkSurfaceTransformBitmaskKHR FlagMask -> Int -> Bool #

bitSizeMaybe :: VkSurfaceTransformBitmaskKHR FlagMask -> Maybe Int #

bitSize :: VkSurfaceTransformBitmaskKHR FlagMask -> Int #

isSigned :: VkSurfaceTransformBitmaskKHR FlagMask -> Bool #

shiftL :: VkSurfaceTransformBitmaskKHR FlagMask -> Int -> VkSurfaceTransformBitmaskKHR FlagMask #

unsafeShiftL :: VkSurfaceTransformBitmaskKHR FlagMask -> Int -> VkSurfaceTransformBitmaskKHR FlagMask #

shiftR :: VkSurfaceTransformBitmaskKHR FlagMask -> Int -> VkSurfaceTransformBitmaskKHR FlagMask #

unsafeShiftR :: VkSurfaceTransformBitmaskKHR FlagMask -> Int -> VkSurfaceTransformBitmaskKHR FlagMask #

rotateL :: VkSurfaceTransformBitmaskKHR FlagMask -> Int -> VkSurfaceTransformBitmaskKHR FlagMask #

rotateR :: VkSurfaceTransformBitmaskKHR FlagMask -> Int -> VkSurfaceTransformBitmaskKHR FlagMask #

popCount :: VkSurfaceTransformBitmaskKHR FlagMask -> Int #

FiniteBits (VkSurfaceTransformBitmaskKHR FlagMask) Source # 
type Rep (VkSurfaceTransformBitmaskKHR a) Source # 
type Rep (VkSurfaceTransformBitmaskKHR a) = D1 (MetaData "VkSurfaceTransformBitmaskKHR" "Graphics.Vulkan.Types.Enum.Surface" "vulkan-api-1.1.3.0-FHhzd5k5VLu5phG4JhXQzZ" True) (C1 (MetaCons "VkSurfaceTransformBitmaskKHR" PrefixI False) (S1 (MetaSel (Nothing Symbol) NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 VkFlags)))

newtype VkSystemAllocationScope Source #

Instances

Bounded VkSystemAllocationScope Source # 
Enum VkSystemAllocationScope Source # 
Eq VkSystemAllocationScope Source # 
Data VkSystemAllocationScope Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> VkSystemAllocationScope -> c VkSystemAllocationScope #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c VkSystemAllocationScope #

toConstr :: VkSystemAllocationScope -> Constr #

dataTypeOf :: VkSystemAllocationScope -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c VkSystemAllocationScope) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c VkSystemAllocationScope) #

gmapT :: (forall b. Data b => b -> b) -> VkSystemAllocationScope -> VkSystemAllocationScope #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> VkSystemAllocationScope -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> VkSystemAllocationScope -> r #

gmapQ :: (forall d. Data d => d -> u) -> VkSystemAllocationScope -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> VkSystemAllocationScope -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> VkSystemAllocationScope -> m VkSystemAllocationScope #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> VkSystemAllocationScope -> m VkSystemAllocationScope #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> VkSystemAllocationScope -> m VkSystemAllocationScope #

Num VkSystemAllocationScope Source # 
Ord VkSystemAllocationScope Source # 
Read VkSystemAllocationScope Source # 
Show VkSystemAllocationScope Source # 
Generic VkSystemAllocationScope Source # 
Storable VkSystemAllocationScope Source # 
type Rep VkSystemAllocationScope Source # 
type Rep VkSystemAllocationScope = D1 (MetaData "VkSystemAllocationScope" "Graphics.Vulkan.Types.Enum.SystemAllocationScope" "vulkan-api-1.1.3.0-FHhzd5k5VLu5phG4JhXQzZ" True) (C1 (MetaCons "VkSystemAllocationScope" PrefixI False) (S1 (MetaSel (Nothing Symbol) NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 Int32)))

type PFN_vkAllocationFunction = FunPtr HS_vkAllocationFunction Source #

typedef void* (VKAPI_PTR *PFN_vkAllocationFunction)(
    void*                                       pUserData,
    size_t                                      size,
    size_t                                      alignment,
    VkSystemAllocationScope                     allocationScope);

newVkAllocationFunction :: HS_vkAllocationFunction -> IO PFN_vkAllocationFunction Source #

Wrap haskell function into C-callable FunPtr. Note, you need to free resources after using it.

type PFN_vkDebugReportCallbackEXT = FunPtr HS_vkDebugReportCallbackEXT Source #

typedef VkBool32 (VKAPI_PTR *PFN_vkDebugReportCallbackEXT)(
    VkDebugReportFlagsEXT                       flags,
    VkDebugReportObjectTypeEXT                  objectType,
    uint64_t                                    object,
    size_t                                      location,
    int32_t                                     messageCode,
    const char*                                 pLayerPrefix,
    const char*                                 pMessage,
    void*                                       pUserData);

newVkDebugReportCallbackEXT :: HS_vkDebugReportCallbackEXT -> IO PFN_vkDebugReportCallbackEXT Source #

Wrap haskell function into C-callable FunPtr. Note, you need to free resources after using it.

type PFN_vkDebugUtilsMessengerCallbackEXT = FunPtr HS_vkDebugUtilsMessengerCallbackEXT Source #

typedef VkBool32 (VKAPI_PTR *PFN_vkDebugUtilsMessengerCallbackEXT)(
    VkDebugUtilsMessageSeverityFlagBitsEXT           messageSeverity,
    VkDebugUtilsMessageTypeFlagsEXT                  messageType,
    const VkDebugUtilsMessengerCallbackDataEXT*      pCallbackData,
    void*                                            pUserData);

newVkDebugUtilsMessengerCallbackEXT :: HS_vkDebugUtilsMessengerCallbackEXT -> IO PFN_vkDebugUtilsMessengerCallbackEXT Source #

Wrap haskell function into C-callable FunPtr. Note, you need to free resources after using it.

type PFN_vkFreeFunction = FunPtr HS_vkFreeFunction Source #

typedef void (VKAPI_PTR *PFN_vkFreeFunction)(
    void*                                       pUserData,
    void*                                       pMemory);

newVkFreeFunction :: HS_vkFreeFunction -> IO PFN_vkFreeFunction Source #

Wrap haskell function into C-callable FunPtr. Note, you need to free resources after using it.

type PFN_vkInternalAllocationNotification = FunPtr HS_vkInternalAllocationNotification Source #

typedef void (VKAPI_PTR *PFN_vkInternalAllocationNotification)(
    void*                                       pUserData,
    size_t                                      size,
    VkInternalAllocationType                    allocationType,
    VkSystemAllocationScope                     allocationScope);

newVkInternalAllocationNotification :: HS_vkInternalAllocationNotification -> IO PFN_vkInternalAllocationNotification Source #

Wrap haskell function into C-callable FunPtr. Note, you need to free resources after using it.

type PFN_vkInternalFreeNotification = FunPtr HS_vkInternalFreeNotification Source #

typedef void (VKAPI_PTR *PFN_vkInternalFreeNotification)(
    void*                                       pUserData,
    size_t                                      size,
    VkInternalAllocationType                    allocationType,
    VkSystemAllocationScope                     allocationScope);

newVkInternalFreeNotification :: HS_vkInternalFreeNotification -> IO PFN_vkInternalFreeNotification Source #

Wrap haskell function into C-callable FunPtr. Note, you need to free resources after using it.

type PFN_vkReallocationFunction = FunPtr HS_vkReallocationFunction Source #

typedef void* (VKAPI_PTR *PFN_vkReallocationFunction)(
    void*                                       pUserData,
    void*                                       pOriginal,
    size_t                                      size,
    size_t                                      alignment,
    VkSystemAllocationScope                     allocationScope);

newVkReallocationFunction :: HS_vkReallocationFunction -> IO PFN_vkReallocationFunction Source #

Wrap haskell function into C-callable FunPtr. Note, you need to free resources after using it.

type PFN_vkVoidFunction = FunPtr HS_vkVoidFunction Source #

typedef void (VKAPI_PTR *PFN_vkVoidFunction)(void);

newVkVoidFunction :: HS_vkVoidFunction -> IO PFN_vkVoidFunction Source #

Wrap haskell function into C-callable FunPtr. Note, you need to free resources after using it.

data VkBuffer_T Source #

Opaque data type referenced by VkBuffer

data VkBufferView_T Source #

Opaque data type referenced by VkBufferView

data VkCommandBuffer_T Source #

Opaque data type referenced by VkCommandBuffer

data VkCommandPool_T Source #

Opaque data type referenced by VkCommandPool

data VkDebugReportCallbackEXT_T Source #

Opaque data type referenced by VkDebugReportCallbackEXT

data VkDebugUtilsMessengerEXT_T Source #

Opaque data type referenced by VkDebugUtilsMessengerEXT

data VkDescriptorPool_T Source #

Opaque data type referenced by VkDescriptorPool

data VkDescriptorSet_T Source #

Opaque data type referenced by VkDescriptorSet

data VkDescriptorSetLayout_T Source #

Opaque data type referenced by VkDescriptorSetLayout

data VkDescriptorUpdateTemplate_T Source #

Opaque data type referenced by VkDescriptorUpdateTemplate

data VkDescriptorUpdateTemplateKHR_T Source #

Opaque data type referenced by VkDescriptorUpdateTemplateKHR

data VkDevice_T Source #

Opaque data type referenced by VkDevice

data VkDeviceMemory_T Source #

Opaque data type referenced by VkDeviceMemory

data VkDisplayKHR_T Source #

Opaque data type referenced by VkDisplayKHR

data VkDisplayModeKHR_T Source #

Opaque data type referenced by VkDisplayModeKHR

data VkEvent_T Source #

Opaque data type referenced by VkEvent

data VkFence_T Source #

Opaque data type referenced by VkFence

data VkFramebuffer_T Source #

Opaque data type referenced by VkFramebuffer

data VkImage_T Source #

Opaque data type referenced by VkImage

data VkImageView_T Source #

Opaque data type referenced by VkImageView

data VkIndirectCommandsLayoutNVX_T Source #

Opaque data type referenced by VkIndirectCommandsLayoutNVX

data VkInstance_T Source #

Opaque data type referenced by VkInstance

data VkObjectTableNVX_T Source #

Opaque data type referenced by VkObjectTableNVX

data VkPhysicalDevice_T Source #

Opaque data type referenced by VkPhysicalDevice

data VkPipeline_T Source #

Opaque data type referenced by VkPipeline

data VkPipelineCache_T Source #

Opaque data type referenced by VkPipelineCache

data VkPipelineLayout_T Source #

Opaque data type referenced by VkPipelineLayout

data VkQueryPool_T Source #

Opaque data type referenced by VkQueryPool

data VkQueue_T Source #

Opaque data type referenced by VkQueue

data VkRenderPass_T Source #

Opaque data type referenced by VkRenderPass

data VkSampler_T Source #

Opaque data type referenced by VkSampler

data VkSamplerYcbcrConversion_T Source #

Opaque data type referenced by VkSamplerYcbcrConversion

data VkSamplerYcbcrConversionKHR_T Source #

Opaque data type referenced by VkSamplerYcbcrConversionKHR

data VkSemaphore_T Source #

Opaque data type referenced by VkSemaphore

data VkShaderModule_T Source #

Opaque data type referenced by VkShaderModule

data VkSurfaceKHR_T Source #

Opaque data type referenced by VkSurfaceKHR

data VkSwapchainKHR_T Source #

Opaque data type referenced by VkSwapchainKHR

data VkValidationCacheEXT_T Source #

Opaque data type referenced by VkValidationCacheEXT

data VkAllocationCallbacks Source #

typedef struct VkAllocationCallbacks {
    void*           pUserData;
    PFN_vkAllocationFunction   pfnAllocation;
    PFN_vkReallocationFunction pfnReallocation;
    PFN_vkFreeFunction    pfnFree;
    PFN_vkInternalAllocationNotification pfnInternalAllocation;
    PFN_vkInternalFreeNotification pfnInternalFree;
} VkAllocationCallbacks;

VkAllocationCallbacks registry at www.khronos.org

Instances

Eq VkAllocationCallbacks Source # 
Ord VkAllocationCallbacks Source # 
Show VkAllocationCallbacks Source # 
Storable VkAllocationCallbacks Source # 
VulkanMarshalPrim VkAllocationCallbacks Source # 
VulkanMarshal VkAllocationCallbacks Source # 
CanWriteField "pUserData" VkAllocationCallbacks Source # 
CanWriteField "pfnAllocation" VkAllocationCallbacks Source # 
CanWriteField "pfnFree" VkAllocationCallbacks Source # 
CanWriteField "pfnInternalAllocation" VkAllocationCallbacks Source # 

Methods

writeField :: Ptr VkAllocationCallbacks -> FieldType "pfnInternalAllocation" VkAllocationCallbacks -> IO () Source #

CanWriteField "pfnInternalFree" VkAllocationCallbacks Source # 
CanWriteField "pfnReallocation" VkAllocationCallbacks Source # 
CanReadField "pUserData" VkAllocationCallbacks Source # 
CanReadField "pfnAllocation" VkAllocationCallbacks Source # 
CanReadField "pfnFree" VkAllocationCallbacks Source # 
CanReadField "pfnInternalAllocation" VkAllocationCallbacks Source # 
CanReadField "pfnInternalFree" VkAllocationCallbacks Source # 
CanReadField "pfnReallocation" VkAllocationCallbacks Source # 
HasField "pUserData" VkAllocationCallbacks Source # 
HasField "pfnAllocation" VkAllocationCallbacks Source # 

Associated Types

type FieldType ("pfnAllocation" :: Symbol) VkAllocationCallbacks :: Type Source #

type FieldOptional ("pfnAllocation" :: Symbol) VkAllocationCallbacks :: Bool Source #

type FieldOffset ("pfnAllocation" :: Symbol) VkAllocationCallbacks :: Nat Source #

type FieldIsArray ("pfnAllocation" :: Symbol) VkAllocationCallbacks :: Bool Source #

HasField "pfnFree" VkAllocationCallbacks Source # 
HasField "pfnInternalAllocation" VkAllocationCallbacks Source # 

Associated Types

type FieldType ("pfnInternalAllocation" :: Symbol) VkAllocationCallbacks :: Type Source #

type FieldOptional ("pfnInternalAllocation" :: Symbol) VkAllocationCallbacks :: Bool Source #

type FieldOffset ("pfnInternalAllocation" :: Symbol) VkAllocationCallbacks :: Nat Source #

type FieldIsArray ("pfnInternalAllocation" :: Symbol) VkAllocationCallbacks :: Bool Source #

HasField "pfnInternalFree" VkAllocationCallbacks Source # 

Associated Types

type FieldType ("pfnInternalFree" :: Symbol) VkAllocationCallbacks :: Type Source #

type FieldOptional ("pfnInternalFree" :: Symbol) VkAllocationCallbacks :: Bool Source #

type FieldOffset ("pfnInternalFree" :: Symbol) VkAllocationCallbacks :: Nat Source #

type FieldIsArray ("pfnInternalFree" :: Symbol) VkAllocationCallbacks :: Bool Source #

HasField "pfnReallocation" VkAllocationCallbacks Source # 

Associated Types

type FieldType ("pfnReallocation" :: Symbol) VkAllocationCallbacks :: Type Source #

type FieldOptional ("pfnReallocation" :: Symbol) VkAllocationCallbacks :: Bool Source #

type FieldOffset ("pfnReallocation" :: Symbol) VkAllocationCallbacks :: Nat Source #

type FieldIsArray ("pfnReallocation" :: Symbol) VkAllocationCallbacks :: Bool Source #

type StructFields VkAllocationCallbacks Source # 
type StructFields VkAllocationCallbacks = (:) Symbol "pUserData" ((:) Symbol "pfnAllocation" ((:) Symbol "pfnReallocation" ((:) Symbol "pfnFree" ((:) Symbol "pfnInternalAllocation" ((:) Symbol "pfnInternalFree" ([] Symbol))))))
type CUnionType VkAllocationCallbacks Source # 
type ReturnedOnly VkAllocationCallbacks Source # 
type StructExtends VkAllocationCallbacks Source # 
type FieldType "pUserData" VkAllocationCallbacks Source # 
type FieldType "pfnAllocation" VkAllocationCallbacks Source # 
type FieldType "pfnFree" VkAllocationCallbacks Source # 
type FieldType "pfnInternalAllocation" VkAllocationCallbacks Source # 
type FieldType "pfnInternalFree" VkAllocationCallbacks Source # 
type FieldType "pfnReallocation" VkAllocationCallbacks Source # 
type FieldOptional "pUserData" VkAllocationCallbacks Source # 
type FieldOptional "pfnAllocation" VkAllocationCallbacks Source # 
type FieldOptional "pfnFree" VkAllocationCallbacks Source # 
type FieldOptional "pfnInternalAllocation" VkAllocationCallbacks Source # 
type FieldOptional "pfnInternalAllocation" VkAllocationCallbacks = True
type FieldOptional "pfnInternalFree" VkAllocationCallbacks Source # 
type FieldOptional "pfnInternalFree" VkAllocationCallbacks = True
type FieldOptional "pfnReallocation" VkAllocationCallbacks Source # 
type FieldOptional "pfnReallocation" VkAllocationCallbacks = False
type FieldOffset "pUserData" VkAllocationCallbacks Source # 
type FieldOffset "pUserData" VkAllocationCallbacks = 0
type FieldOffset "pfnAllocation" VkAllocationCallbacks Source # 
type FieldOffset "pfnAllocation" VkAllocationCallbacks = 8
type FieldOffset "pfnFree" VkAllocationCallbacks Source # 
type FieldOffset "pfnInternalAllocation" VkAllocationCallbacks Source # 
type FieldOffset "pfnInternalAllocation" VkAllocationCallbacks = 32
type FieldOffset "pfnInternalFree" VkAllocationCallbacks Source # 
type FieldOffset "pfnInternalFree" VkAllocationCallbacks = 40
type FieldOffset "pfnReallocation" VkAllocationCallbacks Source # 
type FieldOffset "pfnReallocation" VkAllocationCallbacks = 16
type FieldIsArray "pUserData" VkAllocationCallbacks Source # 
type FieldIsArray "pfnAllocation" VkAllocationCallbacks Source # 
type FieldIsArray "pfnFree" VkAllocationCallbacks Source # 
type FieldIsArray "pfnInternalAllocation" VkAllocationCallbacks Source # 
type FieldIsArray "pfnInternalAllocation" VkAllocationCallbacks = False
type FieldIsArray "pfnInternalFree" VkAllocationCallbacks Source # 
type FieldIsArray "pfnInternalFree" VkAllocationCallbacks = False
type FieldIsArray "pfnReallocation" VkAllocationCallbacks Source # 
type FieldIsArray "pfnReallocation" VkAllocationCallbacks = False

data VkExtent2D Source #

typedef struct VkExtent2D {
    uint32_t        width;
    uint32_t        height;
} VkExtent2D;

VkExtent2D registry at www.khronos.org

Instances

Eq VkExtent2D Source # 
Ord VkExtent2D Source # 
Show VkExtent2D Source # 
Storable VkExtent2D Source # 
VulkanMarshalPrim VkExtent2D Source # 
VulkanMarshal VkExtent2D Source # 
CanWriteField "height" VkExtent2D Source # 

Methods

writeField :: Ptr VkExtent2D -> FieldType "height" VkExtent2D -> IO () Source #

CanWriteField "width" VkExtent2D Source # 

Methods

writeField :: Ptr VkExtent2D -> FieldType "width" VkExtent2D -> IO () Source #

CanReadField "height" VkExtent2D Source # 
CanReadField "width" VkExtent2D Source # 
HasField "height" VkExtent2D Source # 

Associated Types

type FieldType ("height" :: Symbol) VkExtent2D :: Type Source #

type FieldOptional ("height" :: Symbol) VkExtent2D :: Bool Source #

type FieldOffset ("height" :: Symbol) VkExtent2D :: Nat Source #

type FieldIsArray ("height" :: Symbol) VkExtent2D :: Bool Source #

HasField "width" VkExtent2D Source # 

Associated Types

type FieldType ("width" :: Symbol) VkExtent2D :: Type Source #

type FieldOptional ("width" :: Symbol) VkExtent2D :: Bool Source #

type FieldOffset ("width" :: Symbol) VkExtent2D :: Nat Source #

type FieldIsArray ("width" :: Symbol) VkExtent2D :: Bool Source #

type StructFields VkExtent2D Source # 
type StructFields VkExtent2D = (:) Symbol "width" ((:) Symbol "height" ([] Symbol))
type CUnionType VkExtent2D Source # 
type ReturnedOnly VkExtent2D Source # 
type StructExtends VkExtent2D Source # 
type FieldType "height" VkExtent2D Source # 
type FieldType "height" VkExtent2D = Word32
type FieldType "width" VkExtent2D Source # 
type FieldType "width" VkExtent2D = Word32
type FieldOptional "height" VkExtent2D Source # 
type FieldOptional "width" VkExtent2D Source # 
type FieldOffset "height" VkExtent2D Source # 
type FieldOffset "height" VkExtent2D = 4
type FieldOffset "width" VkExtent2D Source # 
type FieldOffset "width" VkExtent2D = 0
type FieldIsArray "height" VkExtent2D Source # 
type FieldIsArray "height" VkExtent2D = False
type FieldIsArray "width" VkExtent2D Source # 

data VkExtent3D Source #

typedef struct VkExtent3D {
    uint32_t        width;
    uint32_t        height;
    uint32_t        depth;
} VkExtent3D;

VkExtent3D registry at www.khronos.org

Instances

Eq VkExtent3D Source # 
Ord VkExtent3D Source # 
Show VkExtent3D Source # 
Storable VkExtent3D Source # 
VulkanMarshalPrim VkExtent3D Source # 
VulkanMarshal VkExtent3D Source # 
CanWriteField "depth" VkExtent3D Source # 

Methods

writeField :: Ptr VkExtent3D -> FieldType "depth" VkExtent3D -> IO () Source #

CanWriteField "height" VkExtent3D Source # 

Methods

writeField :: Ptr VkExtent3D -> FieldType "height" VkExtent3D -> IO () Source #

CanWriteField "width" VkExtent3D Source # 

Methods

writeField :: Ptr VkExtent3D -> FieldType "width" VkExtent3D -> IO () Source #

CanReadField "depth" VkExtent3D Source # 
CanReadField "height" VkExtent3D Source # 
CanReadField "width" VkExtent3D Source # 
HasField "depth" VkExtent3D Source # 

Associated Types

type FieldType ("depth" :: Symbol) VkExtent3D :: Type Source #

type FieldOptional ("depth" :: Symbol) VkExtent3D :: Bool Source #

type FieldOffset ("depth" :: Symbol) VkExtent3D :: Nat Source #

type FieldIsArray ("depth" :: Symbol) VkExtent3D :: Bool Source #

HasField "height" VkExtent3D Source # 

Associated Types

type FieldType ("height" :: Symbol) VkExtent3D :: Type Source #

type FieldOptional ("height" :: Symbol) VkExtent3D :: Bool Source #

type FieldOffset ("height" :: Symbol) VkExtent3D :: Nat Source #

type FieldIsArray ("height" :: Symbol) VkExtent3D :: Bool Source #

HasField "width" VkExtent3D Source # 

Associated Types

type FieldType ("width" :: Symbol) VkExtent3D :: Type Source #

type FieldOptional ("width" :: Symbol) VkExtent3D :: Bool Source #

type FieldOffset ("width" :: Symbol) VkExtent3D :: Nat Source #

type FieldIsArray ("width" :: Symbol) VkExtent3D :: Bool Source #

type StructFields VkExtent3D Source # 
type StructFields VkExtent3D = (:) Symbol "width" ((:) Symbol "height" ((:) Symbol "depth" ([] Symbol)))
type CUnionType VkExtent3D Source # 
type ReturnedOnly VkExtent3D Source # 
type StructExtends VkExtent3D Source # 
type FieldType "depth" VkExtent3D Source # 
type FieldType "depth" VkExtent3D = Word32
type FieldType "height" VkExtent3D Source # 
type FieldType "height" VkExtent3D = Word32
type FieldType "width" VkExtent3D Source # 
type FieldType "width" VkExtent3D = Word32
type FieldOptional "depth" VkExtent3D Source # 
type FieldOptional "height" VkExtent3D Source # 
type FieldOptional "width" VkExtent3D Source # 
type FieldOffset "depth" VkExtent3D Source # 
type FieldOffset "depth" VkExtent3D = 8
type FieldOffset "height" VkExtent3D Source # 
type FieldOffset "height" VkExtent3D = 4
type FieldOffset "width" VkExtent3D Source # 
type FieldOffset "width" VkExtent3D = 0
type FieldIsArray "depth" VkExtent3D Source # 
type FieldIsArray "height" VkExtent3D Source # 
type FieldIsArray "height" VkExtent3D = False
type FieldIsArray "width" VkExtent3D Source # 

data VkSurfaceCapabilities2EXT Source #

typedef struct VkSurfaceCapabilities2EXT {
    VkStructureType sType;
    void*                            pNext;
    uint32_t                         minImageCount;
    uint32_t                         maxImageCount;
    VkExtent2D                       currentExtent;
    VkExtent2D                       minImageExtent;
    VkExtent2D                       maxImageExtent;
    uint32_t                         maxImageArrayLayers;
    VkSurfaceTransformFlagsKHR       supportedTransforms;
    VkSurfaceTransformFlagBitsKHR    currentTransform;
    VkCompositeAlphaFlagsKHR         supportedCompositeAlpha;
    VkImageUsageFlags                supportedUsageFlags;
    VkSurfaceCounterFlagsEXT supportedSurfaceCounters;
} VkSurfaceCapabilities2EXT;

VkSurfaceCapabilities2EXT registry at www.khronos.org

Instances

Eq VkSurfaceCapabilities2EXT Source # 
Ord VkSurfaceCapabilities2EXT Source # 
Show VkSurfaceCapabilities2EXT Source # 
Storable VkSurfaceCapabilities2EXT Source # 
VulkanMarshalPrim VkSurfaceCapabilities2EXT Source # 
VulkanMarshal VkSurfaceCapabilities2EXT Source # 
CanWriteField "currentExtent" VkSurfaceCapabilities2EXT Source # 
CanWriteField "currentTransform" VkSurfaceCapabilities2EXT Source # 
CanWriteField "maxImageArrayLayers" VkSurfaceCapabilities2EXT Source # 
CanWriteField "maxImageCount" VkSurfaceCapabilities2EXT Source # 
CanWriteField "maxImageExtent" VkSurfaceCapabilities2EXT Source # 
CanWriteField "minImageCount" VkSurfaceCapabilities2EXT Source # 
CanWriteField "minImageExtent" VkSurfaceCapabilities2EXT Source # 
CanWriteField "pNext" VkSurfaceCapabilities2EXT Source # 
CanWriteField "sType" VkSurfaceCapabilities2EXT Source # 
CanWriteField "supportedCompositeAlpha" VkSurfaceCapabilities2EXT Source # 
CanWriteField "supportedSurfaceCounters" VkSurfaceCapabilities2EXT Source # 
CanWriteField "supportedTransforms" VkSurfaceCapabilities2EXT Source # 
CanWriteField "supportedUsageFlags" VkSurfaceCapabilities2EXT Source # 
CanReadField "currentExtent" VkSurfaceCapabilities2EXT Source # 
CanReadField "currentTransform" VkSurfaceCapabilities2EXT Source # 
CanReadField "maxImageArrayLayers" VkSurfaceCapabilities2EXT Source # 
CanReadField "maxImageCount" VkSurfaceCapabilities2EXT Source # 
CanReadField "maxImageExtent" VkSurfaceCapabilities2EXT Source # 
CanReadField "minImageCount" VkSurfaceCapabilities2EXT Source # 
CanReadField "minImageExtent" VkSurfaceCapabilities2EXT Source # 
CanReadField "pNext" VkSurfaceCapabilities2EXT Source # 
CanReadField "sType" VkSurfaceCapabilities2EXT Source # 
CanReadField "supportedCompositeAlpha" VkSurfaceCapabilities2EXT Source # 
CanReadField "supportedSurfaceCounters" VkSurfaceCapabilities2EXT Source # 
CanReadField "supportedTransforms" VkSurfaceCapabilities2EXT Source # 
CanReadField "supportedUsageFlags" VkSurfaceCapabilities2EXT Source # 
HasField "currentExtent" VkSurfaceCapabilities2EXT Source # 

Associated Types

type FieldType ("currentExtent" :: Symbol) VkSurfaceCapabilities2EXT :: Type Source #

type FieldOptional ("currentExtent" :: Symbol) VkSurfaceCapabilities2EXT :: Bool Source #

type FieldOffset ("currentExtent" :: Symbol) VkSurfaceCapabilities2EXT :: Nat Source #

type FieldIsArray ("currentExtent" :: Symbol) VkSurfaceCapabilities2EXT :: Bool Source #

HasField "currentTransform" VkSurfaceCapabilities2EXT Source # 

Associated Types

type FieldType ("currentTransform" :: Symbol) VkSurfaceCapabilities2EXT :: Type Source #

type FieldOptional ("currentTransform" :: Symbol) VkSurfaceCapabilities2EXT :: Bool Source #

type FieldOffset ("currentTransform" :: Symbol) VkSurfaceCapabilities2EXT :: Nat Source #

type FieldIsArray ("currentTransform" :: Symbol) VkSurfaceCapabilities2EXT :: Bool Source #

HasField "maxImageArrayLayers" VkSurfaceCapabilities2EXT Source # 

Associated Types

type FieldType ("maxImageArrayLayers" :: Symbol) VkSurfaceCapabilities2EXT :: Type Source #

type FieldOptional ("maxImageArrayLayers" :: Symbol) VkSurfaceCapabilities2EXT :: Bool Source #

type FieldOffset ("maxImageArrayLayers" :: Symbol) VkSurfaceCapabilities2EXT :: Nat Source #

type FieldIsArray ("maxImageArrayLayers" :: Symbol) VkSurfaceCapabilities2EXT :: Bool Source #

HasField "maxImageCount" VkSurfaceCapabilities2EXT Source # 

Associated Types

type FieldType ("maxImageCount" :: Symbol) VkSurfaceCapabilities2EXT :: Type Source #

type FieldOptional ("maxImageCount" :: Symbol) VkSurfaceCapabilities2EXT :: Bool Source #

type FieldOffset ("maxImageCount" :: Symbol) VkSurfaceCapabilities2EXT :: Nat Source #

type FieldIsArray ("maxImageCount" :: Symbol) VkSurfaceCapabilities2EXT :: Bool Source #

HasField "maxImageExtent" VkSurfaceCapabilities2EXT Source # 

Associated Types

type FieldType ("maxImageExtent" :: Symbol) VkSurfaceCapabilities2EXT :: Type Source #

type FieldOptional ("maxImageExtent" :: Symbol) VkSurfaceCapabilities2EXT :: Bool Source #

type FieldOffset ("maxImageExtent" :: Symbol) VkSurfaceCapabilities2EXT :: Nat Source #

type FieldIsArray ("maxImageExtent" :: Symbol) VkSurfaceCapabilities2EXT :: Bool Source #

HasField "minImageCount" VkSurfaceCapabilities2EXT Source # 

Associated Types

type FieldType ("minImageCount" :: Symbol) VkSurfaceCapabilities2EXT :: Type Source #

type FieldOptional ("minImageCount" :: Symbol) VkSurfaceCapabilities2EXT :: Bool Source #

type FieldOffset ("minImageCount" :: Symbol) VkSurfaceCapabilities2EXT :: Nat Source #

type FieldIsArray ("minImageCount" :: Symbol) VkSurfaceCapabilities2EXT :: Bool Source #

HasField "minImageExtent" VkSurfaceCapabilities2EXT Source # 

Associated Types

type FieldType ("minImageExtent" :: Symbol) VkSurfaceCapabilities2EXT :: Type Source #

type FieldOptional ("minImageExtent" :: Symbol) VkSurfaceCapabilities2EXT :: Bool Source #

type FieldOffset ("minImageExtent" :: Symbol) VkSurfaceCapabilities2EXT :: Nat Source #

type FieldIsArray ("minImageExtent" :: Symbol) VkSurfaceCapabilities2EXT :: Bool Source #

HasField "pNext" VkSurfaceCapabilities2EXT Source # 
HasField "sType" VkSurfaceCapabilities2EXT Source # 
HasField "supportedCompositeAlpha" VkSurfaceCapabilities2EXT Source # 

Associated Types

type FieldType ("supportedCompositeAlpha" :: Symbol) VkSurfaceCapabilities2EXT :: Type Source #

type FieldOptional ("supportedCompositeAlpha" :: Symbol) VkSurfaceCapabilities2EXT :: Bool Source #

type FieldOffset ("supportedCompositeAlpha" :: Symbol) VkSurfaceCapabilities2EXT :: Nat Source #

type FieldIsArray ("supportedCompositeAlpha" :: Symbol) VkSurfaceCapabilities2EXT :: Bool Source #

HasField "supportedSurfaceCounters" VkSurfaceCapabilities2EXT Source # 

Associated Types

type FieldType ("supportedSurfaceCounters" :: Symbol) VkSurfaceCapabilities2EXT :: Type Source #

type FieldOptional ("supportedSurfaceCounters" :: Symbol) VkSurfaceCapabilities2EXT :: Bool Source #

type FieldOffset ("supportedSurfaceCounters" :: Symbol) VkSurfaceCapabilities2EXT :: Nat Source #

type FieldIsArray ("supportedSurfaceCounters" :: Symbol) VkSurfaceCapabilities2EXT :: Bool Source #

HasField "supportedTransforms" VkSurfaceCapabilities2EXT Source # 

Associated Types

type FieldType ("supportedTransforms" :: Symbol) VkSurfaceCapabilities2EXT :: Type Source #

type FieldOptional ("supportedTransforms" :: Symbol) VkSurfaceCapabilities2EXT :: Bool Source #

type FieldOffset ("supportedTransforms" :: Symbol) VkSurfaceCapabilities2EXT :: Nat Source #

type FieldIsArray ("supportedTransforms" :: Symbol) VkSurfaceCapabilities2EXT :: Bool Source #

HasField "supportedUsageFlags" VkSurfaceCapabilities2EXT Source # 

Associated Types

type FieldType ("supportedUsageFlags" :: Symbol) VkSurfaceCapabilities2EXT :: Type Source #

type FieldOptional ("supportedUsageFlags" :: Symbol) VkSurfaceCapabilities2EXT :: Bool Source #

type FieldOffset ("supportedUsageFlags" :: Symbol) VkSurfaceCapabilities2EXT :: Nat Source #

type FieldIsArray ("supportedUsageFlags" :: Symbol) VkSurfaceCapabilities2EXT :: Bool Source #

type StructFields VkSurfaceCapabilities2EXT Source # 
type StructFields VkSurfaceCapabilities2EXT = (:) Symbol "sType" ((:) Symbol "pNext" ((:) Symbol "minImageCount" ((:) Symbol "maxImageCount" ((:) Symbol "currentExtent" ((:) Symbol "minImageExtent" ((:) Symbol "maxImageExtent" ((:) Symbol "maxImageArrayLayers" ((:) Symbol "supportedTransforms" ((:) Symbol "currentTransform" ((:) Symbol "supportedCompositeAlpha" ((:) Symbol "supportedUsageFlags" ((:) Symbol "supportedSurfaceCounters" ([] Symbol)))))))))))))
type CUnionType VkSurfaceCapabilities2EXT Source # 
type ReturnedOnly VkSurfaceCapabilities2EXT Source # 
type StructExtends VkSurfaceCapabilities2EXT Source # 
type FieldType "currentExtent" VkSurfaceCapabilities2EXT Source # 
type FieldType "currentTransform" VkSurfaceCapabilities2EXT Source # 
type FieldType "maxImageArrayLayers" VkSurfaceCapabilities2EXT Source # 
type FieldType "maxImageArrayLayers" VkSurfaceCapabilities2EXT = Word32
type FieldType "maxImageCount" VkSurfaceCapabilities2EXT Source # 
type FieldType "maxImageExtent" VkSurfaceCapabilities2EXT Source # 
type FieldType "minImageCount" VkSurfaceCapabilities2EXT Source # 
type FieldType "minImageExtent" VkSurfaceCapabilities2EXT Source # 
type FieldType "pNext" VkSurfaceCapabilities2EXT Source # 
type FieldType "sType" VkSurfaceCapabilities2EXT Source # 
type FieldType "supportedCompositeAlpha" VkSurfaceCapabilities2EXT Source # 
type FieldType "supportedSurfaceCounters" VkSurfaceCapabilities2EXT Source # 
type FieldType "supportedTransforms" VkSurfaceCapabilities2EXT Source # 
type FieldType "supportedUsageFlags" VkSurfaceCapabilities2EXT Source # 
type FieldOptional "currentExtent" VkSurfaceCapabilities2EXT Source # 
type FieldOptional "currentTransform" VkSurfaceCapabilities2EXT Source # 
type FieldOptional "maxImageArrayLayers" VkSurfaceCapabilities2EXT Source # 
type FieldOptional "maxImageArrayLayers" VkSurfaceCapabilities2EXT = False
type FieldOptional "maxImageCount" VkSurfaceCapabilities2EXT Source # 
type FieldOptional "maxImageExtent" VkSurfaceCapabilities2EXT Source # 
type FieldOptional "minImageCount" VkSurfaceCapabilities2EXT Source # 
type FieldOptional "minImageExtent" VkSurfaceCapabilities2EXT Source # 
type FieldOptional "pNext" VkSurfaceCapabilities2EXT Source # 
type FieldOptional "sType" VkSurfaceCapabilities2EXT Source # 
type FieldOptional "supportedCompositeAlpha" VkSurfaceCapabilities2EXT Source # 
type FieldOptional "supportedCompositeAlpha" VkSurfaceCapabilities2EXT = True
type FieldOptional "supportedSurfaceCounters" VkSurfaceCapabilities2EXT Source # 
type FieldOptional "supportedSurfaceCounters" VkSurfaceCapabilities2EXT = True
type FieldOptional "supportedTransforms" VkSurfaceCapabilities2EXT Source # 
type FieldOptional "supportedTransforms" VkSurfaceCapabilities2EXT = True
type FieldOptional "supportedUsageFlags" VkSurfaceCapabilities2EXT Source # 
type FieldOptional "supportedUsageFlags" VkSurfaceCapabilities2EXT = True
type FieldOffset "currentExtent" VkSurfaceCapabilities2EXT Source # 
type FieldOffset "currentExtent" VkSurfaceCapabilities2EXT = 24
type FieldOffset "currentTransform" VkSurfaceCapabilities2EXT Source # 
type FieldOffset "currentTransform" VkSurfaceCapabilities2EXT = 56
type FieldOffset "maxImageArrayLayers" VkSurfaceCapabilities2EXT Source # 
type FieldOffset "maxImageArrayLayers" VkSurfaceCapabilities2EXT = 48
type FieldOffset "maxImageCount" VkSurfaceCapabilities2EXT Source # 
type FieldOffset "maxImageCount" VkSurfaceCapabilities2EXT = 20
type FieldOffset "maxImageExtent" VkSurfaceCapabilities2EXT Source # 
type FieldOffset "maxImageExtent" VkSurfaceCapabilities2EXT = 40
type FieldOffset "minImageCount" VkSurfaceCapabilities2EXT Source # 
type FieldOffset "minImageCount" VkSurfaceCapabilities2EXT = 16
type FieldOffset "minImageExtent" VkSurfaceCapabilities2EXT Source # 
type FieldOffset "minImageExtent" VkSurfaceCapabilities2EXT = 32
type FieldOffset "pNext" VkSurfaceCapabilities2EXT Source # 
type FieldOffset "sType" VkSurfaceCapabilities2EXT Source # 
type FieldOffset "supportedCompositeAlpha" VkSurfaceCapabilities2EXT Source # 
type FieldOffset "supportedCompositeAlpha" VkSurfaceCapabilities2EXT = 60
type FieldOffset "supportedSurfaceCounters" VkSurfaceCapabilities2EXT Source # 
type FieldOffset "supportedSurfaceCounters" VkSurfaceCapabilities2EXT = 68
type FieldOffset "supportedTransforms" VkSurfaceCapabilities2EXT Source # 
type FieldOffset "supportedTransforms" VkSurfaceCapabilities2EXT = 52
type FieldOffset "supportedUsageFlags" VkSurfaceCapabilities2EXT Source # 
type FieldOffset "supportedUsageFlags" VkSurfaceCapabilities2EXT = 64
type FieldIsArray "currentExtent" VkSurfaceCapabilities2EXT Source # 
type FieldIsArray "currentTransform" VkSurfaceCapabilities2EXT Source # 
type FieldIsArray "currentTransform" VkSurfaceCapabilities2EXT = False
type FieldIsArray "maxImageArrayLayers" VkSurfaceCapabilities2EXT Source # 
type FieldIsArray "maxImageArrayLayers" VkSurfaceCapabilities2EXT = False
type FieldIsArray "maxImageCount" VkSurfaceCapabilities2EXT Source # 
type FieldIsArray "maxImageExtent" VkSurfaceCapabilities2EXT Source # 
type FieldIsArray "minImageCount" VkSurfaceCapabilities2EXT Source # 
type FieldIsArray "minImageExtent" VkSurfaceCapabilities2EXT Source # 
type FieldIsArray "pNext" VkSurfaceCapabilities2EXT Source # 
type FieldIsArray "sType" VkSurfaceCapabilities2EXT Source # 
type FieldIsArray "supportedCompositeAlpha" VkSurfaceCapabilities2EXT Source # 
type FieldIsArray "supportedCompositeAlpha" VkSurfaceCapabilities2EXT = False
type FieldIsArray "supportedSurfaceCounters" VkSurfaceCapabilities2EXT Source # 
type FieldIsArray "supportedSurfaceCounters" VkSurfaceCapabilities2EXT = False
type FieldIsArray "supportedTransforms" VkSurfaceCapabilities2EXT Source # 
type FieldIsArray "supportedTransforms" VkSurfaceCapabilities2EXT = False
type FieldIsArray "supportedUsageFlags" VkSurfaceCapabilities2EXT Source # 
type FieldIsArray "supportedUsageFlags" VkSurfaceCapabilities2EXT = False

data VkSurfaceCapabilities2KHR Source #

typedef struct VkSurfaceCapabilities2KHR {
    VkStructureType sType;
    void*   pNext;
    VkSurfaceCapabilitiesKHR surfaceCapabilities;
} VkSurfaceCapabilities2KHR;

VkSurfaceCapabilities2KHR registry at www.khronos.org

Instances

Eq VkSurfaceCapabilities2KHR Source # 
Ord VkSurfaceCapabilities2KHR Source # 
Show VkSurfaceCapabilities2KHR Source # 
Storable VkSurfaceCapabilities2KHR Source # 
VulkanMarshalPrim VkSurfaceCapabilities2KHR Source # 
VulkanMarshal VkSurfaceCapabilities2KHR Source # 
CanWriteField "pNext" VkSurfaceCapabilities2KHR Source # 
CanWriteField "sType" VkSurfaceCapabilities2KHR Source # 
CanWriteField "surfaceCapabilities" VkSurfaceCapabilities2KHR Source # 
CanReadField "pNext" VkSurfaceCapabilities2KHR Source # 
CanReadField "sType" VkSurfaceCapabilities2KHR Source # 
CanReadField "surfaceCapabilities" VkSurfaceCapabilities2KHR Source # 
HasField "pNext" VkSurfaceCapabilities2KHR Source # 
HasField "sType" VkSurfaceCapabilities2KHR Source # 
HasField "surfaceCapabilities" VkSurfaceCapabilities2KHR Source # 

Associated Types

type FieldType ("surfaceCapabilities" :: Symbol) VkSurfaceCapabilities2KHR :: Type Source #

type FieldOptional ("surfaceCapabilities" :: Symbol) VkSurfaceCapabilities2KHR :: Bool Source #

type FieldOffset ("surfaceCapabilities" :: Symbol) VkSurfaceCapabilities2KHR :: Nat Source #

type FieldIsArray ("surfaceCapabilities" :: Symbol) VkSurfaceCapabilities2KHR :: Bool Source #

type StructFields VkSurfaceCapabilities2KHR Source # 
type StructFields VkSurfaceCapabilities2KHR = (:) Symbol "sType" ((:) Symbol "pNext" ((:) Symbol "surfaceCapabilities" ([] Symbol)))
type CUnionType VkSurfaceCapabilities2KHR Source # 
type ReturnedOnly VkSurfaceCapabilities2KHR Source # 
type StructExtends VkSurfaceCapabilities2KHR Source # 
type FieldType "pNext" VkSurfaceCapabilities2KHR Source # 
type FieldType "sType" VkSurfaceCapabilities2KHR Source # 
type FieldType "surfaceCapabilities" VkSurfaceCapabilities2KHR Source # 
type FieldOptional "pNext" VkSurfaceCapabilities2KHR Source # 
type FieldOptional "sType" VkSurfaceCapabilities2KHR Source # 
type FieldOptional "surfaceCapabilities" VkSurfaceCapabilities2KHR Source # 
type FieldOptional "surfaceCapabilities" VkSurfaceCapabilities2KHR = False
type FieldOffset "pNext" VkSurfaceCapabilities2KHR Source # 
type FieldOffset "sType" VkSurfaceCapabilities2KHR Source # 
type FieldOffset "surfaceCapabilities" VkSurfaceCapabilities2KHR Source # 
type FieldOffset "surfaceCapabilities" VkSurfaceCapabilities2KHR = 16
type FieldIsArray "pNext" VkSurfaceCapabilities2KHR Source # 
type FieldIsArray "sType" VkSurfaceCapabilities2KHR Source # 
type FieldIsArray "surfaceCapabilities" VkSurfaceCapabilities2KHR Source # 
type FieldIsArray "surfaceCapabilities" VkSurfaceCapabilities2KHR = False

data VkSurfaceCapabilitiesKHR Source #

typedef struct VkSurfaceCapabilitiesKHR {
    uint32_t                         minImageCount;
    uint32_t                         maxImageCount;
    VkExtent2D                       currentExtent;
    VkExtent2D                       minImageExtent;
    VkExtent2D                       maxImageExtent;
    uint32_t                         maxImageArrayLayers;
    VkSurfaceTransformFlagsKHR       supportedTransforms;
    VkSurfaceTransformFlagBitsKHR    currentTransform;
    VkCompositeAlphaFlagsKHR         supportedCompositeAlpha;
    VkImageUsageFlags                supportedUsageFlags;
} VkSurfaceCapabilitiesKHR;

VkSurfaceCapabilitiesKHR registry at www.khronos.org

Instances

Eq VkSurfaceCapabilitiesKHR Source # 
Ord VkSurfaceCapabilitiesKHR Source # 
Show VkSurfaceCapabilitiesKHR Source # 
Storable VkSurfaceCapabilitiesKHR Source # 
VulkanMarshalPrim VkSurfaceCapabilitiesKHR Source # 
VulkanMarshal VkSurfaceCapabilitiesKHR Source # 
CanWriteField "currentExtent" VkSurfaceCapabilitiesKHR Source # 
CanWriteField "currentTransform" VkSurfaceCapabilitiesKHR Source # 
CanWriteField "maxImageArrayLayers" VkSurfaceCapabilitiesKHR Source # 
CanWriteField "maxImageCount" VkSurfaceCapabilitiesKHR Source # 
CanWriteField "maxImageExtent" VkSurfaceCapabilitiesKHR Source # 
CanWriteField "minImageCount" VkSurfaceCapabilitiesKHR Source # 
CanWriteField "minImageExtent" VkSurfaceCapabilitiesKHR Source # 
CanWriteField "supportedCompositeAlpha" VkSurfaceCapabilitiesKHR Source # 
CanWriteField "supportedTransforms" VkSurfaceCapabilitiesKHR Source # 
CanWriteField "supportedUsageFlags" VkSurfaceCapabilitiesKHR Source # 
CanReadField "currentExtent" VkSurfaceCapabilitiesKHR Source # 
CanReadField "currentTransform" VkSurfaceCapabilitiesKHR Source # 
CanReadField "maxImageArrayLayers" VkSurfaceCapabilitiesKHR Source # 
CanReadField "maxImageCount" VkSurfaceCapabilitiesKHR Source # 
CanReadField "maxImageExtent" VkSurfaceCapabilitiesKHR Source # 
CanReadField "minImageCount" VkSurfaceCapabilitiesKHR Source # 
CanReadField "minImageExtent" VkSurfaceCapabilitiesKHR Source # 
CanReadField "supportedCompositeAlpha" VkSurfaceCapabilitiesKHR Source # 
CanReadField "supportedTransforms" VkSurfaceCapabilitiesKHR Source # 
CanReadField "supportedUsageFlags" VkSurfaceCapabilitiesKHR Source # 
HasField "currentExtent" VkSurfaceCapabilitiesKHR Source # 

Associated Types

type FieldType ("currentExtent" :: Symbol) VkSurfaceCapabilitiesKHR :: Type Source #

type FieldOptional ("currentExtent" :: Symbol) VkSurfaceCapabilitiesKHR :: Bool Source #

type FieldOffset ("currentExtent" :: Symbol) VkSurfaceCapabilitiesKHR :: Nat Source #

type FieldIsArray ("currentExtent" :: Symbol) VkSurfaceCapabilitiesKHR :: Bool Source #

HasField "currentTransform" VkSurfaceCapabilitiesKHR Source # 

Associated Types

type FieldType ("currentTransform" :: Symbol) VkSurfaceCapabilitiesKHR :: Type Source #

type FieldOptional ("currentTransform" :: Symbol) VkSurfaceCapabilitiesKHR :: Bool Source #

type FieldOffset ("currentTransform" :: Symbol) VkSurfaceCapabilitiesKHR :: Nat Source #

type FieldIsArray ("currentTransform" :: Symbol) VkSurfaceCapabilitiesKHR :: Bool Source #

HasField "maxImageArrayLayers" VkSurfaceCapabilitiesKHR Source # 

Associated Types

type FieldType ("maxImageArrayLayers" :: Symbol) VkSurfaceCapabilitiesKHR :: Type Source #

type FieldOptional ("maxImageArrayLayers" :: Symbol) VkSurfaceCapabilitiesKHR :: Bool Source #

type FieldOffset ("maxImageArrayLayers" :: Symbol) VkSurfaceCapabilitiesKHR :: Nat Source #

type FieldIsArray ("maxImageArrayLayers" :: Symbol) VkSurfaceCapabilitiesKHR :: Bool Source #

HasField "maxImageCount" VkSurfaceCapabilitiesKHR Source # 

Associated Types

type FieldType ("maxImageCount" :: Symbol) VkSurfaceCapabilitiesKHR :: Type Source #

type FieldOptional ("maxImageCount" :: Symbol) VkSurfaceCapabilitiesKHR :: Bool Source #

type FieldOffset ("maxImageCount" :: Symbol) VkSurfaceCapabilitiesKHR :: Nat Source #

type FieldIsArray ("maxImageCount" :: Symbol) VkSurfaceCapabilitiesKHR :: Bool Source #

HasField "maxImageExtent" VkSurfaceCapabilitiesKHR Source # 

Associated Types

type FieldType ("maxImageExtent" :: Symbol) VkSurfaceCapabilitiesKHR :: Type Source #

type FieldOptional ("maxImageExtent" :: Symbol) VkSurfaceCapabilitiesKHR :: Bool Source #

type FieldOffset ("maxImageExtent" :: Symbol) VkSurfaceCapabilitiesKHR :: Nat Source #

type FieldIsArray ("maxImageExtent" :: Symbol) VkSurfaceCapabilitiesKHR :: Bool Source #

HasField "minImageCount" VkSurfaceCapabilitiesKHR Source # 

Associated Types

type FieldType ("minImageCount" :: Symbol) VkSurfaceCapabilitiesKHR :: Type Source #

type FieldOptional ("minImageCount" :: Symbol) VkSurfaceCapabilitiesKHR :: Bool Source #

type FieldOffset ("minImageCount" :: Symbol) VkSurfaceCapabilitiesKHR :: Nat Source #

type FieldIsArray ("minImageCount" :: Symbol) VkSurfaceCapabilitiesKHR :: Bool Source #

HasField "minImageExtent" VkSurfaceCapabilitiesKHR Source # 

Associated Types

type FieldType ("minImageExtent" :: Symbol) VkSurfaceCapabilitiesKHR :: Type Source #

type FieldOptional ("minImageExtent" :: Symbol) VkSurfaceCapabilitiesKHR :: Bool Source #

type FieldOffset ("minImageExtent" :: Symbol) VkSurfaceCapabilitiesKHR :: Nat Source #

type FieldIsArray ("minImageExtent" :: Symbol) VkSurfaceCapabilitiesKHR :: Bool Source #

HasField "supportedCompositeAlpha" VkSurfaceCapabilitiesKHR Source # 

Associated Types

type FieldType ("supportedCompositeAlpha" :: Symbol) VkSurfaceCapabilitiesKHR :: Type Source #

type FieldOptional ("supportedCompositeAlpha" :: Symbol) VkSurfaceCapabilitiesKHR :: Bool Source #

type FieldOffset ("supportedCompositeAlpha" :: Symbol) VkSurfaceCapabilitiesKHR :: Nat Source #

type FieldIsArray ("supportedCompositeAlpha" :: Symbol) VkSurfaceCapabilitiesKHR :: Bool Source #

HasField "supportedTransforms" VkSurfaceCapabilitiesKHR Source # 

Associated Types

type FieldType ("supportedTransforms" :: Symbol) VkSurfaceCapabilitiesKHR :: Type Source #

type FieldOptional ("supportedTransforms" :: Symbol) VkSurfaceCapabilitiesKHR :: Bool Source #

type FieldOffset ("supportedTransforms" :: Symbol) VkSurfaceCapabilitiesKHR :: Nat Source #

type FieldIsArray ("supportedTransforms" :: Symbol) VkSurfaceCapabilitiesKHR :: Bool Source #

HasField "supportedUsageFlags" VkSurfaceCapabilitiesKHR Source # 

Associated Types

type FieldType ("supportedUsageFlags" :: Symbol) VkSurfaceCapabilitiesKHR :: Type Source #

type FieldOptional ("supportedUsageFlags" :: Symbol) VkSurfaceCapabilitiesKHR :: Bool Source #

type FieldOffset ("supportedUsageFlags" :: Symbol) VkSurfaceCapabilitiesKHR :: Nat Source #

type FieldIsArray ("supportedUsageFlags" :: Symbol) VkSurfaceCapabilitiesKHR :: Bool Source #

type StructFields VkSurfaceCapabilitiesKHR Source # 
type StructFields VkSurfaceCapabilitiesKHR = (:) Symbol "minImageCount" ((:) Symbol "maxImageCount" ((:) Symbol "currentExtent" ((:) Symbol "minImageExtent" ((:) Symbol "maxImageExtent" ((:) Symbol "maxImageArrayLayers" ((:) Symbol "supportedTransforms" ((:) Symbol "currentTransform" ((:) Symbol "supportedCompositeAlpha" ((:) Symbol "supportedUsageFlags" ([] Symbol))))))))))
type CUnionType VkSurfaceCapabilitiesKHR Source # 
type ReturnedOnly VkSurfaceCapabilitiesKHR Source # 
type StructExtends VkSurfaceCapabilitiesKHR Source # 
type FieldType "currentExtent" VkSurfaceCapabilitiesKHR Source # 
type FieldType "currentTransform" VkSurfaceCapabilitiesKHR Source # 
type FieldType "maxImageArrayLayers" VkSurfaceCapabilitiesKHR Source # 
type FieldType "maxImageArrayLayers" VkSurfaceCapabilitiesKHR = Word32
type FieldType "maxImageCount" VkSurfaceCapabilitiesKHR Source # 
type FieldType "maxImageExtent" VkSurfaceCapabilitiesKHR Source # 
type FieldType "minImageCount" VkSurfaceCapabilitiesKHR Source # 
type FieldType "minImageExtent" VkSurfaceCapabilitiesKHR Source # 
type FieldType "supportedCompositeAlpha" VkSurfaceCapabilitiesKHR Source # 
type FieldType "supportedTransforms" VkSurfaceCapabilitiesKHR Source # 
type FieldType "supportedUsageFlags" VkSurfaceCapabilitiesKHR Source # 
type FieldOptional "currentExtent" VkSurfaceCapabilitiesKHR Source # 
type FieldOptional "currentTransform" VkSurfaceCapabilitiesKHR Source # 
type FieldOptional "currentTransform" VkSurfaceCapabilitiesKHR = False
type FieldOptional "maxImageArrayLayers" VkSurfaceCapabilitiesKHR Source # 
type FieldOptional "maxImageArrayLayers" VkSurfaceCapabilitiesKHR = False
type FieldOptional "maxImageCount" VkSurfaceCapabilitiesKHR Source # 
type FieldOptional "maxImageExtent" VkSurfaceCapabilitiesKHR Source # 
type FieldOptional "minImageCount" VkSurfaceCapabilitiesKHR Source # 
type FieldOptional "minImageExtent" VkSurfaceCapabilitiesKHR Source # 
type FieldOptional "supportedCompositeAlpha" VkSurfaceCapabilitiesKHR Source # 
type FieldOptional "supportedCompositeAlpha" VkSurfaceCapabilitiesKHR = True
type FieldOptional "supportedTransforms" VkSurfaceCapabilitiesKHR Source # 
type FieldOptional "supportedTransforms" VkSurfaceCapabilitiesKHR = True
type FieldOptional "supportedUsageFlags" VkSurfaceCapabilitiesKHR Source # 
type FieldOptional "supportedUsageFlags" VkSurfaceCapabilitiesKHR = True
type FieldOffset "currentExtent" VkSurfaceCapabilitiesKHR Source # 
type FieldOffset "currentExtent" VkSurfaceCapabilitiesKHR = 8
type FieldOffset "currentTransform" VkSurfaceCapabilitiesKHR Source # 
type FieldOffset "currentTransform" VkSurfaceCapabilitiesKHR = 40
type FieldOffset "maxImageArrayLayers" VkSurfaceCapabilitiesKHR Source # 
type FieldOffset "maxImageArrayLayers" VkSurfaceCapabilitiesKHR = 32
type FieldOffset "maxImageCount" VkSurfaceCapabilitiesKHR Source # 
type FieldOffset "maxImageCount" VkSurfaceCapabilitiesKHR = 4
type FieldOffset "maxImageExtent" VkSurfaceCapabilitiesKHR Source # 
type FieldOffset "maxImageExtent" VkSurfaceCapabilitiesKHR = 24
type FieldOffset "minImageCount" VkSurfaceCapabilitiesKHR Source # 
type FieldOffset "minImageCount" VkSurfaceCapabilitiesKHR = 0
type FieldOffset "minImageExtent" VkSurfaceCapabilitiesKHR Source # 
type FieldOffset "minImageExtent" VkSurfaceCapabilitiesKHR = 16
type FieldOffset "supportedCompositeAlpha" VkSurfaceCapabilitiesKHR Source # 
type FieldOffset "supportedCompositeAlpha" VkSurfaceCapabilitiesKHR = 44
type FieldOffset "supportedTransforms" VkSurfaceCapabilitiesKHR Source # 
type FieldOffset "supportedTransforms" VkSurfaceCapabilitiesKHR = 36
type FieldOffset "supportedUsageFlags" VkSurfaceCapabilitiesKHR Source # 
type FieldOffset "supportedUsageFlags" VkSurfaceCapabilitiesKHR = 48
type FieldIsArray "currentExtent" VkSurfaceCapabilitiesKHR Source # 
type FieldIsArray "currentTransform" VkSurfaceCapabilitiesKHR Source # 
type FieldIsArray "currentTransform" VkSurfaceCapabilitiesKHR = False
type FieldIsArray "maxImageArrayLayers" VkSurfaceCapabilitiesKHR Source # 
type FieldIsArray "maxImageArrayLayers" VkSurfaceCapabilitiesKHR = False
type FieldIsArray "maxImageCount" VkSurfaceCapabilitiesKHR Source # 
type FieldIsArray "maxImageExtent" VkSurfaceCapabilitiesKHR Source # 
type FieldIsArray "minImageCount" VkSurfaceCapabilitiesKHR Source # 
type FieldIsArray "minImageExtent" VkSurfaceCapabilitiesKHR Source # 
type FieldIsArray "supportedCompositeAlpha" VkSurfaceCapabilitiesKHR Source # 
type FieldIsArray "supportedCompositeAlpha" VkSurfaceCapabilitiesKHR = False
type FieldIsArray "supportedTransforms" VkSurfaceCapabilitiesKHR Source # 
type FieldIsArray "supportedTransforms" VkSurfaceCapabilitiesKHR = False
type FieldIsArray "supportedUsageFlags" VkSurfaceCapabilitiesKHR Source # 
type FieldIsArray "supportedUsageFlags" VkSurfaceCapabilitiesKHR = False

data VkSurfaceFormat2KHR Source #

typedef struct VkSurfaceFormat2KHR {
    VkStructureType sType;
    void* pNext;
    VkSurfaceFormatKHR surfaceFormat;
} VkSurfaceFormat2KHR;

VkSurfaceFormat2KHR registry at www.khronos.org

Instances

Eq VkSurfaceFormat2KHR Source # 
Ord VkSurfaceFormat2KHR Source # 
Show VkSurfaceFormat2KHR Source # 
Storable VkSurfaceFormat2KHR Source # 
VulkanMarshalPrim VkSurfaceFormat2KHR Source # 
VulkanMarshal VkSurfaceFormat2KHR Source # 
CanWriteField "pNext" VkSurfaceFormat2KHR Source # 
CanWriteField "sType" VkSurfaceFormat2KHR Source # 
CanWriteField "surfaceFormat" VkSurfaceFormat2KHR Source # 
CanReadField "pNext" VkSurfaceFormat2KHR Source # 
CanReadField "sType" VkSurfaceFormat2KHR Source # 
CanReadField "surfaceFormat" VkSurfaceFormat2KHR Source # 
HasField "pNext" VkSurfaceFormat2KHR Source # 
HasField "sType" VkSurfaceFormat2KHR Source # 
HasField "surfaceFormat" VkSurfaceFormat2KHR Source # 

Associated Types

type FieldType ("surfaceFormat" :: Symbol) VkSurfaceFormat2KHR :: Type Source #

type FieldOptional ("surfaceFormat" :: Symbol) VkSurfaceFormat2KHR :: Bool Source #

type FieldOffset ("surfaceFormat" :: Symbol) VkSurfaceFormat2KHR :: Nat Source #

type FieldIsArray ("surfaceFormat" :: Symbol) VkSurfaceFormat2KHR :: Bool Source #

type StructFields VkSurfaceFormat2KHR Source # 
type StructFields VkSurfaceFormat2KHR = (:) Symbol "sType" ((:) Symbol "pNext" ((:) Symbol "surfaceFormat" ([] Symbol)))
type CUnionType VkSurfaceFormat2KHR Source # 
type ReturnedOnly VkSurfaceFormat2KHR Source # 
type StructExtends VkSurfaceFormat2KHR Source # 
type FieldType "pNext" VkSurfaceFormat2KHR Source # 
type FieldType "sType" VkSurfaceFormat2KHR Source # 
type FieldType "surfaceFormat" VkSurfaceFormat2KHR Source # 
type FieldOptional "pNext" VkSurfaceFormat2KHR Source # 
type FieldOptional "sType" VkSurfaceFormat2KHR Source # 
type FieldOptional "surfaceFormat" VkSurfaceFormat2KHR Source # 
type FieldOptional "surfaceFormat" VkSurfaceFormat2KHR = False
type FieldOffset "pNext" VkSurfaceFormat2KHR Source # 
type FieldOffset "sType" VkSurfaceFormat2KHR Source # 
type FieldOffset "surfaceFormat" VkSurfaceFormat2KHR Source # 
type FieldOffset "surfaceFormat" VkSurfaceFormat2KHR = 16
type FieldIsArray "pNext" VkSurfaceFormat2KHR Source # 
type FieldIsArray "sType" VkSurfaceFormat2KHR Source # 
type FieldIsArray "surfaceFormat" VkSurfaceFormat2KHR Source # 
type FieldIsArray "surfaceFormat" VkSurfaceFormat2KHR = False

data VkSurfaceFormatKHR Source #

typedef struct VkSurfaceFormatKHR {
    VkFormat                         format;
    VkColorSpaceKHR                  colorSpace;
} VkSurfaceFormatKHR;

VkSurfaceFormatKHR registry at www.khronos.org

Instances

Eq VkSurfaceFormatKHR Source # 
Ord VkSurfaceFormatKHR Source # 
Show VkSurfaceFormatKHR Source # 
Storable VkSurfaceFormatKHR Source # 
VulkanMarshalPrim VkSurfaceFormatKHR Source # 
VulkanMarshal VkSurfaceFormatKHR Source # 
CanWriteField "colorSpace" VkSurfaceFormatKHR Source # 
CanWriteField "format" VkSurfaceFormatKHR Source # 
CanReadField "colorSpace" VkSurfaceFormatKHR Source # 
CanReadField "format" VkSurfaceFormatKHR Source # 
HasField "colorSpace" VkSurfaceFormatKHR Source # 

Associated Types

type FieldType ("colorSpace" :: Symbol) VkSurfaceFormatKHR :: Type Source #

type FieldOptional ("colorSpace" :: Symbol) VkSurfaceFormatKHR :: Bool Source #

type FieldOffset ("colorSpace" :: Symbol) VkSurfaceFormatKHR :: Nat Source #

type FieldIsArray ("colorSpace" :: Symbol) VkSurfaceFormatKHR :: Bool Source #

HasField "format" VkSurfaceFormatKHR Source # 
type StructFields VkSurfaceFormatKHR Source # 
type StructFields VkSurfaceFormatKHR = (:) Symbol "format" ((:) Symbol "colorSpace" ([] Symbol))
type CUnionType VkSurfaceFormatKHR Source # 
type ReturnedOnly VkSurfaceFormatKHR Source # 
type StructExtends VkSurfaceFormatKHR Source # 
type FieldType "colorSpace" VkSurfaceFormatKHR Source # 
type FieldType "format" VkSurfaceFormatKHR Source # 
type FieldOptional "colorSpace" VkSurfaceFormatKHR Source # 
type FieldOptional "format" VkSurfaceFormatKHR Source # 
type FieldOffset "colorSpace" VkSurfaceFormatKHR Source # 
type FieldOffset "colorSpace" VkSurfaceFormatKHR = 4
type FieldOffset "format" VkSurfaceFormatKHR Source # 
type FieldIsArray "colorSpace" VkSurfaceFormatKHR Source # 
type FieldIsArray "format" VkSurfaceFormatKHR Source # 

pattern VK_KHR_SURFACE_SPEC_VERSION :: forall a. (Num a, Eq a) => a Source #

type VK_KHR_SURFACE_EXTENSION_NAME = "VK_KHR_surface" Source #

Orphan instances

VulkanProc "vkDestroySurfaceKHR" Source # 

Associated Types

type VkProcType ("vkDestroySurfaceKHR" :: Symbol) :: * Source #

Methods

vkProcSymbol :: CString Source #

unwrapVkProcPtrUnsafe :: FunPtr (VkProcType "vkDestroySurfaceKHR") -> VkProcType "vkDestroySurfaceKHR" Source #

unwrapVkProcPtrSafe :: FunPtr (VkProcType "vkDestroySurfaceKHR") -> VkProcType "vkDestroySurfaceKHR" Source #

VulkanProc "vkGetPhysicalDeviceSurfaceCapabilitiesKHR" Source # 

Associated Types

type VkProcType ("vkGetPhysicalDeviceSurfaceCapabilitiesKHR" :: Symbol) :: * Source #

Methods

vkProcSymbol :: CString Source #

unwrapVkProcPtrUnsafe :: FunPtr (VkProcType "vkGetPhysicalDeviceSurfaceCapabilitiesKHR") -> VkProcType "vkGetPhysicalDeviceSurfaceCapabilitiesKHR" Source #

unwrapVkProcPtrSafe :: FunPtr (VkProcType "vkGetPhysicalDeviceSurfaceCapabilitiesKHR") -> VkProcType "vkGetPhysicalDeviceSurfaceCapabilitiesKHR" Source #

VulkanProc "vkGetPhysicalDeviceSurfaceFormatsKHR" Source # 

Associated Types

type VkProcType ("vkGetPhysicalDeviceSurfaceFormatsKHR" :: Symbol) :: * Source #

Methods

vkProcSymbol :: CString Source #

unwrapVkProcPtrUnsafe :: FunPtr (VkProcType "vkGetPhysicalDeviceSurfaceFormatsKHR") -> VkProcType "vkGetPhysicalDeviceSurfaceFormatsKHR" Source #

unwrapVkProcPtrSafe :: FunPtr (VkProcType "vkGetPhysicalDeviceSurfaceFormatsKHR") -> VkProcType "vkGetPhysicalDeviceSurfaceFormatsKHR" Source #

VulkanProc "vkGetPhysicalDeviceSurfacePresentModesKHR" Source # 

Associated Types

type VkProcType ("vkGetPhysicalDeviceSurfacePresentModesKHR" :: Symbol) :: * Source #

Methods

vkProcSymbol :: CString Source #

unwrapVkProcPtrUnsafe :: FunPtr (VkProcType "vkGetPhysicalDeviceSurfacePresentModesKHR") -> VkProcType "vkGetPhysicalDeviceSurfacePresentModesKHR" Source #

unwrapVkProcPtrSafe :: FunPtr (VkProcType "vkGetPhysicalDeviceSurfacePresentModesKHR") -> VkProcType "vkGetPhysicalDeviceSurfacePresentModesKHR" Source #

VulkanProc "vkGetPhysicalDeviceSurfaceSupportKHR" Source # 

Associated Types

type VkProcType ("vkGetPhysicalDeviceSurfaceSupportKHR" :: Symbol) :: * Source #

Methods

vkProcSymbol :: CString Source #

unwrapVkProcPtrUnsafe :: FunPtr (VkProcType "vkGetPhysicalDeviceSurfaceSupportKHR") -> VkProcType "vkGetPhysicalDeviceSurfaceSupportKHR" Source #

unwrapVkProcPtrSafe :: FunPtr (VkProcType "vkGetPhysicalDeviceSurfaceSupportKHR") -> VkProcType "vkGetPhysicalDeviceSurfaceSupportKHR" Source #