org.lwjgl.util.remotery.RMTSampleIterator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lwjgl-remotery Show documentation
Show all versions of lwjgl-remotery Show documentation
A realtime CPU/GPU profiler hosted in a single C file with a viewer that runs in a web browser.
The newest version!
/*
* Copyright LWJGL. All rights reserved.
* License terms: https://www.lwjgl.org/license
* MACHINE GENERATED FILE, DO NOT EDIT
*/
package org.lwjgl.util.remotery;
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.*;
/**
* Struct to hold iterator info.
*
* Layout
*
*
* struct rmtSampleIterator {
* rmtSample * sample;
* rmtSample * initial;
* }
*/
@NativeType("struct rmtSampleIterator")
public class RMTSampleIterator 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
SAMPLE,
INITIAL;
static {
Layout layout = __struct(
__member(POINTER_SIZE),
__member(POINTER_SIZE)
);
SIZEOF = layout.getSize();
ALIGNOF = layout.getAlignment();
SAMPLE = layout.offsetof(0);
INITIAL = layout.offsetof(1);
}
protected RMTSampleIterator(long address, @Nullable ByteBuffer container) {
super(address, container);
}
@Override
protected RMTSampleIterator create(long address, @Nullable ByteBuffer container) {
return new RMTSampleIterator(address, container);
}
/**
* Creates a {@code RMTSampleIterator} 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 RMTSampleIterator(ByteBuffer container) {
super(memAddress(container), __checkContainer(container, SIZEOF));
}
@Override
public int sizeof() { return SIZEOF; }
/** @return the value of the {@code sample} field. */
@NativeType("rmtSample *")
public long sample() { return nsample(address()); }
// -----------------------------------
/** Returns a new {@code RMTSampleIterator} instance allocated with {@link MemoryUtil#memAlloc memAlloc}. The instance must be explicitly freed. */
public static RMTSampleIterator malloc() {
return new RMTSampleIterator(nmemAllocChecked(SIZEOF), null);
}
/** Returns a new {@code RMTSampleIterator} instance allocated with {@link MemoryUtil#memCalloc memCalloc}. The instance must be explicitly freed. */
public static RMTSampleIterator calloc() {
return new RMTSampleIterator(nmemCallocChecked(1, SIZEOF), null);
}
/** Returns a new {@code RMTSampleIterator} instance allocated with {@link BufferUtils}. */
public static RMTSampleIterator create() {
ByteBuffer container = BufferUtils.createByteBuffer(SIZEOF);
return new RMTSampleIterator(memAddress(container), container);
}
/** Returns a new {@code RMTSampleIterator} instance for the specified memory address. */
public static RMTSampleIterator create(long address) {
return new RMTSampleIterator(address, null);
}
/** Like {@link #create(long) create}, but returns {@code null} if {@code address} is {@code NULL}. */
public static @Nullable RMTSampleIterator createSafe(long address) {
return address == NULL ? null : new RMTSampleIterator(address, null);
}
/**
* Returns a new {@code RMTSampleIterator} instance allocated on the specified {@link MemoryStack}.
*
* @param stack the stack from which to allocate
*/
public static RMTSampleIterator malloc(MemoryStack stack) {
return new RMTSampleIterator(stack.nmalloc(ALIGNOF, SIZEOF), null);
}
/**
* Returns a new {@code RMTSampleIterator} instance allocated on the specified {@link MemoryStack} and initializes all its bits to zero.
*
* @param stack the stack from which to allocate
*/
public static RMTSampleIterator calloc(MemoryStack stack) {
return new RMTSampleIterator(stack.ncalloc(ALIGNOF, 1, SIZEOF), null);
}
// -----------------------------------
/** Unsafe version of {@link #sample}. */
public static long nsample(long struct) { return memGetAddress(struct + RMTSampleIterator.SAMPLE); }
public static long ninitial(long struct) { return memGetAddress(struct + RMTSampleIterator.INITIAL); }
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy