Click or drag to resize
Ab4d.SharpEngine logo

PhysicalDeviceDetails Class

PhysicalDeviceDetails class provides information about a PhysicalDevice.
Inheritance Hierarchy
SystemObject
  Ab4d.SharpEngine.VulkanPhysicalDeviceDetails

Namespace: Ab4d.SharpEngine.Vulkan
Assembly: Ab4d.SharpEngine (in Ab4d.SharpEngine.dll) Version: 3.0.9208+3b2441d6a11f923f2600f40f4296bdc3d8b46035
Syntax
C#
public class PhysicalDeviceDetails : IDisposable

The PhysicalDeviceDetails type exposes the following members.

Constructors
 NameDescription
Public methodPhysicalDeviceDetails Constructor
Top
Properties
 NameDescription
Public propertyAllDeviceExtensionNames Gets an array of all extensions that are supported by this device.
Public propertyAreLargePointsSupported Returns true when the Vulkan point rasterizer supports large points (points with size bigger than 1).
Public propertyDeviceApiVersion Gets the Vulkan API version that is supported by the device.
Public propertyDeviceLUID Device LUID as ulong value.
Public propertyDeviceName Gets the name of the device.
Public propertyDeviceProperties Gets the device properties
Public propertyDeviceUUID Device UUID as byte array.
Public propertyIsDeviceApiVersion_1_1 Returns true if Device API version is 1.1 or higher.
Public propertyIsDeviceLocalHostVisibleMemoryTypeAvailable True when there is a DeviceLocal and also HostVisible memory.
Public propertyIsDeviceLUIDValid True when the DeviceLUID has a valid LUID value. When false, then DeviceLUID cannot be read for this physical device.
Public propertyIsDeviceUUIDValid True when the DeviceUUID has a valid UUID value. When false, then DeviceUUID cannot be read for this physical device.
Public propertyIsHostCachedMemoryTypeAvailable True when host cached memory type is available.
Public propertyIsLazilyAllocatedMemoryTypeAvailable True when lazily allocated memory type is available.
Public propertyIsLineRasterizationExtensionSupported True if line rasterization extension is supported by this device.
Public propertyIsMobilePlatform Gets true when operating system is Android or iOS.
Public propertyIsShaderDebugPrintfExtensionSupported True if ShaderDebugPrintf extension is supported by this device.
Public propertyIsUnifiedMemory True when CPU and GPU share the same memory (all memory types have DeviceLocal or LazilyAllocated flag).
Public propertyMaxImageDimension Gets the largest image dimension (width or height) that is guaranteed to be supported by the device.
Public propertyMemoryProperties Gets the memory properties of the device.
Public propertyMemoryTypes Gets the supported memory types.
Public propertyPhysicalDeviceLimitsEx PhysicalDeviceLimitsEx defines the properties from PhysicalDeviceLimits struct that are defined as arrays and cannot be read directly because fixed arrays in structs are used.
Public propertyPossibleFeatures Gets PhysicalDeviceFeatures struct with features that are possible on the specified physical device. To get actually enabled features see the EnabledFeatures.
Public propertyPossibleLineRasterizationFeatures Gets line rasterization features that are supported by the device.
Top
Methods
 NameDescription
Public methodDispose Dispose
Public methodFindExactMemoryType Returns the memory type index for the specified type filter and flags. When memory type is not found then -1 is returned.
Public methodFindMemoryTypeIndex Returns index of the specified memory type index from the MemoryTypes array. When requireExactMemoryType is false (by default) and when the exact memory type is not found, then another search is done without a memory type without HostCached and LazilyAllocated types. When throwExceptionWhenNotFound is true (by default), then an exception is thrown when the specified memory type is not found. When throwExceptionWhenNotFound is false, then -1 is returned when the memory type is not found.
Public methodGetFormatProperties Returns the properties of the specified format.
Public methodGetMaxSupportedMultiSamplingCount Gets the max multisampling count that is supported by the device.
Public methodIsNonCoherentMemoryType Returns true when the specified memory type is not host coherent and we need to manually flush the memory.
Top
Fields
 NameDescription
Public fieldPhysicalDevice 
Public fieldVulkanInstance 
Top
See Also