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

org.lwjgl.vulkan.VkDeviceOrHostAddressConstKHR 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 javax.annotation.*;

import java.nio.*;

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

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

/**
 * Union specifying a const device or host address.
 * 
 * 
See Also
* *

{@link VkAccelerationStructureGeometryAabbsDataKHR}, {@link VkAccelerationStructureGeometryInstancesDataKHR}, {@link VkAccelerationStructureGeometryMotionTrianglesDataNV}, {@link VkAccelerationStructureGeometryTrianglesDataKHR}, {@link VkCopyMemoryToAccelerationStructureInfoKHR}

* *

Layout

* *

 * union VkDeviceOrHostAddressConstKHR {
 *     VkDeviceAddress {@link #deviceAddress};
 *     void const * {@link #hostAddress};
 * }
*/ public class VkDeviceOrHostAddressConstKHR extends Struct implements NativeResource { /** The struct size in bytes. */ public static final int SIZEOF; /** The struct alignment in bytes. */ public static final int ALIGNOF; /** The struct member offsets. */ public static final int DEVICEADDRESS, HOSTADDRESS; static { Layout layout = __union( __member(8), __member(POINTER_SIZE) ); SIZEOF = layout.getSize(); ALIGNOF = layout.getAlignment(); DEVICEADDRESS = layout.offsetof(0); HOSTADDRESS = layout.offsetof(1); } /** * Creates a {@code VkDeviceOrHostAddressConstKHR} 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 VkDeviceOrHostAddressConstKHR(ByteBuffer container) { super(memAddress(container), __checkContainer(container, SIZEOF)); } @Override public int sizeof() { return SIZEOF; } /** a buffer device address as returned by the {@link KHRBufferDeviceAddress#vkGetBufferDeviceAddressKHR GetBufferDeviceAddressKHR} command. */ @NativeType("VkDeviceAddress") public long deviceAddress() { return ndeviceAddress(address()); } /** a const host memory address. */ @NativeType("void const *") public long hostAddress() { return nhostAddress(address()); } /** Sets the specified value to the {@link #deviceAddress} field. */ public VkDeviceOrHostAddressConstKHR deviceAddress(@NativeType("VkDeviceAddress") long value) { ndeviceAddress(address(), value); return this; } /** Sets the specified value to the {@link #hostAddress} field. */ public VkDeviceOrHostAddressConstKHR hostAddress(@NativeType("void const *") long value) { nhostAddress(address(), value); return this; } /** * Copies the specified struct data to this struct. * * @param src the source struct * * @return this struct */ public VkDeviceOrHostAddressConstKHR set(VkDeviceOrHostAddressConstKHR src) { memCopy(src.address(), address(), SIZEOF); return this; } // ----------------------------------- /** Returns a new {@code VkDeviceOrHostAddressConstKHR} instance allocated with {@link MemoryUtil#memAlloc memAlloc}. The instance must be explicitly freed. */ public static VkDeviceOrHostAddressConstKHR malloc() { return wrap(VkDeviceOrHostAddressConstKHR.class, nmemAllocChecked(SIZEOF)); } /** Returns a new {@code VkDeviceOrHostAddressConstKHR} instance allocated with {@link MemoryUtil#memCalloc memCalloc}. The instance must be explicitly freed. */ public static VkDeviceOrHostAddressConstKHR calloc() { return wrap(VkDeviceOrHostAddressConstKHR.class, nmemCallocChecked(1, SIZEOF)); } /** Returns a new {@code VkDeviceOrHostAddressConstKHR} instance allocated with {@link BufferUtils}. */ public static VkDeviceOrHostAddressConstKHR create() { ByteBuffer container = BufferUtils.createByteBuffer(SIZEOF); return wrap(VkDeviceOrHostAddressConstKHR.class, memAddress(container), container); } /** Returns a new {@code VkDeviceOrHostAddressConstKHR} instance for the specified memory address. */ public static VkDeviceOrHostAddressConstKHR create(long address) { return wrap(VkDeviceOrHostAddressConstKHR.class, address); } /** Like {@link #create(long) create}, but returns {@code null} if {@code address} is {@code NULL}. */ @Nullable public static VkDeviceOrHostAddressConstKHR createSafe(long address) { return address == NULL ? null : wrap(VkDeviceOrHostAddressConstKHR.class, address); } /** * Returns a new {@link VkDeviceOrHostAddressConstKHR.Buffer} instance allocated with {@link MemoryUtil#memAlloc memAlloc}. The instance must be explicitly freed. * * @param capacity the buffer capacity */ public static VkDeviceOrHostAddressConstKHR.Buffer malloc(int capacity) { return wrap(Buffer.class, nmemAllocChecked(__checkMalloc(capacity, SIZEOF)), capacity); } /** * Returns a new {@link VkDeviceOrHostAddressConstKHR.Buffer} instance allocated with {@link MemoryUtil#memCalloc memCalloc}. The instance must be explicitly freed. * * @param capacity the buffer capacity */ public static VkDeviceOrHostAddressConstKHR.Buffer calloc(int capacity) { return wrap(Buffer.class, nmemCallocChecked(capacity, SIZEOF), capacity); } /** * Returns a new {@link VkDeviceOrHostAddressConstKHR.Buffer} instance allocated with {@link BufferUtils}. * * @param capacity the buffer capacity */ public static VkDeviceOrHostAddressConstKHR.Buffer create(int capacity) { ByteBuffer container = __create(capacity, SIZEOF); return wrap(Buffer.class, memAddress(container), capacity, container); } /** * Create a {@link VkDeviceOrHostAddressConstKHR.Buffer} instance at the specified memory. * * @param address the memory address * @param capacity the buffer capacity */ public static VkDeviceOrHostAddressConstKHR.Buffer create(long address, int capacity) { return wrap(Buffer.class, address, capacity); } /** Like {@link #create(long, int) create}, but returns {@code null} if {@code address} is {@code NULL}. */ @Nullable public static VkDeviceOrHostAddressConstKHR.Buffer createSafe(long address, int capacity) { return address == NULL ? null : wrap(Buffer.class, address, capacity); } /** * Returns a new {@code VkDeviceOrHostAddressConstKHR} instance allocated on the specified {@link MemoryStack}. * * @param stack the stack from which to allocate */ public static VkDeviceOrHostAddressConstKHR malloc(MemoryStack stack) { return wrap(VkDeviceOrHostAddressConstKHR.class, stack.nmalloc(ALIGNOF, SIZEOF)); } /** * Returns a new {@code VkDeviceOrHostAddressConstKHR} instance allocated on the specified {@link MemoryStack} and initializes all its bits to zero. * * @param stack the stack from which to allocate */ public static VkDeviceOrHostAddressConstKHR calloc(MemoryStack stack) { return wrap(VkDeviceOrHostAddressConstKHR.class, stack.ncalloc(ALIGNOF, 1, SIZEOF)); } /** * Returns a new {@link VkDeviceOrHostAddressConstKHR.Buffer} instance allocated on the specified {@link MemoryStack}. * * @param stack the stack from which to allocate * @param capacity the buffer capacity */ public static VkDeviceOrHostAddressConstKHR.Buffer malloc(int capacity, MemoryStack stack) { return wrap(Buffer.class, stack.nmalloc(ALIGNOF, capacity * SIZEOF), capacity); } /** * Returns a new {@link VkDeviceOrHostAddressConstKHR.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 VkDeviceOrHostAddressConstKHR.Buffer calloc(int capacity, MemoryStack stack) { return wrap(Buffer.class, stack.ncalloc(ALIGNOF, capacity, SIZEOF), capacity); } // ----------------------------------- /** Unsafe version of {@link #deviceAddress}. */ public static long ndeviceAddress(long struct) { return UNSAFE.getLong(null, struct + VkDeviceOrHostAddressConstKHR.DEVICEADDRESS); } /** Unsafe version of {@link #hostAddress}. */ public static long nhostAddress(long struct) { return memGetAddress(struct + VkDeviceOrHostAddressConstKHR.HOSTADDRESS); } /** Unsafe version of {@link #deviceAddress(long) deviceAddress}. */ public static void ndeviceAddress(long struct, long value) { UNSAFE.putLong(null, struct + VkDeviceOrHostAddressConstKHR.DEVICEADDRESS, value); } /** Unsafe version of {@link #hostAddress(long) hostAddress}. */ public static void nhostAddress(long struct, long value) { memPutAddress(struct + VkDeviceOrHostAddressConstKHR.HOSTADDRESS, check(value)); } // ----------------------------------- /** An array of {@link VkDeviceOrHostAddressConstKHR} structs. */ public static class Buffer extends StructBuffer implements NativeResource { private static final VkDeviceOrHostAddressConstKHR ELEMENT_FACTORY = VkDeviceOrHostAddressConstKHR.create(-1L); /** * Creates a new {@code VkDeviceOrHostAddressConstKHR.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 VkDeviceOrHostAddressConstKHR#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); } public Buffer(long address, int cap) { super(address, null, -1, 0, cap, cap); } Buffer(long address, @Nullable 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 VkDeviceOrHostAddressConstKHR getElementFactory() { return ELEMENT_FACTORY; } /** @return the value of the {@link VkDeviceOrHostAddressConstKHR#deviceAddress} field. */ @NativeType("VkDeviceAddress") public long deviceAddress() { return VkDeviceOrHostAddressConstKHR.ndeviceAddress(address()); } /** @return the value of the {@link VkDeviceOrHostAddressConstKHR#hostAddress} field. */ @NativeType("void const *") public long hostAddress() { return VkDeviceOrHostAddressConstKHR.nhostAddress(address()); } /** Sets the specified value to the {@link VkDeviceOrHostAddressConstKHR#deviceAddress} field. */ public VkDeviceOrHostAddressConstKHR.Buffer deviceAddress(@NativeType("VkDeviceAddress") long value) { VkDeviceOrHostAddressConstKHR.ndeviceAddress(address(), value); return this; } /** Sets the specified value to the {@link VkDeviceOrHostAddressConstKHR#hostAddress} field. */ public VkDeviceOrHostAddressConstKHR.Buffer hostAddress(@NativeType("void const *") long value) { VkDeviceOrHostAddressConstKHR.nhostAddress(address(), value); return this; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy