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

org.lwjgl.openxr.XrExtent2Df Maven / Gradle / Ivy

Go to download

A royalty-free, open standard that provides high-performance access to Augmented Reality (AR) and Virtual Reality (VR)—collectively known as XR—platforms and devices.

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

import org.jspecify.annotations.*;

import java.nio.*;

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

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

/**
 * Extent in two dimensions.
 * 
 * 
Description
* *

This structure is used for component values that may be real numbers, represented with single-precision floating point. For representing extents in discrete values, such as texels, the integer variant {@link XrExtent2Di} is used instead.

* *

If used to represent physical distances, values must be in meters.

* *

The {@code width} and {@code height} value must be non-negative.

* *
See Also
* *

{@link XrCompositionLayerQuad}, {@link XrOffset2Df}, {@link XrPlaneDetectorLocationEXT}, {@link XrRect2Df}, {@link XrSceneMarkerMSFT}, {@link XrScenePlaneMSFT}, {@link VARJOMarkerTracking#xrGetMarkerSizeVARJO GetMarkerSizeVARJO}, {@link XR10#xrGetReferenceSpaceBoundsRect GetReferenceSpaceBoundsRect}

* *

Layout

* *

 * struct XrExtent2Df {
 *     float {@link #width};
 *     float {@link #height};
 * }
*/ public class XrExtent2Df 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 WIDTH, HEIGHT; static { Layout layout = __struct( __member(4), __member(4) ); SIZEOF = layout.getSize(); ALIGNOF = layout.getAlignment(); WIDTH = layout.offsetof(0); HEIGHT = layout.offsetof(1); } protected XrExtent2Df(long address, @Nullable ByteBuffer container) { super(address, container); } @Override protected XrExtent2Df create(long address, @Nullable ByteBuffer container) { return new XrExtent2Df(address, container); } /** * Creates a {@code XrExtent2Df} 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 XrExtent2Df(ByteBuffer container) { super(memAddress(container), __checkContainer(container, SIZEOF)); } @Override public int sizeof() { return SIZEOF; } /** the floating-point width of the extent. */ public float width() { return nwidth(address()); } /** the floating-point height of the extent. */ public float height() { return nheight(address()); } /** Sets the specified value to the {@link #width} field. */ public XrExtent2Df width(float value) { nwidth(address(), value); return this; } /** Sets the specified value to the {@link #height} field. */ public XrExtent2Df height(float value) { nheight(address(), value); return this; } /** Initializes this struct with the specified values. */ public XrExtent2Df set( float width, float height ) { width(width); height(height); return this; } /** * Copies the specified struct data to this struct. * * @param src the source struct * * @return this struct */ public XrExtent2Df set(XrExtent2Df src) { memCopy(src.address(), address(), SIZEOF); return this; } // ----------------------------------- /** Returns a new {@code XrExtent2Df} instance allocated with {@link MemoryUtil#memAlloc memAlloc}. The instance must be explicitly freed. */ public static XrExtent2Df malloc() { return new XrExtent2Df(nmemAllocChecked(SIZEOF), null); } /** Returns a new {@code XrExtent2Df} instance allocated with {@link MemoryUtil#memCalloc memCalloc}. The instance must be explicitly freed. */ public static XrExtent2Df calloc() { return new XrExtent2Df(nmemCallocChecked(1, SIZEOF), null); } /** Returns a new {@code XrExtent2Df} instance allocated with {@link BufferUtils}. */ public static XrExtent2Df create() { ByteBuffer container = BufferUtils.createByteBuffer(SIZEOF); return new XrExtent2Df(memAddress(container), container); } /** Returns a new {@code XrExtent2Df} instance for the specified memory address. */ public static XrExtent2Df create(long address) { return new XrExtent2Df(address, null); } /** Like {@link #create(long) create}, but returns {@code null} if {@code address} is {@code NULL}. */ public static @Nullable XrExtent2Df createSafe(long address) { return address == NULL ? null : new XrExtent2Df(address, null); } /** * Returns a new {@link XrExtent2Df.Buffer} instance allocated with {@link MemoryUtil#memAlloc memAlloc}. The instance must be explicitly freed. * * @param capacity the buffer capacity */ public static XrExtent2Df.Buffer malloc(int capacity) { return new Buffer(nmemAllocChecked(__checkMalloc(capacity, SIZEOF)), capacity); } /** * Returns a new {@link XrExtent2Df.Buffer} instance allocated with {@link MemoryUtil#memCalloc memCalloc}. The instance must be explicitly freed. * * @param capacity the buffer capacity */ public static XrExtent2Df.Buffer calloc(int capacity) { return new Buffer(nmemCallocChecked(capacity, SIZEOF), capacity); } /** * Returns a new {@link XrExtent2Df.Buffer} instance allocated with {@link BufferUtils}. * * @param capacity the buffer capacity */ public static XrExtent2Df.Buffer create(int capacity) { ByteBuffer container = __create(capacity, SIZEOF); return new Buffer(memAddress(container), container, -1, 0, capacity, capacity); } /** * Create a {@link XrExtent2Df.Buffer} instance at the specified memory. * * @param address the memory address * @param capacity the buffer capacity */ public static XrExtent2Df.Buffer create(long address, int capacity) { return new Buffer(address, capacity); } /** Like {@link #create(long, int) create}, but returns {@code null} if {@code address} is {@code NULL}. */ public static XrExtent2Df.@Nullable Buffer createSafe(long address, int capacity) { return address == NULL ? null : new Buffer(address, capacity); } /** * Returns a new {@code XrExtent2Df} instance allocated on the specified {@link MemoryStack}. * * @param stack the stack from which to allocate */ public static XrExtent2Df malloc(MemoryStack stack) { return new XrExtent2Df(stack.nmalloc(ALIGNOF, SIZEOF), null); } /** * Returns a new {@code XrExtent2Df} instance allocated on the specified {@link MemoryStack} and initializes all its bits to zero. * * @param stack the stack from which to allocate */ public static XrExtent2Df calloc(MemoryStack stack) { return new XrExtent2Df(stack.ncalloc(ALIGNOF, 1, SIZEOF), null); } /** * Returns a new {@link XrExtent2Df.Buffer} instance allocated on the specified {@link MemoryStack}. * * @param stack the stack from which to allocate * @param capacity the buffer capacity */ public static XrExtent2Df.Buffer malloc(int capacity, MemoryStack stack) { return new Buffer(stack.nmalloc(ALIGNOF, capacity * SIZEOF), capacity); } /** * Returns a new {@link XrExtent2Df.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 XrExtent2Df.Buffer calloc(int capacity, MemoryStack stack) { return new Buffer(stack.ncalloc(ALIGNOF, capacity, SIZEOF), capacity); } // ----------------------------------- /** Unsafe version of {@link #width}. */ public static float nwidth(long struct) { return memGetFloat(struct + XrExtent2Df.WIDTH); } /** Unsafe version of {@link #height}. */ public static float nheight(long struct) { return memGetFloat(struct + XrExtent2Df.HEIGHT); } /** Unsafe version of {@link #width(float) width}. */ public static void nwidth(long struct, float value) { memPutFloat(struct + XrExtent2Df.WIDTH, value); } /** Unsafe version of {@link #height(float) height}. */ public static void nheight(long struct, float value) { memPutFloat(struct + XrExtent2Df.HEIGHT, value); } // ----------------------------------- /** An array of {@link XrExtent2Df} structs. */ public static class Buffer extends StructBuffer implements NativeResource { private static final XrExtent2Df ELEMENT_FACTORY = XrExtent2Df.create(-1L); /** * Creates a new {@code XrExtent2Df.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 XrExtent2Df#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 Buffer create(long address, @Nullable ByteBuffer container, int mark, int position, int limit, int capacity) { return new Buffer(address, container, mark, position, limit, capacity); } @Override protected XrExtent2Df getElementFactory() { return ELEMENT_FACTORY; } /** @return the value of the {@link XrExtent2Df#width} field. */ public float width() { return XrExtent2Df.nwidth(address()); } /** @return the value of the {@link XrExtent2Df#height} field. */ public float height() { return XrExtent2Df.nheight(address()); } /** Sets the specified value to the {@link XrExtent2Df#width} field. */ public XrExtent2Df.Buffer width(float value) { XrExtent2Df.nwidth(address(), value); return this; } /** Sets the specified value to the {@link XrExtent2Df#height} field. */ public XrExtent2Df.Buffer height(float value) { XrExtent2Df.nheight(address(), value); return this; } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy