Class VkAttachmentDescription2KHR

java.lang.Object
org.lwjgl.system.Pointer.Default
org.lwjgl.system.Struct<VkAttachmentDescription2>
org.lwjgl.vulkan.VkAttachmentDescription2
org.lwjgl.vulkan.VkAttachmentDescription2KHR
All Implemented Interfaces:
AutoCloseable, org.lwjgl.system.NativeResource, org.lwjgl.system.Pointer

public class VkAttachmentDescription2KHR extends VkAttachmentDescription2
See VkAttachmentDescription2.

Layout


 struct VkAttachmentDescription2KHR {
     VkStructureType sType;
     void const * pNext;
     VkAttachmentDescriptionFlags flags;
     VkFormat format;
     VkSampleCountFlagBits samples;
     VkAttachmentLoadOp loadOp;
     VkAttachmentStoreOp storeOp;
     VkAttachmentLoadOp stencilLoadOp;
     VkAttachmentStoreOp stencilStoreOp;
     VkImageLayout initialLayout;
     VkImageLayout finalLayout;
 }