Safe Haskell | None |
---|---|
Language | Haskell2010 |
Synopsis
- pattern VK_STRUCTURE_TYPE_IMPORT_SEMAPHORE_WIN32_HANDLE_INFO_KHR :: VkStructureType
- pattern VK_STRUCTURE_TYPE_EXPORT_SEMAPHORE_WIN32_HANDLE_INFO_KHR :: VkStructureType
- pattern VK_STRUCTURE_TYPE_D3D12_FENCE_SUBMIT_INFO_KHR :: VkStructureType
- pattern VK_STRUCTURE_TYPE_SEMAPHORE_GET_WIN32_HANDLE_INFO_KHR :: VkStructureType
- pattern VK_KHR_EXTERNAL_SEMAPHORE_WIN32_SPEC_VERSION :: Integral a => a
- pattern VK_KHR_EXTERNAL_SEMAPHORE_WIN32_EXTENSION_NAME :: (Eq a, IsString a) => a
- vkGetSemaphoreWin32HandleKHR :: ("device" ::: VkDevice) -> ("pGetWin32HandleInfo" ::: Ptr VkSemaphoreGetWin32HandleInfoKHR) -> ("pHandle" ::: Ptr HANDLE) -> IO VkResult
- vkImportSemaphoreWin32HandleKHR :: ("device" ::: VkDevice) -> ("pImportSemaphoreWin32HandleInfo" ::: Ptr VkImportSemaphoreWin32HandleInfoKHR) -> IO VkResult
- data VkImportSemaphoreWin32HandleInfoKHR = VkImportSemaphoreWin32HandleInfoKHR {}
- data VkExportSemaphoreWin32HandleInfoKHR = VkExportSemaphoreWin32HandleInfoKHR {
- vkSType :: VkStructureType
- vkPNext :: Ptr ()
- vkPAttributes :: Ptr SECURITY_ATTRIBUTES
- vkDwAccess :: DWORD
- vkName :: LPCWSTR
- data VkD3D12FenceSubmitInfoKHR = VkD3D12FenceSubmitInfoKHR {}
- data VkSemaphoreGetWin32HandleInfoKHR = VkSemaphoreGetWin32HandleInfoKHR {}
Documentation
pattern VK_KHR_EXTERNAL_SEMAPHORE_WIN32_SPEC_VERSION :: Integral a => a Source #
pattern VK_KHR_EXTERNAL_SEMAPHORE_WIN32_EXTENSION_NAME :: (Eq a, IsString a) => a Source #
vkGetSemaphoreWin32HandleKHR :: ("device" ::: VkDevice) -> ("pGetWin32HandleInfo" ::: Ptr VkSemaphoreGetWin32HandleInfoKHR) -> ("pHandle" ::: Ptr HANDLE) -> IO VkResult Source #
vkGetSemaphoreWin32HandleKHR - Get a Windows HANDLE for a semaphore
Parameters
device
is the logical device that created the semaphore being exported.
pGetWin32HandleInfo
is a pointer to an instance of theVkSemaphoreGetWin32HandleInfoKHR
structure containing parameters of the export operation.pHandle
will return the Windows handle representing the semaphore state.
Description
For handle types defined as NT handles, the handles returned by
vkGetSemaphoreWin32HandleKHR
are owned by the application. To avoid
leaking resources, the application must release ownership of them
using the CloseHandle
system call when they are no longer needed.
Exporting a Windows handle from a semaphore may have side effects depending on the transference of the specified handle type, as described in Importing Semaphore Payloads.
Valid Usage (Implicit)
device
must be a validVkDevice
handle
pGetWin32HandleInfo
must be a valid pointer to a validVkSemaphoreGetWin32HandleInfoKHR
structurepHandle
must be a valid pointer to aHANDLE
value
Return Codes
[Success]
- VK_SUCCESS
[Failure]
- VK_ERROR_TOO_MANY_OBJECTS
VK_ERROR_OUT_OF_HOST_MEMORY
See Also
vkImportSemaphoreWin32HandleKHR :: ("device" ::: VkDevice) -> ("pImportSemaphoreWin32HandleInfo" ::: Ptr VkImportSemaphoreWin32HandleInfoKHR) -> IO VkResult Source #
vkImportSemaphoreWin32HandleKHR - Import a semaphore from a Windows HANDLE
Parameters
device
is the logical device that created the semaphore.
pImportSemaphoreWin32HandleInfo
points to aVkImportSemaphoreWin32HandleInfoKHR
structure specifying the semaphore and import parameters.
Description
Importing a semaphore payload from Windows handles does not transfer
ownership of the handle to the Vulkan implementation. For handle types
defined as NT handles, the application must release ownership using
the CloseHandle
system call when the handle is no longer needed.
Applications can import the same semaphore payload into multiple instances of Vulkan, into the same instance from which it was exported, and multiple times into a given Vulkan instance.
Valid Usage (Implicit)
device
must be a validVkDevice
handle
pImportSemaphoreWin32HandleInfo
must be a valid pointer to a validVkImportSemaphoreWin32HandleInfoKHR
structure
Return Codes
[Success]
- VK_SUCCESS
[Failure]
- VK_ERROR_OUT_OF_HOST_MEMORY
VK_ERROR_INVALID_EXTERNAL_HANDLE
See Also
data VkImportSemaphoreWin32HandleInfoKHR Source #
VkImportSemaphoreWin32HandleInfoKHR - Structure specifying Windows handle to import to a semaphore
Description
The handle types supported by handleType
are:
Handle Type | Transference | Permanence Supported |
---|---|---|
VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_OPAQUE_WIN32_BIT | Reference | Temporary,Permanent |
VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_OPAQUE_WIN32_KMT_BIT | Reference | Temporary,Permanent |
VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_D3D12_FENCE_BIT | Reference | Temporary,Permanent |
Handle Types Supported by VkImportSemaphoreWin32HandleInfoKHR
Valid Usage
handleType
must be a value included in the Handle Types Supported by VkImportSemaphoreWin32HandleInfoKHR table.
- If
handleType
is notVK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_OPAQUE_WIN32_BIT
orVK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_D3D12_FENCE_BIT
,name
must beNULL
. - If
handleType
is not0
andhandle
isNULL
,name
must name a valid synchronization primitive of the type specified byhandleType
. - If
handleType
is not0
andname
isNULL
,handle
must be a valid handle of the type specified byhandleType
. - If
handle
is notNULL
,name
must beNULL
. - If
handle
is notNULL
, it must obey any requirements listed forhandleType
in external semaphore handle types compatibility. - If
name
is notNULL
, it must obey any requirements listed forhandleType
in external semaphore handle types compatibility.
Valid Usage (Implicit)
sType
must beVK_STRUCTURE_TYPE_IMPORT_SEMAPHORE_WIN32_HANDLE_INFO_KHR
pNext
must beNULL
semaphore
must be a validVkSemaphore
handleflags
must be a valid combination ofVkSemaphoreImportFlagBits
values- If
handleType
is not0
,handleType
must be a validVkExternalSemaphoreHandleTypeFlagBits
value
Host Synchronization
- Host access to
semaphore
must be externally synchronized
See Also
VkExternalSemaphoreHandleTypeFlagBits
,
VkSemaphore
,
VkSemaphoreImportFlags
,
VkStructureType
,
vkImportSemaphoreWin32HandleKHR
VkImportSemaphoreWin32HandleInfoKHR | |
|
Instances
data VkExportSemaphoreWin32HandleInfoKHR Source #
VkExportSemaphoreWin32HandleInfoKHR - Structure specifying additional attributes of Windows handles exported from a semaphore
Description
If this structure is not present, or if pAttributes
is set to NULL
,
default security descriptor values will be used, and child processes
created by the application will not inherit the handle, as described in
the MSDN documentation for “Synchronization Object Security and Access
Rights”1. Further, if the structure is not present, the access rights
will be
DXGI_SHARED_RESOURCE_READ
| DXGI_SHARED_RESOURCE_WRITE
for handles of the following types:
VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_OPAQUE_WIN32_BIT
And
GENERIC_ALL
for handles of the following types:
VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_D3D12_FENCE_BIT
Valid Usage
- If
VkExportSemaphoreCreateInfo
::handleTypes
does not includeVK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_OPAQUE_WIN32_BIT
orVK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_D3D12_FENCE_BIT
,VkExportSemaphoreWin32HandleInfoKHR
must not be in thepNext
chain ofVkSemaphoreCreateInfo
.
Valid Usage (Implicit)
sType
must beVK_STRUCTURE_TYPE_EXPORT_SEMAPHORE_WIN32_HANDLE_INFO_KHR
- If
pAttributes
is notNULL
,pAttributes
must be a valid pointer to a validSECURITY_ATTRIBUTES
value
See Also
VkExportSemaphoreWin32HandleInfoKHR | |
|
Instances
data VkD3D12FenceSubmitInfoKHR Source #
VkD3D12FenceSubmitInfoKHR - Structure specifying values for Direct3D 12 fence-backed semaphores
Description
If the semaphore in
VkSubmitInfo
::pWaitSemaphores
or
VkSubmitInfo
::pSignalSemaphores
corresponding to an entry in pWaitSemaphoreValues
or
pSignalSemaphoreValues
respectively does not currently have a
payload
referring to a Direct3D 12 fence, the implementation must ignore the
value in the pWaitSemaphoreValues
or pSignalSemaphoreValues
entry.
Valid Usage
waitSemaphoreValuesCount
must be the same value asVkSubmitInfo
::waitSemaphoreCount
, whereVkSubmitInfo
is in thepNext
chain of thisVkD3D12FenceSubmitInfoKHR
structure.
signalSemaphoreValuesCount
must be the same value asVkSubmitInfo
::signalSemaphoreCount
, whereVkSubmitInfo
is in thepNext
chain of thisVkD3D12FenceSubmitInfoKHR
structure.
Valid Usage (Implicit)
sType
must beVK_STRUCTURE_TYPE_D3D12_FENCE_SUBMIT_INFO_KHR
- If
waitSemaphoreValuesCount
is not0
, andpWaitSemaphoreValues
is notNULL
,pWaitSemaphoreValues
must be a valid pointer to an array ofwaitSemaphoreValuesCount
uint64_t
values - If
signalSemaphoreValuesCount
is not0
, andpSignalSemaphoreValues
is notNULL
,pSignalSemaphoreValues
must be a valid pointer to an array ofsignalSemaphoreValuesCount
uint64_t
values
See Also
VkD3D12FenceSubmitInfoKHR | |
|
Instances
Eq VkD3D12FenceSubmitInfoKHR Source # | |
Show VkD3D12FenceSubmitInfoKHR Source # | |
showsPrec :: Int -> VkD3D12FenceSubmitInfoKHR -> ShowS # show :: VkD3D12FenceSubmitInfoKHR -> String # showList :: [VkD3D12FenceSubmitInfoKHR] -> ShowS # | |
Storable VkD3D12FenceSubmitInfoKHR Source # | |
sizeOf :: VkD3D12FenceSubmitInfoKHR -> Int # alignment :: VkD3D12FenceSubmitInfoKHR -> Int # peekElemOff :: Ptr VkD3D12FenceSubmitInfoKHR -> Int -> IO VkD3D12FenceSubmitInfoKHR # pokeElemOff :: Ptr VkD3D12FenceSubmitInfoKHR -> Int -> VkD3D12FenceSubmitInfoKHR -> IO () # peekByteOff :: Ptr b -> Int -> IO VkD3D12FenceSubmitInfoKHR # pokeByteOff :: Ptr b -> Int -> VkD3D12FenceSubmitInfoKHR -> IO () # peek :: Ptr VkD3D12FenceSubmitInfoKHR -> IO VkD3D12FenceSubmitInfoKHR # poke :: Ptr VkD3D12FenceSubmitInfoKHR -> VkD3D12FenceSubmitInfoKHR -> IO () # |
data VkSemaphoreGetWin32HandleInfoKHR Source #
VkSemaphoreGetWin32HandleInfoKHR - Structure describing a Win32 handle semaphore export operation
Description
The properties of the handle returned depend on the value of
handleType
. See
VkExternalSemaphoreHandleTypeFlagBits
for a description of the properties of the defined external semaphore
handle types.
Valid Usage
handleType
must have been included inVkExportSemaphoreCreateInfo
::handleTypes
when thesemaphore
’s current payload was created.
- If
handleType
is defined as an NT handle,vkGetSemaphoreWin32HandleKHR
must be called no more than once for each valid unique combination ofsemaphore
andhandleType
. semaphore
must not currently have its payload replaced by an imported payload as described below in Importing Semaphore Payloads unless that imported payload’s handle type was included inVkExternalSemaphoreProperties
::exportFromImportedHandleTypes
forhandleType
.- If
handleType
refers to a handle type with copy payload transference semantics, as defined below in Importing Semaphore Payloads, there must be no queue waiting onsemaphore
. - If
handleType
refers to a handle type with copy payload transference semantics,semaphore
must be signaled, or have an associated semaphore signal operation pending execution. handleType
must be defined as an NT handle or a global share handle.
Valid Usage (Implicit)
sType
must beVK_STRUCTURE_TYPE_SEMAPHORE_GET_WIN32_HANDLE_INFO_KHR
pNext
must beNULL
semaphore
must be a validVkSemaphore
handlehandleType
must be a validVkExternalSemaphoreHandleTypeFlagBits
value
See Also
VkExternalSemaphoreHandleTypeFlagBits
,
VkSemaphore
,
VkStructureType
,
vkGetSemaphoreWin32HandleKHR
VkSemaphoreGetWin32HandleInfoKHR | |
|