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

org.lwjgl.ovr.OVRMirrorTextureDesc Maven / Gradle / Ivy

The newest version!
/*
 * Copyright LWJGL. All rights reserved.
 * License terms: https://www.lwjgl.org/license
 * MACHINE GENERATED FILE, DO NOT EDIT
 */
package org.lwjgl.ovr;

import javax.annotation.*;

import java.nio.*;

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

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

/**
 * Description used to create a mirror texture.
 * 
 * 

Layout

* *

 * struct ovrMirrorTextureDesc {
 *     ovrTextureFormat {@link #Format};
 *     int Width;
 *     int Height;
 *     unsigned int {@link #MiscFlags};
 * }
*/ @NativeType("struct ovrMirrorTextureDesc") public class OVRMirrorTextureDesc 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 FORMAT, WIDTH, HEIGHT, MISCFLAGS; static { Layout layout = __struct( __member(4), __member(4), __member(4), __member(4) ); SIZEOF = layout.getSize(); ALIGNOF = layout.getAlignment(); FORMAT = layout.offsetof(0); WIDTH = layout.offsetof(1); HEIGHT = layout.offsetof(2); MISCFLAGS = layout.offsetof(3); } protected OVRMirrorTextureDesc(long address, @Nullable ByteBuffer container) { super(address, container); } @Override protected OVRMirrorTextureDesc create(long address, @Nullable ByteBuffer container) { return new OVRMirrorTextureDesc(address, container); } /** * Creates a {@code OVRMirrorTextureDesc} 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 OVRMirrorTextureDesc(ByteBuffer container) { super(memAddress(container), __checkContainer(container, SIZEOF)); } @Override public int sizeof() { return SIZEOF; } /** one of:
{@link OVR#OVR_FORMAT_UNKNOWN}{@link OVR#OVR_FORMAT_B5G6R5_UNORM}{@link OVR#OVR_FORMAT_B5G5R5A1_UNORM}
{@link OVR#OVR_FORMAT_B4G4R4A4_UNORM}{@link OVR#OVR_FORMAT_R8G8B8A8_UNORM}{@link OVR#OVR_FORMAT_R8G8B8A8_UNORM_SRGB}
{@link OVR#OVR_FORMAT_B8G8R8A8_UNORM}{@link OVR#OVR_FORMAT_B8G8R8_UNORM}{@link OVR#OVR_FORMAT_B8G8R8A8_UNORM_SRGB}
{@link OVR#OVR_FORMAT_B8G8R8X8_UNORM}{@link OVR#OVR_FORMAT_B8G8R8X8_UNORM_SRGB}{@link OVR#OVR_FORMAT_R16G16B16A16_FLOAT}
{@link OVR#OVR_FORMAT_R11G11B10_FLOAT}{@link OVR#OVR_FORMAT_D16_UNORM}{@link OVR#OVR_FORMAT_D24_UNORM_S8_UINT}
{@link OVR#OVR_FORMAT_D32_FLOAT}{@link OVR#OVR_FORMAT_D32_FLOAT_S8X24_UINT}{@link OVR#OVR_FORMAT_BC1_UNORM}
{@link OVR#OVR_FORMAT_BC1_UNORM_SRGB}{@link OVR#OVR_FORMAT_BC2_UNORM}{@link OVR#OVR_FORMAT_BC2_UNORM_SRGB}
{@link OVR#OVR_FORMAT_BC3_UNORM}{@link OVR#OVR_FORMAT_BC3_UNORM_SRGB}{@link OVR#OVR_FORMAT_BC6H_UF16}
{@link OVR#OVR_FORMAT_BC6H_SF16}{@link OVR#OVR_FORMAT_BC7_UNORM}{@link OVR#OVR_FORMAT_BC7_UNORM_SRGB}
*/ @NativeType("ovrTextureFormat") public int Format() { return nFormat(address()); } /** @return the value of the {@code Width} field. */ public int Width() { return nWidth(address()); } /** @return the value of the {@code Height} field. */ public int Height() { return nHeight(address()); } /** {@code ovrTextureFlags}. One or more of:
{@link OVR#ovrTextureMisc_None TextureMisc_None}{@link OVR#ovrTextureMisc_DX_Typeless TextureMisc_DX_Typeless}{@link OVR#ovrTextureMisc_AllowGenerateMips TextureMisc_AllowGenerateMips}
{@link OVR#ovrTextureMisc_ProtectedContent TextureMisc_ProtectedContent}{@link OVR#ovrTextureMisc_AutoGenerateMips TextureMisc_AutoGenerateMips}
*/ @NativeType("unsigned int") public int MiscFlags() { return nMiscFlags(address()); } /** Sets the specified value to the {@link #Format} field. */ public OVRMirrorTextureDesc Format(@NativeType("ovrTextureFormat") int value) { nFormat(address(), value); return this; } /** Sets the specified value to the {@code Width} field. */ public OVRMirrorTextureDesc Width(int value) { nWidth(address(), value); return this; } /** Sets the specified value to the {@code Height} field. */ public OVRMirrorTextureDesc Height(int value) { nHeight(address(), value); return this; } /** Sets the specified value to the {@link #MiscFlags} field. */ public OVRMirrorTextureDesc MiscFlags(@NativeType("unsigned int") int value) { nMiscFlags(address(), value); return this; } /** Initializes this struct with the specified values. */ public OVRMirrorTextureDesc set( int Format, int Width, int Height, int MiscFlags ) { Format(Format); Width(Width); Height(Height); MiscFlags(MiscFlags); return this; } /** * Copies the specified struct data to this struct. * * @param src the source struct * * @return this struct */ public OVRMirrorTextureDesc set(OVRMirrorTextureDesc src) { memCopy(src.address(), address(), SIZEOF); return this; } // ----------------------------------- /** Returns a new {@code OVRMirrorTextureDesc} instance allocated with {@link MemoryUtil#memAlloc memAlloc}. The instance must be explicitly freed. */ public static OVRMirrorTextureDesc malloc() { return new OVRMirrorTextureDesc(nmemAllocChecked(SIZEOF), null); } /** Returns a new {@code OVRMirrorTextureDesc} instance allocated with {@link MemoryUtil#memCalloc memCalloc}. The instance must be explicitly freed. */ public static OVRMirrorTextureDesc calloc() { return new OVRMirrorTextureDesc(nmemCallocChecked(1, SIZEOF), null); } /** Returns a new {@code OVRMirrorTextureDesc} instance allocated with {@link BufferUtils}. */ public static OVRMirrorTextureDesc create() { ByteBuffer container = BufferUtils.createByteBuffer(SIZEOF); return new OVRMirrorTextureDesc(memAddress(container), container); } /** Returns a new {@code OVRMirrorTextureDesc} instance for the specified memory address. */ public static OVRMirrorTextureDesc create(long address) { return new OVRMirrorTextureDesc(address, null); } /** Like {@link #create(long) create}, but returns {@code null} if {@code address} is {@code NULL}. */ @Nullable public static OVRMirrorTextureDesc createSafe(long address) { return address == NULL ? null : new OVRMirrorTextureDesc(address, null); } /** * Returns a new {@link OVRMirrorTextureDesc.Buffer} instance allocated with {@link MemoryUtil#memAlloc memAlloc}. The instance must be explicitly freed. * * @param capacity the buffer capacity */ public static OVRMirrorTextureDesc.Buffer malloc(int capacity) { return new Buffer(nmemAllocChecked(__checkMalloc(capacity, SIZEOF)), capacity); } /** * Returns a new {@link OVRMirrorTextureDesc.Buffer} instance allocated with {@link MemoryUtil#memCalloc memCalloc}. The instance must be explicitly freed. * * @param capacity the buffer capacity */ public static OVRMirrorTextureDesc.Buffer calloc(int capacity) { return new Buffer(nmemCallocChecked(capacity, SIZEOF), capacity); } /** * Returns a new {@link OVRMirrorTextureDesc.Buffer} instance allocated with {@link BufferUtils}. * * @param capacity the buffer capacity */ public static OVRMirrorTextureDesc.Buffer create(int capacity) { ByteBuffer container = __create(capacity, SIZEOF); return new Buffer(memAddress(container), container, -1, 0, capacity, capacity); } /** * Create a {@link OVRMirrorTextureDesc.Buffer} instance at the specified memory. * * @param address the memory address * @param capacity the buffer capacity */ public static OVRMirrorTextureDesc.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}. */ @Nullable public static OVRMirrorTextureDesc.Buffer createSafe(long address, int capacity) { return address == NULL ? null : new Buffer(address, capacity); } // ----------------------------------- /** Deprecated for removal in 3.4.0. Use {@link #malloc(MemoryStack)} instead. */ @Deprecated public static OVRMirrorTextureDesc mallocStack() { return malloc(stackGet()); } /** Deprecated for removal in 3.4.0. Use {@link #calloc(MemoryStack)} instead. */ @Deprecated public static OVRMirrorTextureDesc callocStack() { return calloc(stackGet()); } /** Deprecated for removal in 3.4.0. Use {@link #malloc(MemoryStack)} instead. */ @Deprecated public static OVRMirrorTextureDesc mallocStack(MemoryStack stack) { return malloc(stack); } /** Deprecated for removal in 3.4.0. Use {@link #calloc(MemoryStack)} instead. */ @Deprecated public static OVRMirrorTextureDesc callocStack(MemoryStack stack) { return calloc(stack); } /** Deprecated for removal in 3.4.0. Use {@link #malloc(int, MemoryStack)} instead. */ @Deprecated public static OVRMirrorTextureDesc.Buffer mallocStack(int capacity) { return malloc(capacity, stackGet()); } /** Deprecated for removal in 3.4.0. Use {@link #calloc(int, MemoryStack)} instead. */ @Deprecated public static OVRMirrorTextureDesc.Buffer callocStack(int capacity) { return calloc(capacity, stackGet()); } /** Deprecated for removal in 3.4.0. Use {@link #malloc(int, MemoryStack)} instead. */ @Deprecated public static OVRMirrorTextureDesc.Buffer mallocStack(int capacity, MemoryStack stack) { return malloc(capacity, stack); } /** Deprecated for removal in 3.4.0. Use {@link #calloc(int, MemoryStack)} instead. */ @Deprecated public static OVRMirrorTextureDesc.Buffer callocStack(int capacity, MemoryStack stack) { return calloc(capacity, stack); } /** * Returns a new {@code OVRMirrorTextureDesc} instance allocated on the specified {@link MemoryStack}. * * @param stack the stack from which to allocate */ public static OVRMirrorTextureDesc malloc(MemoryStack stack) { return new OVRMirrorTextureDesc(stack.nmalloc(ALIGNOF, SIZEOF), null); } /** * Returns a new {@code OVRMirrorTextureDesc} instance allocated on the specified {@link MemoryStack} and initializes all its bits to zero. * * @param stack the stack from which to allocate */ public static OVRMirrorTextureDesc calloc(MemoryStack stack) { return new OVRMirrorTextureDesc(stack.ncalloc(ALIGNOF, 1, SIZEOF), null); } /** * Returns a new {@link OVRMirrorTextureDesc.Buffer} instance allocated on the specified {@link MemoryStack}. * * @param stack the stack from which to allocate * @param capacity the buffer capacity */ public static OVRMirrorTextureDesc.Buffer malloc(int capacity, MemoryStack stack) { return new Buffer(stack.nmalloc(ALIGNOF, capacity * SIZEOF), capacity); } /** * Returns a new {@link OVRMirrorTextureDesc.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 OVRMirrorTextureDesc.Buffer calloc(int capacity, MemoryStack stack) { return new Buffer(stack.ncalloc(ALIGNOF, capacity, SIZEOF), capacity); } // ----------------------------------- /** Unsafe version of {@link #Format}. */ public static int nFormat(long struct) { return UNSAFE.getInt(null, struct + OVRMirrorTextureDesc.FORMAT); } /** Unsafe version of {@link #Width}. */ public static int nWidth(long struct) { return UNSAFE.getInt(null, struct + OVRMirrorTextureDesc.WIDTH); } /** Unsafe version of {@link #Height}. */ public static int nHeight(long struct) { return UNSAFE.getInt(null, struct + OVRMirrorTextureDesc.HEIGHT); } /** Unsafe version of {@link #MiscFlags}. */ public static int nMiscFlags(long struct) { return UNSAFE.getInt(null, struct + OVRMirrorTextureDesc.MISCFLAGS); } /** Unsafe version of {@link #Format(int) Format}. */ public static void nFormat(long struct, int value) { UNSAFE.putInt(null, struct + OVRMirrorTextureDesc.FORMAT, value); } /** Unsafe version of {@link #Width(int) Width}. */ public static void nWidth(long struct, int value) { UNSAFE.putInt(null, struct + OVRMirrorTextureDesc.WIDTH, value); } /** Unsafe version of {@link #Height(int) Height}. */ public static void nHeight(long struct, int value) { UNSAFE.putInt(null, struct + OVRMirrorTextureDesc.HEIGHT, value); } /** Unsafe version of {@link #MiscFlags(int) MiscFlags}. */ public static void nMiscFlags(long struct, int value) { UNSAFE.putInt(null, struct + OVRMirrorTextureDesc.MISCFLAGS, value); } // ----------------------------------- /** An array of {@link OVRMirrorTextureDesc} structs. */ public static class Buffer extends StructBuffer implements NativeResource { private static final OVRMirrorTextureDesc ELEMENT_FACTORY = OVRMirrorTextureDesc.create(-1L); /** * Creates a new {@code OVRMirrorTextureDesc.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 OVRMirrorTextureDesc#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 OVRMirrorTextureDesc getElementFactory() { return ELEMENT_FACTORY; } /** @return the value of the {@link OVRMirrorTextureDesc#Format} field. */ @NativeType("ovrTextureFormat") public int Format() { return OVRMirrorTextureDesc.nFormat(address()); } /** @return the value of the {@code Width} field. */ public int Width() { return OVRMirrorTextureDesc.nWidth(address()); } /** @return the value of the {@code Height} field. */ public int Height() { return OVRMirrorTextureDesc.nHeight(address()); } /** @return the value of the {@link OVRMirrorTextureDesc#MiscFlags} field. */ @NativeType("unsigned int") public int MiscFlags() { return OVRMirrorTextureDesc.nMiscFlags(address()); } /** Sets the specified value to the {@link OVRMirrorTextureDesc#Format} field. */ public OVRMirrorTextureDesc.Buffer Format(@NativeType("ovrTextureFormat") int value) { OVRMirrorTextureDesc.nFormat(address(), value); return this; } /** Sets the specified value to the {@code Width} field. */ public OVRMirrorTextureDesc.Buffer Width(int value) { OVRMirrorTextureDesc.nWidth(address(), value); return this; } /** Sets the specified value to the {@code Height} field. */ public OVRMirrorTextureDesc.Buffer Height(int value) { OVRMirrorTextureDesc.nHeight(address(), value); return this; } /** Sets the specified value to the {@link OVRMirrorTextureDesc#MiscFlags} field. */ public OVRMirrorTextureDesc.Buffer MiscFlags(@NativeType("unsigned int") int value) { OVRMirrorTextureDesc.nMiscFlags(address(), value); return this; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy