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

org.lwjgl.nuklear.NkChart Maven / Gradle / Ivy

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.nuklear;

import java.nio.*;

import org.lwjgl.system.*;

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

/**
 * 

Layout

* *
 * struct nk_chart {
 *     int slot;
 *     float x;
 *     float y;
 *     float w;
 *     float h;
 *     {@link NkChartSlot struct nk_chart_slot} slots[4];
 * }
*/ @NativeType("struct nk_chart") public class NkChart extends Struct { /** The struct size in bytes. */ public static final int SIZEOF; public static final int ALIGNOF; /** The struct member offsets. */ public static final int SLOT, X, Y, W, H, SLOTS; static { Layout layout = __struct( __member(4), __member(4), __member(4), __member(4), __member(4), __array(NkChartSlot.SIZEOF, NkChartSlot.ALIGNOF, 4) ); SIZEOF = layout.getSize(); ALIGNOF = layout.getAlignment(); SLOT = layout.offsetof(0); X = layout.offsetof(1); Y = layout.offsetof(2); W = layout.offsetof(3); H = layout.offsetof(4); SLOTS = layout.offsetof(5); } NkChart(long address, ByteBuffer container) { super(address, container); } /** * Creates a {@link NkChart} 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 NkChart(ByteBuffer container) { this(memAddress(container), checkContainer(container, SIZEOF)); } @Override public int sizeof() { return SIZEOF; } /** Returns the value of the {@code slot} field. */ public int slot() { return nslot(address()); } /** Returns the value of the {@code x} field. */ public float x() { return nx(address()); } /** Returns the value of the {@code y} field. */ public float y() { return ny(address()); } /** Returns the value of the {@code w} field. */ public float w() { return nw(address()); } /** Returns the value of the {@code h} field. */ public float h() { return nh(address()); } /** Returns a {@link NkChartSlot}.Buffer view of the {@code slots} field. */ @NativeType("struct nk_chart_slot[4]") public NkChartSlot.Buffer slots() { return nslots(address()); } /** Returns a {@link NkChartSlot} view of the struct at the specified index of the {@code slots} field. */ @NativeType("struct nk_chart_slot") public NkChartSlot slots(int index) { return nslots(address(), index); } // ----------------------------------- /** Returns a new {@link NkChart} instance for the specified memory address or {@code null} if the address is {@code NULL}. */ public static NkChart create(long address) { return address == NULL ? null : new NkChart(address, null); } /** * Create a {@link NkChart.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); } // ----------------------------------- /** Unsafe version of {@link #slot}. */ public static int nslot(long struct) { return memGetInt(struct + NkChart.SLOT); } /** Unsafe version of {@link #x}. */ public static float nx(long struct) { return memGetFloat(struct + NkChart.X); } /** Unsafe version of {@link #y}. */ public static float ny(long struct) { return memGetFloat(struct + NkChart.Y); } /** Unsafe version of {@link #w}. */ public static float nw(long struct) { return memGetFloat(struct + NkChart.W); } /** Unsafe version of {@link #h}. */ public static float nh(long struct) { return memGetFloat(struct + NkChart.H); } /** Unsafe version of {@link #slots}. */ public static NkChartSlot.Buffer nslots(long struct) { return NkChartSlot.create(struct + NkChart.SLOTS, 4); } /** Unsafe version of {@link #slots(int) slots}. */ public static NkChartSlot nslots(long struct, int index) { if (CHECKS) { check(index, 4); } return NkChartSlot.create(struct + NkChart.SLOTS + index * NkChartSlot.SIZEOF); } // ----------------------------------- /** An array of {@link NkChart} structs. */ public static class Buffer extends StructBuffer { /** * Creates a new {@link NkChart.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 NkChart#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 NkChart newInstance(long address) { return new NkChart(address, container); } @Override public int sizeof() { return SIZEOF; } /** Returns the value of the {@code slot} field. */ public int slot() { return NkChart.nslot(address()); } /** Returns the value of the {@code x} field. */ public float x() { return NkChart.nx(address()); } /** Returns the value of the {@code y} field. */ public float y() { return NkChart.ny(address()); } /** Returns the value of the {@code w} field. */ public float w() { return NkChart.nw(address()); } /** Returns the value of the {@code h} field. */ public float h() { return NkChart.nh(address()); } /** Returns a {@link NkChartSlot}.Buffer view of the {@code slots} field. */ @NativeType("struct nk_chart_slot[4]") public NkChartSlot.Buffer slots() { return NkChart.nslots(address()); } /** Returns a {@link NkChartSlot} view of the struct at the specified index of the {@code slots} field. */ @NativeType("struct nk_chart_slot") public NkChartSlot slots(int index) { return NkChart.nslots(address(), index); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy