Safe Haskell | None |
---|---|
Language | Haskell2010 |
Synopsis
- getPhysicalDeviceToolPropertiesEXT :: PhysicalDevice -> IO (Result, "toolProperties" ::: Vector PhysicalDeviceToolPropertiesEXT)
- data PhysicalDeviceToolPropertiesEXT = PhysicalDeviceToolPropertiesEXT {}
- newtype ToolPurposeFlagBitsEXT where
- ToolPurposeFlagBitsEXT Flags
- pattern TOOL_PURPOSE_VALIDATION_BIT_EXT :: ToolPurposeFlagBitsEXT
- pattern TOOL_PURPOSE_PROFILING_BIT_EXT :: ToolPurposeFlagBitsEXT
- pattern TOOL_PURPOSE_TRACING_BIT_EXT :: ToolPurposeFlagBitsEXT
- pattern TOOL_PURPOSE_ADDITIONAL_FEATURES_BIT_EXT :: ToolPurposeFlagBitsEXT
- pattern TOOL_PURPOSE_MODIFYING_FEATURES_BIT_EXT :: ToolPurposeFlagBitsEXT
- pattern TOOL_PURPOSE_DEBUG_MARKERS_BIT_EXT :: ToolPurposeFlagBitsEXT
- pattern TOOL_PURPOSE_DEBUG_REPORTING_BIT_EXT :: ToolPurposeFlagBitsEXT
- type ToolPurposeFlagsEXT = ToolPurposeFlagBitsEXT
- type EXT_TOOLING_INFO_SPEC_VERSION = 1
- pattern EXT_TOOLING_INFO_SPEC_VERSION :: forall a. Integral a => a
- type EXT_TOOLING_INFO_EXTENSION_NAME = "VK_EXT_tooling_info"
- pattern EXT_TOOLING_INFO_EXTENSION_NAME :: forall a. (Eq a, IsString a) => a
Documentation
getPhysicalDeviceToolPropertiesEXT :: PhysicalDevice -> IO (Result, "toolProperties" ::: Vector PhysicalDeviceToolPropertiesEXT) Source #
vkGetPhysicalDeviceToolPropertiesEXT - Reports properties of tools active on the specified physical device
Parameters
PhysicalDevice
is the handle to the physical device to query for active tools.
pToolCount
is a pointer to an integer describing the number of tools active onPhysicalDevice
.pToolProperties
is eitherNULL
or a pointer to an array ofPhysicalDeviceToolPropertiesEXT
structures.
Description
If pToolProperties
is NULL
, then the number of tools currently
active on PhysicalDevice
is returned in
pToolCount
. Otherwise, pToolCount
must point to a variable set by
the user to the number of elements in the pToolProperties
array, and
on return the variable is overwritten with the number of structures
actually written to pToolProperties
. If pToolCount
is less than the
number of currently active tools, at most pToolCount
structures will
be written.
The count and properties of active tools may change in response to events outside the scope of the specification. An application should assume these properties might change at any given time.
Valid Usage (Implicit)
PhysicalDevice
must be a validPhysicalDevice
handle
pToolCount
must be a valid pointer to auint32_t
value- If the value referenced by
pToolCount
is not0
, andpToolProperties
is notNULL
,pToolProperties
must be a valid pointer to an array ofpToolCount
PhysicalDeviceToolPropertiesEXT
structures
Return Codes
See Also
data PhysicalDeviceToolPropertiesEXT Source #
VkPhysicalDeviceToolPropertiesEXT - Structure providing information about an active tool
Valid Usage (Implicit)
See Also
StructureType
,
ToolPurposeFlagsEXT
, getPhysicalDeviceToolPropertiesEXT
PhysicalDeviceToolPropertiesEXT | |
|
Instances
newtype ToolPurposeFlagBitsEXT Source #
VkToolPurposeFlagBitsEXT - Bitmask specifying the purposes of an active tool
See Also
Instances
type EXT_TOOLING_INFO_SPEC_VERSION = 1 Source #
pattern EXT_TOOLING_INFO_SPEC_VERSION :: forall a. Integral a => a Source #
type EXT_TOOLING_INFO_EXTENSION_NAME = "VK_EXT_tooling_info" Source #
pattern EXT_TOOLING_INFO_EXTENSION_NAME :: forall a. (Eq a, IsString a) => a Source #