Class VkAttachmentDescription
- All Implemented Interfaces:
AutoCloseable,org.lwjgl.system.NativeResource,org.lwjgl.system.Pointer
Description
If the attachment uses a color format, then loadOp and storeOp are used, and stencilLoadOp and stencilStoreOp are ignored. If the format has depth and/or stencil components, loadOp and storeOp apply only to the depth data, while stencilLoadOp and stencilStoreOp define how the stencil data is handled. loadOp and stencilLoadOp define the load operations for the attachment. storeOp and stencilStoreOp define the store operations for the attachment. If an attachment is not used by any subpass, loadOp, storeOp, stencilStoreOp, and stencilLoadOp will be ignored for that attachment, and no load or store ops will be performed. However, any transition specified by initialLayout and finalLayout will still be executed.
If flags includes ATTACHMENT_DESCRIPTION_MAY_ALIAS_BIT, then the attachment is treated as if it shares physical memory with another attachment in the same render pass. This information limits the ability of the implementation to reorder certain operations (like layout transitions and the loadOp) such that it is not improperly reordered against other uses of the same physical memory via a different attachment. This is described in more detail below.
If a render pass uses multiple attachments that alias the same device memory, those attachments must each include the ATTACHMENT_DESCRIPTION_MAY_ALIAS_BIT bit in their attachment description flags. Attachments aliasing the same memory occurs in multiple ways:
- Multiple attachments being assigned the same image view as part of framebuffer creation.
- Attachments using distinct image views that correspond to the same image subresource of an image.
- Attachments using views of distinct image subresources which are bound to overlapping memory ranges.
Note
Render passes must include subpass dependencies (either directly or via a subpass dependency chain) between any two subpasses that operate on the same attachment or aliasing attachments and those subpass dependencies must include execution and memory dependencies separating uses of the aliases, if at least one of those subpasses writes to one of the aliases. These dependencies must not include the DEPENDENCY_BY_REGION_BIT if the aliases are views of distinct image subresources which overlap in memory.
Multiple attachments that alias the same memory must not be used in a single subpass. A given attachment index must not be used multiple times in a single subpass, with one exception: two subpass attachments can use the same attachment index if at least one use is as an input attachment and neither use is as a resolve or preserve attachment. In other words, the same view can be used simultaneously as an input and color or depth/stencil attachment, but must not be used as multiple color or depth/stencil attachments nor as resolve or preserve attachments.
If a set of attachments alias each other, then all except the first to be used in the render pass must use an initialLayout of IMAGE_LAYOUT_UNDEFINED, since the earlier uses of the other aliases make their contents undefined. Once an alias has been used and a different alias has been used after it, the first alias must not be used in any later subpasses. However, an application can assign the same image view to multiple aliasing attachment indices, which allows that image view to be used multiple times even if other aliases are used in between.
Note
Once an attachment needs the ATTACHMENT_DESCRIPTION_MAY_ALIAS_BIT bit, there should be no additional cost of introducing additional aliases, and using these additional aliases may allow more efficient clearing of the attachments on multiple uses via ATTACHMENT_LOAD_OP_CLEAR.
Valid Usage
- If
formatincludes a color or depth component andloadOpisATTACHMENT_LOAD_OP_LOAD, theninitialLayoutmust not beIMAGE_LAYOUT_UNDEFINED finalLayoutmust not beIMAGE_LAYOUT_UNDEFINEDorIMAGE_LAYOUT_PREINITIALIZED- If
formatis a color format,initialLayoutmust not beIMAGE_LAYOUT_DEPTH_STENCIL_ATTACHMENT_OPTIMALorIMAGE_LAYOUT_DEPTH_STENCIL_READ_ONLY_OPTIMAL - If
formatis a depth/stencil format,initialLayoutmust not beIMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL - If
formatis a color format,finalLayoutmust not beIMAGE_LAYOUT_DEPTH_STENCIL_ATTACHMENT_OPTIMALorIMAGE_LAYOUT_DEPTH_STENCIL_READ_ONLY_OPTIMAL - If
formatis a depth/stencil format,finalLayoutmust not beIMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL - If
formatis a color format,initialLayoutmust not beIMAGE_LAYOUT_DEPTH_ATTACHMENT_STENCIL_READ_ONLY_OPTIMALorIMAGE_LAYOUT_DEPTH_READ_ONLY_STENCIL_ATTACHMENT_OPTIMAL - If
formatis a color format,finalLayoutmust not beIMAGE_LAYOUT_DEPTH_ATTACHMENT_STENCIL_READ_ONLY_OPTIMALorIMAGE_LAYOUT_DEPTH_READ_ONLY_STENCIL_ATTACHMENT_OPTIMAL - If the
separateDepthStencilLayoutsfeature is not enabled,initialLayoutmust not beIMAGE_LAYOUT_DEPTH_ATTACHMENT_OPTIMAL,IMAGE_LAYOUT_DEPTH_READ_ONLY_OPTIMAL,IMAGE_LAYOUT_STENCIL_ATTACHMENT_OPTIMAL, orIMAGE_LAYOUT_STENCIL_READ_ONLY_OPTIMAL, - If the
separateDepthStencilLayoutsfeature is not enabled,finalLayoutmust not beIMAGE_LAYOUT_DEPTH_ATTACHMENT_OPTIMAL,IMAGE_LAYOUT_DEPTH_READ_ONLY_OPTIMAL,IMAGE_LAYOUT_STENCIL_ATTACHMENT_OPTIMAL, orIMAGE_LAYOUT_STENCIL_READ_ONLY_OPTIMAL, - If
formatis a color format,initialLayoutmust not beIMAGE_LAYOUT_DEPTH_ATTACHMENT_OPTIMAL,IMAGE_LAYOUT_DEPTH_READ_ONLY_OPTIMAL,IMAGE_LAYOUT_STENCIL_ATTACHMENT_OPTIMAL, orIMAGE_LAYOUT_STENCIL_READ_ONLY_OPTIMAL - If
formatis a color format,finalLayoutmust not beIMAGE_LAYOUT_DEPTH_ATTACHMENT_OPTIMAL,IMAGE_LAYOUT_DEPTH_READ_ONLY_OPTIMAL,IMAGE_LAYOUT_STENCIL_ATTACHMENT_OPTIMAL, orIMAGE_LAYOUT_STENCIL_READ_ONLY_OPTIMAL - If
formatis a depth/stencil format which includes both depth and stencil components,initialLayoutmust not beIMAGE_LAYOUT_STENCIL_ATTACHMENT_OPTIMALorIMAGE_LAYOUT_STENCIL_READ_ONLY_OPTIMAL - If
formatis a depth/stencil format which includes both depth and stencil components,finalLayoutmust not beIMAGE_LAYOUT_STENCIL_ATTACHMENT_OPTIMALorIMAGE_LAYOUT_STENCIL_READ_ONLY_OPTIMAL - If
formatis a depth/stencil format which includes only the depth component,initialLayoutmust not beIMAGE_LAYOUT_STENCIL_ATTACHMENT_OPTIMALorIMAGE_LAYOUT_STENCIL_READ_ONLY_OPTIMAL - If
formatis a depth/stencil format which includes only the depth component,finalLayoutmust not beIMAGE_LAYOUT_STENCIL_ATTACHMENT_OPTIMALorIMAGE_LAYOUT_STENCIL_READ_ONLY_OPTIMAL - If the
synchronization2feature is not enabled,initialLayoutmust not beIMAGE_LAYOUT_ATTACHMENT_OPTIMAL_KHRorIMAGE_LAYOUT_READ_ONLY_OPTIMAL_KHR - If the
synchronization2feature is not enabled,finalLayoutmust not beIMAGE_LAYOUT_ATTACHMENT_OPTIMAL_KHRorIMAGE_LAYOUT_READ_ONLY_OPTIMAL_KHR - If the
attachmentFeedbackLoopLayoutfeature is not enabled,initialLayoutmust not beIMAGE_LAYOUT_ATTACHMENT_FEEDBACK_LOOP_OPTIMAL_EXT - If the
attachmentFeedbackLoopLayoutfeature is not enabled,finalLayoutmust not beIMAGE_LAYOUT_ATTACHMENT_FEEDBACK_LOOP_OPTIMAL_EXT samplesmust be a validVkSampleCountFlagBitsvalue that is set inimageCreateSampleCounts(as defined in Image Creation Limits) for the givenformat- If the
dynamicRenderingLocalReadfeature is not enabled,initialLayoutmust not beIMAGE_LAYOUT_RENDERING_LOCAL_READ - If the
dynamicRenderingLocalReadfeature is not enabled,finalLayoutmust not beIMAGE_LAYOUT_RENDERING_LOCAL_READ formatmust not be VK_FORMAT_UNDEFINED- If
formatincludes a stencil component andstencilLoadOpisATTACHMENT_LOAD_OP_LOAD, theninitialLayoutmust not beIMAGE_LAYOUT_UNDEFINED - If
formatis a depth/stencil format which includes only the stencil component,initialLayoutmust not beIMAGE_LAYOUT_DEPTH_ATTACHMENT_OPTIMALorIMAGE_LAYOUT_DEPTH_READ_ONLY_OPTIMAL - If
formatis a depth/stencil format which includes only the stencil component,finalLayoutmust not beIMAGE_LAYOUT_DEPTH_ATTACHMENT_OPTIMALorIMAGE_LAYOUT_DEPTH_READ_ONLY_OPTIMAL - If
formatis a depth/stencil format which includes both depth and stencil components,initialLayoutmust not beIMAGE_LAYOUT_DEPTH_ATTACHMENT_OPTIMALorIMAGE_LAYOUT_DEPTH_READ_ONLY_OPTIMAL - If
formatis a depth/stencil format which includes both depth and stencil components,finalLayoutmust not beIMAGE_LAYOUT_DEPTH_ATTACHMENT_OPTIMALorIMAGE_LAYOUT_DEPTH_READ_ONLY_OPTIMAL
Valid Usage (Implicit)
flagsmust be a valid combination ofVkAttachmentDescriptionFlagBitsvaluesformatmust be a validVkFormatvaluesamplesmust be a validVkSampleCountFlagBitsvalueloadOpmust be a validVkAttachmentLoadOpvaluestoreOpmust be a validVkAttachmentStoreOpvaluestencilLoadOpmust be a validVkAttachmentLoadOpvaluestencilStoreOpmust be a validVkAttachmentStoreOpvalueinitialLayoutmust be a validVkImageLayoutvaluefinalLayoutmust be a validVkImageLayoutvalue
See Also
Layout
struct VkAttachmentDescription {
VkAttachmentDescriptionFlags flags();
VkFormat format();
VkSampleCountFlagBits samples();
VkAttachmentLoadOp loadOp();
VkAttachmentStoreOp storeOp();
VkAttachmentLoadOp stencilLoadOp();
VkAttachmentStoreOp stencilStoreOp();
VkImageLayout initialLayout();
VkImageLayout finalLayout();
}-
Nested Class Summary
Nested ClassesNested classes/interfaces inherited from class org.lwjgl.system.Struct
org.lwjgl.system.Struct.StructValidationNested classes/interfaces inherited from interface org.lwjgl.system.Pointer
org.lwjgl.system.Pointer.Default -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final intThe struct alignment in bytes.static final intThe struct member offsets.static final intThe struct member offsets.static final intThe struct member offsets.static final intThe struct member offsets.static final intThe struct member offsets.static final intThe struct member offsets.static final intThe struct size in bytes.static final intThe struct member offsets.static final intThe struct member offsets.static final intThe struct member offsets.Fields inherited from interface org.lwjgl.system.Pointer
BITS32, BITS64, CLONG_SHIFT, CLONG_SIZE, POINTER_SHIFT, POINTER_SIZE -
Constructor Summary
ConstructorsConstructorDescriptionVkAttachmentDescription(ByteBuffer container) Creates aVkAttachmentDescriptioninstance at the current position of the specifiedByteBuffercontainer. -
Method Summary
Modifier and TypeMethodDescriptionstatic VkAttachmentDescriptioncalloc()Returns a newVkAttachmentDescriptioninstance allocated withmemCalloc.calloc(int capacity) Returns a newVkAttachmentDescription.Bufferinstance allocated withmemCalloc.calloc(int capacity, org.lwjgl.system.MemoryStack stack) Returns a newVkAttachmentDescription.Bufferinstance allocated on the specifiedMemoryStackand initializes all its bits to zero.static VkAttachmentDescriptioncalloc(org.lwjgl.system.MemoryStack stack) Returns a newVkAttachmentDescriptioninstance allocated on the specifiedMemoryStackand initializes all its bits to zero.static VkAttachmentDescriptionDeprecated.callocStack(int capacity) Deprecated.callocStack(int capacity, org.lwjgl.system.MemoryStack stack) Deprecated.static VkAttachmentDescriptioncallocStack(org.lwjgl.system.MemoryStack stack) Deprecated.static VkAttachmentDescriptioncreate()Returns a newVkAttachmentDescriptioninstance allocated withBufferUtils.create(int capacity) Returns a newVkAttachmentDescription.Bufferinstance allocated withBufferUtils.static VkAttachmentDescriptioncreate(long address) Returns a newVkAttachmentDescriptioninstance for the specified memory address.create(long address, int capacity) Create aVkAttachmentDescription.Bufferinstance at the specified memory.static @Nullable VkAttachmentDescriptioncreateSafe(long address) static @Nullable VkAttachmentDescription.BuffercreateSafe(long address, int capacity) intthe layout the attachment image subresource will be transitioned to when a render pass instance ends.finalLayout(int value) Sets the specified value to thefinalLayout()field.intflags()a bitmask ofVkAttachmentDescriptionFlagBitsspecifying additional properties of the attachment.flags(int value) Sets the specified value to theflags()field.intformat()aVkFormatvalue specifying the format of the image view that will be used for the attachment.format(int value) Sets the specified value to theformat()field.intthe layout the attachment image subresource will be in when a render pass instance begins.initialLayout(int value) Sets the specified value to theinitialLayout()field.intloadOp()aVkAttachmentLoadOpvalue specifying how the contents of color and depth components of the attachment are treated at the beginning of the subpass where it is first used.loadOp(int value) Sets the specified value to theloadOp()field.static VkAttachmentDescriptionmalloc()Returns a newVkAttachmentDescriptioninstance allocated withmemAlloc.malloc(int capacity) Returns a newVkAttachmentDescription.Bufferinstance allocated withmemAlloc.malloc(int capacity, org.lwjgl.system.MemoryStack stack) Returns a newVkAttachmentDescription.Bufferinstance allocated on the specifiedMemoryStack.static VkAttachmentDescriptionmalloc(org.lwjgl.system.MemoryStack stack) Returns a newVkAttachmentDescriptioninstance allocated on the specifiedMemoryStack.static VkAttachmentDescriptionDeprecated.mallocStack(int capacity) Deprecated.mallocStack(int capacity, org.lwjgl.system.MemoryStack stack) Deprecated.static VkAttachmentDescriptionmallocStack(org.lwjgl.system.MemoryStack stack) Deprecated.static intnfinalLayout(long struct) Unsafe version offinalLayout().static voidnfinalLayout(long struct, int value) Unsafe version offinalLayout.static intnflags(long struct) Unsafe version offlags().static voidnflags(long struct, int value) Unsafe version offlags.static intnformat(long struct) Unsafe version offormat().static voidnformat(long struct, int value) Unsafe version offormat.static intninitialLayout(long struct) Unsafe version ofinitialLayout().static voidninitialLayout(long struct, int value) Unsafe version ofinitialLayout.static intnloadOp(long struct) Unsafe version ofloadOp().static voidnloadOp(long struct, int value) Unsafe version ofloadOp.static intnsamples(long struct) Unsafe version ofsamples().static voidnsamples(long struct, int value) Unsafe version ofsamples.static intnstencilLoadOp(long struct) Unsafe version ofstencilLoadOp().static voidnstencilLoadOp(long struct, int value) Unsafe version ofstencilLoadOp.static intnstencilStoreOp(long struct) Unsafe version ofstencilStoreOp().static voidnstencilStoreOp(long struct, int value) Unsafe version ofstencilStoreOp.static intnstoreOp(long struct) Unsafe version ofstoreOp().static voidnstoreOp(long struct, int value) Unsafe version ofstoreOp.intsamples()aVkSampleCountFlagBitsvalue specifying the number of samples of the image.samples(int value) Sets the specified value to thesamples()field.set(int flags, int format, int samples, int loadOp, int storeOp, int stencilLoadOp, int stencilStoreOp, int initialLayout, int finalLayout) Initializes this struct with the specified values.Copies the specified struct data to this struct.intsizeof()intaVkAttachmentLoadOpvalue specifying how the contents of stencil components of the attachment are treated at the beginning of the subpass where it is first used.stencilLoadOp(int value) Sets the specified value to thestencilLoadOp()field.intaVkAttachmentStoreOpvalue specifying how the contents of stencil components of the attachment are treated at the end of the last subpass where it is used.stencilStoreOp(int value) Sets the specified value to thestencilStoreOp()field.intstoreOp()aVkAttachmentStoreOpvalue specifying how the contents of color and depth components of the attachment are treated at the end of the subpass where it is last used.storeOp(int value) Sets the specified value to thestoreOp()field.Methods inherited from class org.lwjgl.system.Struct
clear, free, isNull, validate, validateMethods inherited from class org.lwjgl.system.Pointer.Default
address, equals, hashCode, toStringMethods inherited from interface org.lwjgl.system.NativeResource
close, free
-
Field Details
-
SIZEOF
public static final int SIZEOFThe struct size in bytes. -
ALIGNOF
public static final int ALIGNOFThe struct alignment in bytes. -
FLAGS
public static final int FLAGSThe struct member offsets. -
FORMAT
public static final int FORMATThe struct member offsets. -
SAMPLES
public static final int SAMPLESThe struct member offsets. -
LOADOP
public static final int LOADOPThe struct member offsets. -
STOREOP
public static final int STOREOPThe struct member offsets. -
STENCILLOADOP
public static final int STENCILLOADOPThe struct member offsets. -
STENCILSTOREOP
public static final int STENCILSTOREOPThe struct member offsets. -
INITIALLAYOUT
public static final int INITIALLAYOUTThe struct member offsets. -
FINALLAYOUT
public static final int FINALLAYOUTThe struct member offsets.
-
-
Constructor Details
-
VkAttachmentDescription
Creates aVkAttachmentDescriptioninstance at the current position of the specifiedByteBuffercontainer. Changes to the buffer's content will be visible to the struct instance and vice versa.The created instance holds a strong reference to the container object.
-
-
Method Details
-
sizeof
public int sizeof()- Specified by:
sizeofin classorg.lwjgl.system.Struct<VkAttachmentDescription>
-
flags
public int flags()a bitmask ofVkAttachmentDescriptionFlagBitsspecifying additional properties of the attachment. -
format
public int format()aVkFormatvalue specifying the format of the image view that will be used for the attachment. -
samples
public int samples()aVkSampleCountFlagBitsvalue specifying the number of samples of the image. -
loadOp
public int loadOp()aVkAttachmentLoadOpvalue specifying how the contents of color and depth components of the attachment are treated at the beginning of the subpass where it is first used. -
storeOp
public int storeOp()aVkAttachmentStoreOpvalue specifying how the contents of color and depth components of the attachment are treated at the end of the subpass where it is last used. -
stencilLoadOp
public int stencilLoadOp()aVkAttachmentLoadOpvalue specifying how the contents of stencil components of the attachment are treated at the beginning of the subpass where it is first used. -
stencilStoreOp
public int stencilStoreOp()aVkAttachmentStoreOpvalue specifying how the contents of stencil components of the attachment are treated at the end of the last subpass where it is used. -
initialLayout
public int initialLayout()the layout the attachment image subresource will be in when a render pass instance begins. -
finalLayout
public int finalLayout()the layout the attachment image subresource will be transitioned to when a render pass instance ends. -
flags
Sets the specified value to theflags()field. -
format
Sets the specified value to theformat()field. -
samples
Sets the specified value to thesamples()field. -
loadOp
Sets the specified value to theloadOp()field. -
storeOp
Sets the specified value to thestoreOp()field. -
stencilLoadOp
Sets the specified value to thestencilLoadOp()field. -
stencilStoreOp
Sets the specified value to thestencilStoreOp()field. -
initialLayout
Sets the specified value to theinitialLayout()field. -
finalLayout
Sets the specified value to thefinalLayout()field. -
set
public VkAttachmentDescription set(int flags, int format, int samples, int loadOp, int storeOp, int stencilLoadOp, int stencilStoreOp, int initialLayout, int finalLayout) Initializes this struct with the specified values. -
set
Copies the specified struct data to this struct.- Parameters:
src- the source struct- Returns:
- this struct
-
malloc
Returns a newVkAttachmentDescriptioninstance allocated withmemAlloc. The instance must be explicitly freed. -
calloc
Returns a newVkAttachmentDescriptioninstance allocated withmemCalloc. The instance must be explicitly freed. -
create
Returns a newVkAttachmentDescriptioninstance allocated withBufferUtils. -
create
Returns a newVkAttachmentDescriptioninstance for the specified memory address. -
createSafe
-
malloc
Returns a newVkAttachmentDescription.Bufferinstance allocated withmemAlloc. The instance must be explicitly freed.- Parameters:
capacity- the buffer capacity
-
calloc
Returns a newVkAttachmentDescription.Bufferinstance allocated withmemCalloc. The instance must be explicitly freed.- Parameters:
capacity- the buffer capacity
-
create
Returns a newVkAttachmentDescription.Bufferinstance allocated withBufferUtils.- Parameters:
capacity- the buffer capacity
-
create
Create aVkAttachmentDescription.Bufferinstance at the specified memory.- Parameters:
address- the memory addresscapacity- the buffer capacity
-
createSafe
-
mallocStack
Deprecated.Deprecated for removal in 3.4.0. Usemalloc(MemoryStack)instead. -
callocStack
Deprecated.Deprecated for removal in 3.4.0. Usecalloc(MemoryStack)instead. -
mallocStack
Deprecated.Deprecated for removal in 3.4.0. Usemalloc(MemoryStack)instead. -
callocStack
Deprecated.Deprecated for removal in 3.4.0. Usecalloc(MemoryStack)instead. -
mallocStack
Deprecated.Deprecated for removal in 3.4.0. Usemalloc(int, MemoryStack)instead. -
callocStack
Deprecated.Deprecated for removal in 3.4.0. Usecalloc(int, MemoryStack)instead. -
mallocStack
@Deprecated public static VkAttachmentDescription.Buffer mallocStack(int capacity, org.lwjgl.system.MemoryStack stack) Deprecated.Deprecated for removal in 3.4.0. Usemalloc(int, MemoryStack)instead. -
callocStack
@Deprecated public static VkAttachmentDescription.Buffer callocStack(int capacity, org.lwjgl.system.MemoryStack stack) Deprecated.Deprecated for removal in 3.4.0. Usecalloc(int, MemoryStack)instead. -
malloc
Returns a newVkAttachmentDescriptioninstance allocated on the specifiedMemoryStack.- Parameters:
stack- the stack from which to allocate
-
calloc
Returns a newVkAttachmentDescriptioninstance allocated on the specifiedMemoryStackand initializes all its bits to zero.- Parameters:
stack- the stack from which to allocate
-
malloc
public static VkAttachmentDescription.Buffer malloc(int capacity, org.lwjgl.system.MemoryStack stack) Returns a newVkAttachmentDescription.Bufferinstance allocated on the specifiedMemoryStack.- Parameters:
capacity- the buffer capacitystack- the stack from which to allocate
-
calloc
public static VkAttachmentDescription.Buffer calloc(int capacity, org.lwjgl.system.MemoryStack stack) Returns a newVkAttachmentDescription.Bufferinstance allocated on the specifiedMemoryStackand initializes all its bits to zero.- Parameters:
capacity- the buffer capacitystack- the stack from which to allocate
-
nflags
public static int nflags(long struct) Unsafe version offlags(). -
nformat
public static int nformat(long struct) Unsafe version offormat(). -
nsamples
public static int nsamples(long struct) Unsafe version ofsamples(). -
nloadOp
public static int nloadOp(long struct) Unsafe version ofloadOp(). -
nstoreOp
public static int nstoreOp(long struct) Unsafe version ofstoreOp(). -
nstencilLoadOp
public static int nstencilLoadOp(long struct) Unsafe version ofstencilLoadOp(). -
nstencilStoreOp
public static int nstencilStoreOp(long struct) Unsafe version ofstencilStoreOp(). -
ninitialLayout
public static int ninitialLayout(long struct) Unsafe version ofinitialLayout(). -
nfinalLayout
public static int nfinalLayout(long struct) Unsafe version offinalLayout(). -
nflags
public static void nflags(long struct, int value) Unsafe version offlags. -
nformat
public static void nformat(long struct, int value) Unsafe version offormat. -
nsamples
public static void nsamples(long struct, int value) Unsafe version ofsamples. -
nloadOp
public static void nloadOp(long struct, int value) Unsafe version ofloadOp. -
nstoreOp
public static void nstoreOp(long struct, int value) Unsafe version ofstoreOp. -
nstencilLoadOp
public static void nstencilLoadOp(long struct, int value) Unsafe version ofstencilLoadOp. -
nstencilStoreOp
public static void nstencilStoreOp(long struct, int value) Unsafe version ofstencilStoreOp. -
ninitialLayout
public static void ninitialLayout(long struct, int value) Unsafe version ofinitialLayout. -
nfinalLayout
public static void nfinalLayout(long struct, int value) Unsafe version offinalLayout.
-