Package org.lwjgl.vulkan
Class VkCommandBuffer
- java.lang.Object
-
- org.lwjgl.system.Pointer.Default
-
- org.lwjgl.vulkan.VkCommandBuffer
-
- All Implemented Interfaces:
org.lwjgl.system.Pointer
public class VkCommandBuffer extends org.lwjgl.system.Pointer.Default
Wraps a Vulkan command buffer handle.
-
-
Constructor Summary
Constructors Constructor Description VkCommandBuffer(long handle, VkDevice device)
Creates aVkCommandBuffer
using the specified native handle and device.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description VKCapabilitiesDevice
getCapabilities()
Returns theVKCapabilitiesInstance
instance associated with this dispatchable handle.VkDevice
getDevice()
Returns the device on which thisVkCommandBuffer
was created.
-
-
-
Constructor Detail
-
VkCommandBuffer
public VkCommandBuffer(long handle, VkDevice device)
Creates aVkCommandBuffer
using the specified native handle and device.- Parameters:
handle
- the nativeVkCommandBuffer
handledevice
- the device on which the command buffer was created
-
-
Method Detail
-
getDevice
public VkDevice getDevice()
Returns the device on which thisVkCommandBuffer
was created.
-
getCapabilities
public VKCapabilitiesDevice getCapabilities()
Returns theVKCapabilitiesInstance
instance associated with this dispatchable handle.
-
-