Package org.lwjgl.vulkan
Class VkDevice
- java.lang.Object
-
- org.lwjgl.system.Pointer.Default
-
- org.lwjgl.vulkan.DispatchableHandle
-
- org.lwjgl.vulkan.VkDevice
-
- All Implemented Interfaces:
- Pointer
public class VkDevice extends DispatchableHandle
Wraps a Vulkan device dispatchable handle.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.lwjgl.system.Pointer
Pointer.Default
-
-
Field Summary
-
Fields inherited from interface org.lwjgl.system.Pointer
POINTER_SHIFT, POINTER_SIZE
-
-
Constructor Summary
Constructors Constructor and Description VkDevice(long handle, VkPhysicalDevice physicalDevice, VkDeviceCreateInfo ci)
Creates aVkDevice
instance for the specified native handle.
-
Method Summary
-
Methods inherited from class org.lwjgl.vulkan.DispatchableHandle
getCapabilities
-
Methods inherited from class org.lwjgl.system.Pointer.Default
address, equals, hashCode, toString
-
-
-
-
Constructor Detail
-
VkDevice
public VkDevice(long handle, VkPhysicalDevice physicalDevice, VkDeviceCreateInfo ci)
Creates aVkDevice
instance for the specified native handle.- Parameters:
handle
- the nativeVkDevice
handlephysicalDevice
- the physical device used to create theVkDevice
ci
- theVkDeviceCreateInfo
structure used to create theVkDevice
-
-