All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.lwjgl.vulkan.VkSparseMemoryBind Maven / Gradle / Ivy

Go to download

A new generation graphics and compute API that provides high-efficiency, cross-platform access to modern GPUs used in a wide variety of devices from PCs and consoles to mobile phones and embedded platforms.

There is a newer version: 3.3.4
Show newest version
/*
 * Copyright LWJGL. All rights reserved.
 * License terms: https://www.lwjgl.org/license
 * MACHINE GENERATED FILE, DO NOT EDIT
 */
package org.lwjgl.vulkan;

import java.nio.*;

import org.lwjgl.*;
import org.lwjgl.system.*;

import static org.lwjgl.system.MemoryUtil.*;
import static org.lwjgl.system.MemoryStack.*;

/**
 * Structure specifying a sparse memory bind operation.
 * 
 * 
Description
* *

The binding range [resourceOffset, resourceOffset {plus} size) has different constraints based on {@code flags}. If {@code flags} contains {@link VK10#VK_SPARSE_MEMORY_BIND_METADATA_BIT SPARSE_MEMORY_BIND_METADATA_BIT}, the binding range must be within the mip tail region of the metadata aspect. This metadata region is defined by:

* *
*
metadataRegion = [base, base + imageMipTailSize)
*
base = imageMipTailOffset + imageMipTailStride × n
*
* *

and {@code imageMipTailOffset}, {@code imageMipTailSize}, and {@code imageMipTailStride} values are from the {@link VkSparseImageMemoryRequirements} corresponding to the metadata aspect of the image, and n is a valid array layer index for the image,

* *

{@code imageMipTailStride} is considered to be zero for aspects where {@link VkSparseImageMemoryRequirements}{@code ::formatProperties}.flags contains {@link VK10#VK_SPARSE_IMAGE_FORMAT_SINGLE_MIPTAIL_BIT SPARSE_IMAGE_FORMAT_SINGLE_MIPTAIL_BIT}.

* *

If {@code flags} does not contain {@link VK10#VK_SPARSE_MEMORY_BIND_METADATA_BIT SPARSE_MEMORY_BIND_METADATA_BIT}, the binding range must be within the range [0,{@link VkMemoryRequirements}::size).

* *
Valid Usage
* *
    *
  • If {@code memory} is not {@link VK10#VK_NULL_HANDLE NULL_HANDLE}, {@code memory} and {@code memoryOffset} must match the memory requirements of the resource, as described in section the “Resource Memory Association” section
  • *
  • If {@code memory} is not {@link VK10#VK_NULL_HANDLE NULL_HANDLE}, {@code memory} must not have been created with a memory type that reports {@link VK10#VK_MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT} bit set
  • *
  • {@code size} must be greater than 0
  • *
  • {@code resourceOffset} must be less than the size of the resource
  • *
  • {@code size} must be less than or equal to the size of the resource minus {@code resourceOffset}
  • *
  • {@code memoryOffset} must be less than the size of {@code memory}
  • *
  • {@code size} must be less than or equal to the size of {@code memory} minus {@code memoryOffset}
  • *
* *
Valid Usage (Implicit)
* *
    *
  • If {@code memory} is not {@link VK10#VK_NULL_HANDLE NULL_HANDLE}, {@code memory} must be a valid {@code VkDeviceMemory} handle
  • *
  • {@code flags} must be a valid combination of {@code VkSparseMemoryBindFlagBits} values
  • *
* *
See Also
* *

{@link VkSparseBufferMemoryBindInfo}, {@link VkSparseImageOpaqueMemoryBindInfo}

* *

Member documentation

* *
    *
  • {@code resourceOffset} – the offset into the resource.
  • *
  • {@code size} – the size of the memory region to be bound.
  • *
  • {@code memory} – the {@code VkDeviceMemory} object that the range of the resource is bound to. If {@code memory} is {@link VK10#VK_NULL_HANDLE NULL_HANDLE}, the range is unbound.
  • *
  • {@code memoryOffset} – the offset into the {@code VkDeviceMemory} object to bind the resource range to. If {@code memory} is {@link VK10#VK_NULL_HANDLE NULL_HANDLE}, this value is ignored.
  • *
  • {@code flags} – a bitmask of {@code VkSparseMemoryBindFlagBits} specifying usage of the binding operation.
  • *
* *

Layout

* *
 * struct VkSparseMemoryBind {
 *     VkDeviceSize resourceOffset;
 *     VkDeviceSize size;
 *     VkDeviceMemory memory;
 *     VkDeviceSize memoryOffset;
 *     VkSparseMemoryBindFlags flags;
 * }
*/ public class VkSparseMemoryBind extends Struct implements NativeResource { /** The struct size in bytes. */ public static final int SIZEOF; public static final int ALIGNOF; /** The struct member offsets. */ public static final int RESOURCEOFFSET, SIZE, MEMORY, MEMORYOFFSET, FLAGS; static { Layout layout = __struct( __member(8), __member(8), __member(8), __member(8), __member(4) ); SIZEOF = layout.getSize(); ALIGNOF = layout.getAlignment(); RESOURCEOFFSET = layout.offsetof(0); SIZE = layout.offsetof(1); MEMORY = layout.offsetof(2); MEMORYOFFSET = layout.offsetof(3); FLAGS = layout.offsetof(4); } VkSparseMemoryBind(long address, ByteBuffer container) { super(address, container); } /** * Creates a {@link VkSparseMemoryBind} instance at the current position of the specified {@link ByteBuffer} container. 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.

*/ public VkSparseMemoryBind(ByteBuffer container) { this(memAddress(container), checkContainer(container, SIZEOF)); } @Override public int sizeof() { return SIZEOF; } /** Returns the value of the {@code resourceOffset} field. */ @NativeType("VkDeviceSize") public long resourceOffset() { return nresourceOffset(address()); } /** Returns the value of the {@code size} field. */ @NativeType("VkDeviceSize") public long size() { return nsize(address()); } /** Returns the value of the {@code memory} field. */ @NativeType("VkDeviceMemory") public long memory() { return nmemory(address()); } /** Returns the value of the {@code memoryOffset} field. */ @NativeType("VkDeviceSize") public long memoryOffset() { return nmemoryOffset(address()); } /** Returns the value of the {@code flags} field. */ @NativeType("VkSparseMemoryBindFlags") public int flags() { return nflags(address()); } /** Sets the specified value to the {@code resourceOffset} field. */ public VkSparseMemoryBind resourceOffset(@NativeType("VkDeviceSize") long value) { nresourceOffset(address(), value); return this; } /** Sets the specified value to the {@code size} field. */ public VkSparseMemoryBind size(@NativeType("VkDeviceSize") long value) { nsize(address(), value); return this; } /** Sets the specified value to the {@code memory} field. */ public VkSparseMemoryBind memory(@NativeType("VkDeviceMemory") long value) { nmemory(address(), value); return this; } /** Sets the specified value to the {@code memoryOffset} field. */ public VkSparseMemoryBind memoryOffset(@NativeType("VkDeviceSize") long value) { nmemoryOffset(address(), value); return this; } /** Sets the specified value to the {@code flags} field. */ public VkSparseMemoryBind flags(@NativeType("VkSparseMemoryBindFlags") int value) { nflags(address(), value); return this; } /** Initializes this struct with the specified values. */ public VkSparseMemoryBind set( long resourceOffset, long size, long memory, long memoryOffset, int flags ) { resourceOffset(resourceOffset); size(size); memory(memory); memoryOffset(memoryOffset); flags(flags); return this; } /** * Copies the specified struct data to this struct. * * @param src the source struct * * @return this struct */ public VkSparseMemoryBind set(VkSparseMemoryBind src) { memCopy(src.address(), address(), SIZEOF); return this; } // ----------------------------------- /** Returns a new {@link VkSparseMemoryBind} instance allocated with {@link MemoryUtil#memAlloc memAlloc}. The instance must be explicitly freed. */ public static VkSparseMemoryBind malloc() { return create(nmemAlloc(SIZEOF)); } /** Returns a new {@link VkSparseMemoryBind} instance allocated with {@link MemoryUtil#memCalloc memCalloc}. The instance must be explicitly freed. */ public static VkSparseMemoryBind calloc() { return create(nmemCalloc(1, SIZEOF)); } /** Returns a new {@link VkSparseMemoryBind} instance allocated with {@link BufferUtils}. */ public static VkSparseMemoryBind create() { return new VkSparseMemoryBind(BufferUtils.createByteBuffer(SIZEOF)); } /** Returns a new {@link VkSparseMemoryBind} instance for the specified memory address or {@code null} if the address is {@code NULL}. */ public static VkSparseMemoryBind create(long address) { return address == NULL ? null : new VkSparseMemoryBind(address, null); } /** * Returns a new {@link VkSparseMemoryBind.Buffer} instance allocated with {@link MemoryUtil#memAlloc memAlloc}. The instance must be explicitly freed. * * @param capacity the buffer capacity */ public static Buffer malloc(int capacity) { return create(__malloc(capacity, SIZEOF), capacity); } /** * Returns a new {@link VkSparseMemoryBind.Buffer} instance allocated with {@link MemoryUtil#memCalloc memCalloc}. The instance must be explicitly freed. * * @param capacity the buffer capacity */ public static Buffer calloc(int capacity) { return create(nmemCalloc(capacity, SIZEOF), capacity); } /** * Returns a new {@link VkSparseMemoryBind.Buffer} instance allocated with {@link BufferUtils}. * * @param capacity the buffer capacity */ public static Buffer create(int capacity) { return new Buffer(__create(capacity, SIZEOF)); } /** * Create a {@link VkSparseMemoryBind.Buffer} instance at the specified memory. * * @param address the memory address * @param capacity the buffer capacity */ public static Buffer create(long address, int capacity) { return address == NULL ? null : new Buffer(address, null, -1, 0, capacity, capacity); } // ----------------------------------- /** Returns a new {@link VkSparseMemoryBind} instance allocated on the thread-local {@link MemoryStack}. */ public static VkSparseMemoryBind mallocStack() { return mallocStack(stackGet()); } /** Returns a new {@link VkSparseMemoryBind} instance allocated on the thread-local {@link MemoryStack} and initializes all its bits to zero. */ public static VkSparseMemoryBind callocStack() { return callocStack(stackGet()); } /** * Returns a new {@link VkSparseMemoryBind} instance allocated on the specified {@link MemoryStack}. * * @param stack the stack from which to allocate */ public static VkSparseMemoryBind mallocStack(MemoryStack stack) { return create(stack.nmalloc(ALIGNOF, SIZEOF)); } /** * Returns a new {@link VkSparseMemoryBind} instance allocated on the specified {@link MemoryStack} and initializes all its bits to zero. * * @param stack the stack from which to allocate */ public static VkSparseMemoryBind callocStack(MemoryStack stack) { return create(stack.ncalloc(ALIGNOF, 1, SIZEOF)); } /** * Returns a new {@link VkSparseMemoryBind.Buffer} instance allocated on the thread-local {@link MemoryStack}. * * @param capacity the buffer capacity */ public static Buffer mallocStack(int capacity) { return mallocStack(capacity, stackGet()); } /** * Returns a new {@link VkSparseMemoryBind.Buffer} instance allocated on the thread-local {@link MemoryStack} and initializes all its bits to zero. * * @param capacity the buffer capacity */ public static Buffer callocStack(int capacity) { return callocStack(capacity, stackGet()); } /** * Returns a new {@link VkSparseMemoryBind.Buffer} instance allocated on the specified {@link MemoryStack}. * * @param stack the stack from which to allocate * @param capacity the buffer capacity */ public static Buffer mallocStack(int capacity, MemoryStack stack) { return create(stack.nmalloc(ALIGNOF, capacity * SIZEOF), capacity); } /** * Returns a new {@link VkSparseMemoryBind.Buffer} instance allocated on the specified {@link MemoryStack} and initializes all its bits to zero. * * @param stack the stack from which to allocate * @param capacity the buffer capacity */ public static Buffer callocStack(int capacity, MemoryStack stack) { return create(stack.ncalloc(ALIGNOF, capacity, SIZEOF), capacity); } // ----------------------------------- /** Unsafe version of {@link #resourceOffset}. */ public static long nresourceOffset(long struct) { return memGetLong(struct + VkSparseMemoryBind.RESOURCEOFFSET); } /** Unsafe version of {@link #size}. */ public static long nsize(long struct) { return memGetLong(struct + VkSparseMemoryBind.SIZE); } /** Unsafe version of {@link #memory}. */ public static long nmemory(long struct) { return memGetLong(struct + VkSparseMemoryBind.MEMORY); } /** Unsafe version of {@link #memoryOffset}. */ public static long nmemoryOffset(long struct) { return memGetLong(struct + VkSparseMemoryBind.MEMORYOFFSET); } /** Unsafe version of {@link #flags}. */ public static int nflags(long struct) { return memGetInt(struct + VkSparseMemoryBind.FLAGS); } /** Unsafe version of {@link #resourceOffset(long) resourceOffset}. */ public static void nresourceOffset(long struct, long value) { memPutLong(struct + VkSparseMemoryBind.RESOURCEOFFSET, value); } /** Unsafe version of {@link #size(long) size}. */ public static void nsize(long struct, long value) { memPutLong(struct + VkSparseMemoryBind.SIZE, value); } /** Unsafe version of {@link #memory(long) memory}. */ public static void nmemory(long struct, long value) { memPutLong(struct + VkSparseMemoryBind.MEMORY, value); } /** Unsafe version of {@link #memoryOffset(long) memoryOffset}. */ public static void nmemoryOffset(long struct, long value) { memPutLong(struct + VkSparseMemoryBind.MEMORYOFFSET, value); } /** Unsafe version of {@link #flags(int) flags}. */ public static void nflags(long struct, int value) { memPutInt(struct + VkSparseMemoryBind.FLAGS, value); } // ----------------------------------- /** An array of {@link VkSparseMemoryBind} structs. */ public static class Buffer extends StructBuffer implements NativeResource { /** * Creates a new {@link VkSparseMemoryBind.Buffer} instance backed by the specified container. * * Changes to the container's content will be visible to the struct buffer instance and vice versa. The two buffers' position, limit, and mark values * will be independent. The new buffer's position will be zero, its capacity and its limit will be the number of bytes remaining in this buffer divided * by {@link VkSparseMemoryBind#SIZEOF}, and its mark will be undefined. * *

The created buffer instance holds a strong reference to the container object.

*/ public Buffer(ByteBuffer container) { super(container, container.remaining() / SIZEOF); } Buffer(long address, ByteBuffer container, int mark, int pos, int lim, int cap) { super(address, container, mark, pos, lim, cap); } @Override protected Buffer self() { return this; } @Override protected Buffer newBufferInstance(long address, ByteBuffer container, int mark, int pos, int lim, int cap) { return new Buffer(address, container, mark, pos, lim, cap); } @Override protected VkSparseMemoryBind newInstance(long address) { return new VkSparseMemoryBind(address, container); } @Override public int sizeof() { return SIZEOF; } /** Returns the value of the {@code resourceOffset} field. */ @NativeType("VkDeviceSize") public long resourceOffset() { return VkSparseMemoryBind.nresourceOffset(address()); } /** Returns the value of the {@code size} field. */ @NativeType("VkDeviceSize") public long size() { return VkSparseMemoryBind.nsize(address()); } /** Returns the value of the {@code memory} field. */ @NativeType("VkDeviceMemory") public long memory() { return VkSparseMemoryBind.nmemory(address()); } /** Returns the value of the {@code memoryOffset} field. */ @NativeType("VkDeviceSize") public long memoryOffset() { return VkSparseMemoryBind.nmemoryOffset(address()); } /** Returns the value of the {@code flags} field. */ @NativeType("VkSparseMemoryBindFlags") public int flags() { return VkSparseMemoryBind.nflags(address()); } /** Sets the specified value to the {@code resourceOffset} field. */ public VkSparseMemoryBind.Buffer resourceOffset(@NativeType("VkDeviceSize") long value) { VkSparseMemoryBind.nresourceOffset(address(), value); return this; } /** Sets the specified value to the {@code size} field. */ public VkSparseMemoryBind.Buffer size(@NativeType("VkDeviceSize") long value) { VkSparseMemoryBind.nsize(address(), value); return this; } /** Sets the specified value to the {@code memory} field. */ public VkSparseMemoryBind.Buffer memory(@NativeType("VkDeviceMemory") long value) { VkSparseMemoryBind.nmemory(address(), value); return this; } /** Sets the specified value to the {@code memoryOffset} field. */ public VkSparseMemoryBind.Buffer memoryOffset(@NativeType("VkDeviceSize") long value) { VkSparseMemoryBind.nmemoryOffset(address(), value); return this; } /** Sets the specified value to the {@code flags} field. */ public VkSparseMemoryBind.Buffer flags(@NativeType("VkSparseMemoryBindFlags") int value) { VkSparseMemoryBind.nflags(address(), value); return this; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy