49 lines
1.3 KiB
Plaintext
49 lines
1.3 KiB
Plaintext
|
vkEnumerateDeviceLayerProperties(3)
|
||
|
=====================================
|
||
|
|
||
|
Name
|
||
|
----
|
||
|
vkEnumerateDeviceLayerProperties - Returns properties of available physical device layers.
|
||
|
|
||
|
C Specification
|
||
|
---------------
|
||
|
|
||
|
include::../protos/vkEnumerateDeviceLayerProperties.txt[]
|
||
|
|
||
|
Parameters
|
||
|
----------
|
||
|
|
||
|
pname:physicalDevice::
|
||
|
Physical device to query.
|
||
|
|
||
|
pname:pPropertyCount::
|
||
|
Count indicating number of sname:VkLayerProperties pointed to by
|
||
|
pname:pProperties.
|
||
|
|
||
|
pname:pProperties::
|
||
|
Pointer to an array of sname:VkLayerProperties.
|
||
|
|
||
|
Description
|
||
|
-----------
|
||
|
|
||
|
fname:vkEnumerateDeviceLayerProperties retrieves properties for layers on a
|
||
|
physical device whose handle is given in pname:physicalDevice.
|
||
|
pname:pPropertyCount must be a valid pointer to an integer set to the size
|
||
|
of the slink:VkLayerProperties array pointed to by pname:pProperties.
|
||
|
pname:pProperties must be code:NULL or a pointer to an array of
|
||
|
slink:VkLayerProperties to be filled out. If code:NULL,
|
||
|
fname:vkEnumerateDeviceLayerProperties will update pname:pPropertyCount with
|
||
|
the number of layers found. The definition of slink:VkLayerProperties is as
|
||
|
follows:
|
||
|
|
||
|
include::../structs/VkLayerProperties.txt[]
|
||
|
|
||
|
include::../validity/protos/vkEnumerateDeviceLayerProperties.txt[]
|
||
|
|
||
|
See Also
|
||
|
--------
|
||
|
|
||
|
flink:vkEnumerateDeviceLayerProperties, flink:vkCreateDevice
|
||
|
|
||
|
include::footer.txt[]
|