56 lines
1.3 KiB
Plaintext
56 lines
1.3 KiB
Plaintext
// Copyright (c) 2014-2016 Khronos Group. This work is licensed under a
|
|
// Creative Commons Attribution 4.0 International License; see
|
|
// http://creativecommons.org/licenses/by/4.0/
|
|
|
|
vkGetPhysicalDeviceProperties(3)
|
|
================================
|
|
|
|
Name
|
|
----
|
|
vkGetPhysicalDeviceProperties - Returns properties of a physical device.
|
|
|
|
C Specification
|
|
---------------
|
|
|
|
// refBegin vkGetPhysicalDeviceProperties Returns properties of a physical device.
|
|
|
|
To query general properties of physical devices once enumerated, call:
|
|
|
|
include::../protos/vkGetPhysicalDeviceProperties.txt[]
|
|
|
|
|
|
Parameters
|
|
----------
|
|
|
|
* pname:physicalDevice is the handle to the physical device whose
|
|
properties will be queried.
|
|
* pname:pProperties points to an instance of the
|
|
slink:VkPhysicalDeviceProperties structure, that will be filled with
|
|
returned information.
|
|
|
|
|
|
Description
|
|
-----------
|
|
|
|
include::../validity/protos/vkGetPhysicalDeviceProperties.txt[]
|
|
|
|
|
|
See Also
|
|
--------
|
|
|
|
slink:VkPhysicalDevice, slink:VkPhysicalDeviceProperties
|
|
|
|
|
|
Document Notes
|
|
--------------
|
|
|
|
For more information, see the Vulkan Specification at URL
|
|
|
|
https://www.khronos.org/registry/vulkan/specs/1.0/xhtml/vkspec.html#vkGetPhysicalDeviceProperties
|
|
|
|
This page is extracted from the Vulkan Specification.
|
|
Fixes and changes should be made to the Specification,not directly.
|
|
|
|
include::footer.txt[]
|
|
|