code
stringlengths
11
173k
docstring
stringlengths
2
593k
func_name
stringlengths
2
189
language
stringclasses
1 value
repo
stringclasses
833 values
path
stringlengths
11
294
url
stringlengths
60
339
license
stringclasses
4 values
public static FT_PaintRotate.@Nullable Buffer createSafe(long address, int capacity) { return address == NULL ? null : new Buffer(address, capacity); }
Create a {@link FT_PaintRotate.Buffer} instance at the specified memory. @param address the memory address @param capacity the buffer capacity public static FT_PaintRotate.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}.
FT_PaintRotate::createSafe
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_PaintRotate.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_PaintRotate.java
BSD-3-Clause
public static FT_OpaquePaint npaint(long struct) { return FT_OpaquePaint.create(struct + FT_PaintRotate.PAINT); }
Create a {@link FT_PaintRotate.Buffer} instance at the specified memory. @param address the memory address @param capacity the buffer capacity public static FT_PaintRotate.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 FT_PaintRotate.@Nullable Buffer createSafe(long address, int capacity) { return address == NULL ? null : new Buffer(address, capacity); } // ----------------------------------- /** Unsafe version of {@link #paint}.
FT_PaintRotate::npaint
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_PaintRotate.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_PaintRotate.java
BSD-3-Clause
public static long nangle(long struct) { return memGetCLong(struct + FT_PaintRotate.ANGLE); }
Create a {@link FT_PaintRotate.Buffer} instance at the specified memory. @param address the memory address @param capacity the buffer capacity public static FT_PaintRotate.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 FT_PaintRotate.@Nullable Buffer createSafe(long address, int capacity) { return address == NULL ? null : new Buffer(address, capacity); } // ----------------------------------- /** Unsafe version of {@link #paint}. public static FT_OpaquePaint npaint(long struct) { return FT_OpaquePaint.create(struct + FT_PaintRotate.PAINT); } /** Unsafe version of {@link #angle}.
FT_PaintRotate::nangle
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_PaintRotate.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_PaintRotate.java
BSD-3-Clause
public static long ncenter_x(long struct) { return memGetCLong(struct + FT_PaintRotate.CENTER_X); }
Create a {@link FT_PaintRotate.Buffer} instance at the specified memory. @param address the memory address @param capacity the buffer capacity public static FT_PaintRotate.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 FT_PaintRotate.@Nullable Buffer createSafe(long address, int capacity) { return address == NULL ? null : new Buffer(address, capacity); } // ----------------------------------- /** Unsafe version of {@link #paint}. public static FT_OpaquePaint npaint(long struct) { return FT_OpaquePaint.create(struct + FT_PaintRotate.PAINT); } /** Unsafe version of {@link #angle}. public static long nangle(long struct) { return memGetCLong(struct + FT_PaintRotate.ANGLE); } /** Unsafe version of {@link #center_x}.
FT_PaintRotate::ncenter_x
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_PaintRotate.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_PaintRotate.java
BSD-3-Clause
public static long ncenter_y(long struct) { return memGetCLong(struct + FT_PaintRotate.CENTER_Y); }
Create a {@link FT_PaintRotate.Buffer} instance at the specified memory. @param address the memory address @param capacity the buffer capacity public static FT_PaintRotate.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 FT_PaintRotate.@Nullable Buffer createSafe(long address, int capacity) { return address == NULL ? null : new Buffer(address, capacity); } // ----------------------------------- /** Unsafe version of {@link #paint}. public static FT_OpaquePaint npaint(long struct) { return FT_OpaquePaint.create(struct + FT_PaintRotate.PAINT); } /** Unsafe version of {@link #angle}. public static long nangle(long struct) { return memGetCLong(struct + FT_PaintRotate.ANGLE); } /** Unsafe version of {@link #center_x}. public static long ncenter_x(long struct) { return memGetCLong(struct + FT_PaintRotate.CENTER_X); } /** Unsafe version of {@link #center_y}.
FT_PaintRotate::ncenter_y
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_PaintRotate.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_PaintRotate.java
BSD-3-Clause
public FT_PaintSweepGradient(ByteBuffer container) { super(memAddress(container), __checkContainer(container, SIZEOF)); }
Creates a {@code FT_PaintSweepGradient} 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. <p>The created instance holds a strong reference to the container object.</p>
FT_PaintSweepGradient::FT_PaintSweepGradient
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_PaintSweepGradient.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_PaintSweepGradient.java
BSD-3-Clause
public FT_Vector center() { return ncenter(address()); }
Creates a {@code FT_PaintSweepGradient} 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. <p>The created instance holds a strong reference to the container object.</p> public FT_PaintSweepGradient(ByteBuffer container) { super(memAddress(container), __checkContainer(container, SIZEOF)); } @Override public int sizeof() { return SIZEOF; } /** @return a {@link FT_ColorLine} view of the {@code colorline} field. public FT_ColorLine colorline() { return ncolorline(address()); } /** @return a {@link FT_Vector} view of the {@code center} field.
FT_PaintSweepGradient::center
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_PaintSweepGradient.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_PaintSweepGradient.java
BSD-3-Clause
public static FT_PaintSweepGradient create(long address) { return new FT_PaintSweepGradient(address, null); }
Creates a {@code FT_PaintSweepGradient} 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. <p>The created instance holds a strong reference to the container object.</p> public FT_PaintSweepGradient(ByteBuffer container) { super(memAddress(container), __checkContainer(container, SIZEOF)); } @Override public int sizeof() { return SIZEOF; } /** @return a {@link FT_ColorLine} view of the {@code colorline} field. public FT_ColorLine colorline() { return ncolorline(address()); } /** @return a {@link FT_Vector} view of the {@code center} field. public FT_Vector center() { return ncenter(address()); } /** @return the value of the {@code start_angle} field. @NativeType("FT_Fixed") public long start_angle() { return nstart_angle(address()); } /** @return the value of the {@code end_angle} field. @NativeType("FT_Fixed") public long end_angle() { return nend_angle(address()); } // ----------------------------------- /** Returns a new {@code FT_PaintSweepGradient} instance for the specified memory address.
FT_PaintSweepGradient::create
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_PaintSweepGradient.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_PaintSweepGradient.java
BSD-3-Clause
public static @Nullable FT_PaintSweepGradient createSafe(long address) { return address == NULL ? null : new FT_PaintSweepGradient(address, null); }
Creates a {@code FT_PaintSweepGradient} 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. <p>The created instance holds a strong reference to the container object.</p> public FT_PaintSweepGradient(ByteBuffer container) { super(memAddress(container), __checkContainer(container, SIZEOF)); } @Override public int sizeof() { return SIZEOF; } /** @return a {@link FT_ColorLine} view of the {@code colorline} field. public FT_ColorLine colorline() { return ncolorline(address()); } /** @return a {@link FT_Vector} view of the {@code center} field. public FT_Vector center() { return ncenter(address()); } /** @return the value of the {@code start_angle} field. @NativeType("FT_Fixed") public long start_angle() { return nstart_angle(address()); } /** @return the value of the {@code end_angle} field. @NativeType("FT_Fixed") public long end_angle() { return nend_angle(address()); } // ----------------------------------- /** Returns a new {@code FT_PaintSweepGradient} instance for the specified memory address. public static FT_PaintSweepGradient create(long address) { return new FT_PaintSweepGradient(address, null); } /** Like {@link #create(long) create}, but returns {@code null} if {@code address} is {@code NULL}.
FT_PaintSweepGradient::createSafe
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_PaintSweepGradient.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_PaintSweepGradient.java
BSD-3-Clause
public static FT_PaintSweepGradient.Buffer create(long address, int capacity) { return new Buffer(address, capacity); }
Create a {@link FT_PaintSweepGradient.Buffer} instance at the specified memory. @param address the memory address @param capacity the buffer capacity
FT_PaintSweepGradient::create
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_PaintSweepGradient.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_PaintSweepGradient.java
BSD-3-Clause
public static FT_PaintSweepGradient.@Nullable Buffer createSafe(long address, int capacity) { return address == NULL ? null : new Buffer(address, capacity); }
Create a {@link FT_PaintSweepGradient.Buffer} instance at the specified memory. @param address the memory address @param capacity the buffer capacity public static FT_PaintSweepGradient.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}.
FT_PaintSweepGradient::createSafe
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_PaintSweepGradient.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_PaintSweepGradient.java
BSD-3-Clause
public static FT_ColorLine ncolorline(long struct) { return FT_ColorLine.create(struct + FT_PaintSweepGradient.COLORLINE); }
Create a {@link FT_PaintSweepGradient.Buffer} instance at the specified memory. @param address the memory address @param capacity the buffer capacity public static FT_PaintSweepGradient.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 FT_PaintSweepGradient.@Nullable Buffer createSafe(long address, int capacity) { return address == NULL ? null : new Buffer(address, capacity); } // ----------------------------------- /** Unsafe version of {@link #colorline}.
FT_PaintSweepGradient::ncolorline
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_PaintSweepGradient.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_PaintSweepGradient.java
BSD-3-Clause
public static FT_Vector ncenter(long struct) { return FT_Vector.create(struct + FT_PaintSweepGradient.CENTER); }
Create a {@link FT_PaintSweepGradient.Buffer} instance at the specified memory. @param address the memory address @param capacity the buffer capacity public static FT_PaintSweepGradient.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 FT_PaintSweepGradient.@Nullable Buffer createSafe(long address, int capacity) { return address == NULL ? null : new Buffer(address, capacity); } // ----------------------------------- /** Unsafe version of {@link #colorline}. public static FT_ColorLine ncolorline(long struct) { return FT_ColorLine.create(struct + FT_PaintSweepGradient.COLORLINE); } /** Unsafe version of {@link #center}.
FT_PaintSweepGradient::ncenter
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_PaintSweepGradient.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_PaintSweepGradient.java
BSD-3-Clause
public static long nstart_angle(long struct) { return memGetCLong(struct + FT_PaintSweepGradient.START_ANGLE); }
Create a {@link FT_PaintSweepGradient.Buffer} instance at the specified memory. @param address the memory address @param capacity the buffer capacity public static FT_PaintSweepGradient.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 FT_PaintSweepGradient.@Nullable Buffer createSafe(long address, int capacity) { return address == NULL ? null : new Buffer(address, capacity); } // ----------------------------------- /** Unsafe version of {@link #colorline}. public static FT_ColorLine ncolorline(long struct) { return FT_ColorLine.create(struct + FT_PaintSweepGradient.COLORLINE); } /** Unsafe version of {@link #center}. public static FT_Vector ncenter(long struct) { return FT_Vector.create(struct + FT_PaintSweepGradient.CENTER); } /** Unsafe version of {@link #start_angle}.
FT_PaintSweepGradient::nstart_angle
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_PaintSweepGradient.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_PaintSweepGradient.java
BSD-3-Clause
public static long nend_angle(long struct) { return memGetCLong(struct + FT_PaintSweepGradient.END_ANGLE); }
Create a {@link FT_PaintSweepGradient.Buffer} instance at the specified memory. @param address the memory address @param capacity the buffer capacity public static FT_PaintSweepGradient.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 FT_PaintSweepGradient.@Nullable Buffer createSafe(long address, int capacity) { return address == NULL ? null : new Buffer(address, capacity); } // ----------------------------------- /** Unsafe version of {@link #colorline}. public static FT_ColorLine ncolorline(long struct) { return FT_ColorLine.create(struct + FT_PaintSweepGradient.COLORLINE); } /** Unsafe version of {@link #center}. public static FT_Vector ncenter(long struct) { return FT_Vector.create(struct + FT_PaintSweepGradient.CENTER); } /** Unsafe version of {@link #start_angle}. public static long nstart_angle(long struct) { return memGetCLong(struct + FT_PaintSweepGradient.START_ANGLE); } /** Unsafe version of {@link #end_angle}.
FT_PaintSweepGradient::nend_angle
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_PaintSweepGradient.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_PaintSweepGradient.java
BSD-3-Clause
public FT_ColorLine colorline() { return FT_PaintSweepGradient.ncolorline(address()); }
Creates a new {@code FT_PaintSweepGradient.Buffer} instance backed by the specified container. <p>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 FT_PaintSweepGradient#SIZEOF}, and its mark will be undefined.</p> <p>The created buffer instance holds a strong reference to the container object.</p> 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 FT_PaintSweepGradient getElementFactory() { return ELEMENT_FACTORY; } /** @return a {@link FT_ColorLine} view of the {@code colorline} field.
Buffer::colorline
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_PaintSweepGradient.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_PaintSweepGradient.java
BSD-3-Clause
public FT_Vector center() { return FT_PaintSweepGradient.ncenter(address()); }
Creates a new {@code FT_PaintSweepGradient.Buffer} instance backed by the specified container. <p>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 FT_PaintSweepGradient#SIZEOF}, and its mark will be undefined.</p> <p>The created buffer instance holds a strong reference to the container object.</p> 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 FT_PaintSweepGradient getElementFactory() { return ELEMENT_FACTORY; } /** @return a {@link FT_ColorLine} view of the {@code colorline} field. public FT_ColorLine colorline() { return FT_PaintSweepGradient.ncolorline(address()); } /** @return a {@link FT_Vector} view of the {@code center} field.
Buffer::center
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_PaintSweepGradient.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_PaintSweepGradient.java
BSD-3-Clause
public FT_Bitmap_Size(ByteBuffer container) { super(memAddress(container), __checkContainer(container, SIZEOF)); }
Creates a {@code FT_Bitmap_Size} 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. <p>The created instance holds a strong reference to the container object.</p>
FT_Bitmap_Size::FT_Bitmap_Size
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Bitmap_Size.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Bitmap_Size.java
BSD-3-Clause
public static FT_Bitmap_Size create(long address) { return new FT_Bitmap_Size(address, null); }
Creates a {@code FT_Bitmap_Size} 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. <p>The created instance holds a strong reference to the container object.</p> public FT_Bitmap_Size(ByteBuffer container) { super(memAddress(container), __checkContainer(container, SIZEOF)); } @Override public int sizeof() { return SIZEOF; } /** @return the value of the {@code height} field. @NativeType("FT_Short") public short height() { return nheight(address()); } /** @return the value of the {@code width} field. @NativeType("FT_Short") public short width() { return nwidth(address()); } /** @return the value of the {@code size} field. @NativeType("FT_Pos") public long size() { return nsize(address()); } /** @return the value of the {@code x_ppem} field. @NativeType("FT_Pos") public long x_ppem() { return nx_ppem(address()); } /** @return the value of the {@code y_ppem} field. @NativeType("FT_Pos") public long y_ppem() { return ny_ppem(address()); } // ----------------------------------- /** Returns a new {@code FT_Bitmap_Size} instance for the specified memory address.
FT_Bitmap_Size::create
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Bitmap_Size.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Bitmap_Size.java
BSD-3-Clause
public static @Nullable FT_Bitmap_Size createSafe(long address) { return address == NULL ? null : new FT_Bitmap_Size(address, null); }
Creates a {@code FT_Bitmap_Size} 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. <p>The created instance holds a strong reference to the container object.</p> public FT_Bitmap_Size(ByteBuffer container) { super(memAddress(container), __checkContainer(container, SIZEOF)); } @Override public int sizeof() { return SIZEOF; } /** @return the value of the {@code height} field. @NativeType("FT_Short") public short height() { return nheight(address()); } /** @return the value of the {@code width} field. @NativeType("FT_Short") public short width() { return nwidth(address()); } /** @return the value of the {@code size} field. @NativeType("FT_Pos") public long size() { return nsize(address()); } /** @return the value of the {@code x_ppem} field. @NativeType("FT_Pos") public long x_ppem() { return nx_ppem(address()); } /** @return the value of the {@code y_ppem} field. @NativeType("FT_Pos") public long y_ppem() { return ny_ppem(address()); } // ----------------------------------- /** Returns a new {@code FT_Bitmap_Size} instance for the specified memory address. public static FT_Bitmap_Size create(long address) { return new FT_Bitmap_Size(address, null); } /** Like {@link #create(long) create}, but returns {@code null} if {@code address} is {@code NULL}.
FT_Bitmap_Size::createSafe
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Bitmap_Size.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Bitmap_Size.java
BSD-3-Clause
public static FT_Bitmap_Size.Buffer create(long address, int capacity) { return new Buffer(address, capacity); }
Create a {@link FT_Bitmap_Size.Buffer} instance at the specified memory. @param address the memory address @param capacity the buffer capacity
FT_Bitmap_Size::create
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Bitmap_Size.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Bitmap_Size.java
BSD-3-Clause
public static FT_Bitmap_Size.@Nullable Buffer createSafe(long address, int capacity) { return address == NULL ? null : new Buffer(address, capacity); }
Create a {@link FT_Bitmap_Size.Buffer} instance at the specified memory. @param address the memory address @param capacity the buffer capacity public static FT_Bitmap_Size.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}.
FT_Bitmap_Size::createSafe
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Bitmap_Size.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Bitmap_Size.java
BSD-3-Clause
public static short nheight(long struct) { return memGetShort(struct + FT_Bitmap_Size.HEIGHT); }
Create a {@link FT_Bitmap_Size.Buffer} instance at the specified memory. @param address the memory address @param capacity the buffer capacity public static FT_Bitmap_Size.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 FT_Bitmap_Size.@Nullable Buffer createSafe(long address, int capacity) { return address == NULL ? null : new Buffer(address, capacity); } // ----------------------------------- /** Unsafe version of {@link #height}.
FT_Bitmap_Size::nheight
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Bitmap_Size.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Bitmap_Size.java
BSD-3-Clause
public static short nwidth(long struct) { return memGetShort(struct + FT_Bitmap_Size.WIDTH); }
Create a {@link FT_Bitmap_Size.Buffer} instance at the specified memory. @param address the memory address @param capacity the buffer capacity public static FT_Bitmap_Size.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 FT_Bitmap_Size.@Nullable Buffer createSafe(long address, int capacity) { return address == NULL ? null : new Buffer(address, capacity); } // ----------------------------------- /** Unsafe version of {@link #height}. public static short nheight(long struct) { return memGetShort(struct + FT_Bitmap_Size.HEIGHT); } /** Unsafe version of {@link #width}.
FT_Bitmap_Size::nwidth
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Bitmap_Size.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Bitmap_Size.java
BSD-3-Clause
public static long nsize(long struct) { return memGetCLong(struct + FT_Bitmap_Size.SIZE); }
Create a {@link FT_Bitmap_Size.Buffer} instance at the specified memory. @param address the memory address @param capacity the buffer capacity public static FT_Bitmap_Size.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 FT_Bitmap_Size.@Nullable Buffer createSafe(long address, int capacity) { return address == NULL ? null : new Buffer(address, capacity); } // ----------------------------------- /** Unsafe version of {@link #height}. public static short nheight(long struct) { return memGetShort(struct + FT_Bitmap_Size.HEIGHT); } /** Unsafe version of {@link #width}. public static short nwidth(long struct) { return memGetShort(struct + FT_Bitmap_Size.WIDTH); } /** Unsafe version of {@link #size}.
FT_Bitmap_Size::nsize
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Bitmap_Size.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Bitmap_Size.java
BSD-3-Clause
public static long nx_ppem(long struct) { return memGetCLong(struct + FT_Bitmap_Size.X_PPEM); }
Create a {@link FT_Bitmap_Size.Buffer} instance at the specified memory. @param address the memory address @param capacity the buffer capacity public static FT_Bitmap_Size.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 FT_Bitmap_Size.@Nullable Buffer createSafe(long address, int capacity) { return address == NULL ? null : new Buffer(address, capacity); } // ----------------------------------- /** Unsafe version of {@link #height}. public static short nheight(long struct) { return memGetShort(struct + FT_Bitmap_Size.HEIGHT); } /** Unsafe version of {@link #width}. public static short nwidth(long struct) { return memGetShort(struct + FT_Bitmap_Size.WIDTH); } /** Unsafe version of {@link #size}. public static long nsize(long struct) { return memGetCLong(struct + FT_Bitmap_Size.SIZE); } /** Unsafe version of {@link #x_ppem}.
FT_Bitmap_Size::nx_ppem
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Bitmap_Size.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Bitmap_Size.java
BSD-3-Clause
public static long ny_ppem(long struct) { return memGetCLong(struct + FT_Bitmap_Size.Y_PPEM); }
Create a {@link FT_Bitmap_Size.Buffer} instance at the specified memory. @param address the memory address @param capacity the buffer capacity public static FT_Bitmap_Size.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 FT_Bitmap_Size.@Nullable Buffer createSafe(long address, int capacity) { return address == NULL ? null : new Buffer(address, capacity); } // ----------------------------------- /** Unsafe version of {@link #height}. public static short nheight(long struct) { return memGetShort(struct + FT_Bitmap_Size.HEIGHT); } /** Unsafe version of {@link #width}. public static short nwidth(long struct) { return memGetShort(struct + FT_Bitmap_Size.WIDTH); } /** Unsafe version of {@link #size}. public static long nsize(long struct) { return memGetCLong(struct + FT_Bitmap_Size.SIZE); } /** Unsafe version of {@link #x_ppem}. public static long nx_ppem(long struct) { return memGetCLong(struct + FT_Bitmap_Size.X_PPEM); } /** Unsafe version of {@link #y_ppem}.
FT_Bitmap_Size::ny_ppem
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Bitmap_Size.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Bitmap_Size.java
BSD-3-Clause
public FT_Outline_Funcs(ByteBuffer container) { super(memAddress(container), __checkContainer(container, SIZEOF)); }
Creates a {@code FT_Outline_Funcs} 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. <p>The created instance holds a strong reference to the container object.</p>
FT_Outline_Funcs::FT_Outline_Funcs
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
BSD-3-Clause
public @Nullable FT_Outline_MoveToFunc move_to() { return nmove_to(address()); }
Creates a {@code FT_Outline_Funcs} 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. <p>The created instance holds a strong reference to the container object.</p> public FT_Outline_Funcs(ByteBuffer container) { super(memAddress(container), __checkContainer(container, SIZEOF)); } @Override public int sizeof() { return SIZEOF; } /** @return the value of the {@code move_to} field.
FT_Outline_Funcs::move_to
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
BSD-3-Clause
public @Nullable FT_Outline_LineToFunc line_to() { return nline_to(address()); }
Creates a {@code FT_Outline_Funcs} 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. <p>The created instance holds a strong reference to the container object.</p> public FT_Outline_Funcs(ByteBuffer container) { super(memAddress(container), __checkContainer(container, SIZEOF)); } @Override public int sizeof() { return SIZEOF; } /** @return the value of the {@code move_to} field. public @Nullable FT_Outline_MoveToFunc move_to() { return nmove_to(address()); } /** @return the value of the {@code line_to} field.
FT_Outline_Funcs::line_to
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
BSD-3-Clause
public @Nullable FT_Outline_ConicToFunc conic_to() { return nconic_to(address()); }
Creates a {@code FT_Outline_Funcs} 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. <p>The created instance holds a strong reference to the container object.</p> public FT_Outline_Funcs(ByteBuffer container) { super(memAddress(container), __checkContainer(container, SIZEOF)); } @Override public int sizeof() { return SIZEOF; } /** @return the value of the {@code move_to} field. public @Nullable FT_Outline_MoveToFunc move_to() { return nmove_to(address()); } /** @return the value of the {@code line_to} field. public @Nullable FT_Outline_LineToFunc line_to() { return nline_to(address()); } /** @return the value of the {@code conic_to} field.
FT_Outline_Funcs::conic_to
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
BSD-3-Clause
public @Nullable FT_Outline_CubicToFunc cubic_to() { return ncubic_to(address()); }
Creates a {@code FT_Outline_Funcs} 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. <p>The created instance holds a strong reference to the container object.</p> public FT_Outline_Funcs(ByteBuffer container) { super(memAddress(container), __checkContainer(container, SIZEOF)); } @Override public int sizeof() { return SIZEOF; } /** @return the value of the {@code move_to} field. public @Nullable FT_Outline_MoveToFunc move_to() { return nmove_to(address()); } /** @return the value of the {@code line_to} field. public @Nullable FT_Outline_LineToFunc line_to() { return nline_to(address()); } /** @return the value of the {@code conic_to} field. public @Nullable FT_Outline_ConicToFunc conic_to() { return nconic_to(address()); } /** @return the value of the {@code cubic_to} field.
FT_Outline_Funcs::cubic_to
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
BSD-3-Clause
public int shift() { return nshift(address()); }
Creates a {@code FT_Outline_Funcs} 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. <p>The created instance holds a strong reference to the container object.</p> public FT_Outline_Funcs(ByteBuffer container) { super(memAddress(container), __checkContainer(container, SIZEOF)); } @Override public int sizeof() { return SIZEOF; } /** @return the value of the {@code move_to} field. public @Nullable FT_Outline_MoveToFunc move_to() { return nmove_to(address()); } /** @return the value of the {@code line_to} field. public @Nullable FT_Outline_LineToFunc line_to() { return nline_to(address()); } /** @return the value of the {@code conic_to} field. public @Nullable FT_Outline_ConicToFunc conic_to() { return nconic_to(address()); } /** @return the value of the {@code cubic_to} field. public @Nullable FT_Outline_CubicToFunc cubic_to() { return ncubic_to(address()); } /** @return the value of the {@code shift} field.
FT_Outline_Funcs::shift
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
BSD-3-Clause
public FT_Outline_Funcs move_to(@Nullable @NativeType("FT_Outline_MoveToFunc") FT_Outline_MoveToFuncI value) { nmove_to(address(), value); return this; }
Creates a {@code FT_Outline_Funcs} 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. <p>The created instance holds a strong reference to the container object.</p> public FT_Outline_Funcs(ByteBuffer container) { super(memAddress(container), __checkContainer(container, SIZEOF)); } @Override public int sizeof() { return SIZEOF; } /** @return the value of the {@code move_to} field. public @Nullable FT_Outline_MoveToFunc move_to() { return nmove_to(address()); } /** @return the value of the {@code line_to} field. public @Nullable FT_Outline_LineToFunc line_to() { return nline_to(address()); } /** @return the value of the {@code conic_to} field. public @Nullable FT_Outline_ConicToFunc conic_to() { return nconic_to(address()); } /** @return the value of the {@code cubic_to} field. public @Nullable FT_Outline_CubicToFunc cubic_to() { return ncubic_to(address()); } /** @return the value of the {@code shift} field. public int shift() { return nshift(address()); } /** @return the value of the {@code delta} field. @NativeType("FT_Pos") public long delta() { return ndelta(address()); } /** Sets the specified value to the {@code move_to} field.
FT_Outline_Funcs::move_to
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
BSD-3-Clause
public FT_Outline_Funcs line_to(@Nullable @NativeType("FT_Outline_LineToFunc") FT_Outline_LineToFuncI value) { nline_to(address(), value); return this; }
Creates a {@code FT_Outline_Funcs} 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. <p>The created instance holds a strong reference to the container object.</p> public FT_Outline_Funcs(ByteBuffer container) { super(memAddress(container), __checkContainer(container, SIZEOF)); } @Override public int sizeof() { return SIZEOF; } /** @return the value of the {@code move_to} field. public @Nullable FT_Outline_MoveToFunc move_to() { return nmove_to(address()); } /** @return the value of the {@code line_to} field. public @Nullable FT_Outline_LineToFunc line_to() { return nline_to(address()); } /** @return the value of the {@code conic_to} field. public @Nullable FT_Outline_ConicToFunc conic_to() { return nconic_to(address()); } /** @return the value of the {@code cubic_to} field. public @Nullable FT_Outline_CubicToFunc cubic_to() { return ncubic_to(address()); } /** @return the value of the {@code shift} field. public int shift() { return nshift(address()); } /** @return the value of the {@code delta} field. @NativeType("FT_Pos") public long delta() { return ndelta(address()); } /** Sets the specified value to the {@code move_to} field. public FT_Outline_Funcs move_to(@Nullable @NativeType("FT_Outline_MoveToFunc") FT_Outline_MoveToFuncI value) { nmove_to(address(), value); return this; } /** Sets the specified value to the {@code line_to} field.
FT_Outline_Funcs::line_to
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
BSD-3-Clause
public FT_Outline_Funcs conic_to(@Nullable @NativeType("FT_Outline_ConicToFunc") FT_Outline_ConicToFuncI value) { nconic_to(address(), value); return this; }
Creates a {@code FT_Outline_Funcs} 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. <p>The created instance holds a strong reference to the container object.</p> public FT_Outline_Funcs(ByteBuffer container) { super(memAddress(container), __checkContainer(container, SIZEOF)); } @Override public int sizeof() { return SIZEOF; } /** @return the value of the {@code move_to} field. public @Nullable FT_Outline_MoveToFunc move_to() { return nmove_to(address()); } /** @return the value of the {@code line_to} field. public @Nullable FT_Outline_LineToFunc line_to() { return nline_to(address()); } /** @return the value of the {@code conic_to} field. public @Nullable FT_Outline_ConicToFunc conic_to() { return nconic_to(address()); } /** @return the value of the {@code cubic_to} field. public @Nullable FT_Outline_CubicToFunc cubic_to() { return ncubic_to(address()); } /** @return the value of the {@code shift} field. public int shift() { return nshift(address()); } /** @return the value of the {@code delta} field. @NativeType("FT_Pos") public long delta() { return ndelta(address()); } /** Sets the specified value to the {@code move_to} field. public FT_Outline_Funcs move_to(@Nullable @NativeType("FT_Outline_MoveToFunc") FT_Outline_MoveToFuncI value) { nmove_to(address(), value); return this; } /** Sets the specified value to the {@code line_to} field. public FT_Outline_Funcs line_to(@Nullable @NativeType("FT_Outline_LineToFunc") FT_Outline_LineToFuncI value) { nline_to(address(), value); return this; } /** Sets the specified value to the {@code conic_to} field.
FT_Outline_Funcs::conic_to
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
BSD-3-Clause
public FT_Outline_Funcs cubic_to(@Nullable @NativeType("FT_Outline_CubicToFunc") FT_Outline_CubicToFuncI value) { ncubic_to(address(), value); return this; }
Creates a {@code FT_Outline_Funcs} 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. <p>The created instance holds a strong reference to the container object.</p> public FT_Outline_Funcs(ByteBuffer container) { super(memAddress(container), __checkContainer(container, SIZEOF)); } @Override public int sizeof() { return SIZEOF; } /** @return the value of the {@code move_to} field. public @Nullable FT_Outline_MoveToFunc move_to() { return nmove_to(address()); } /** @return the value of the {@code line_to} field. public @Nullable FT_Outline_LineToFunc line_to() { return nline_to(address()); } /** @return the value of the {@code conic_to} field. public @Nullable FT_Outline_ConicToFunc conic_to() { return nconic_to(address()); } /** @return the value of the {@code cubic_to} field. public @Nullable FT_Outline_CubicToFunc cubic_to() { return ncubic_to(address()); } /** @return the value of the {@code shift} field. public int shift() { return nshift(address()); } /** @return the value of the {@code delta} field. @NativeType("FT_Pos") public long delta() { return ndelta(address()); } /** Sets the specified value to the {@code move_to} field. public FT_Outline_Funcs move_to(@Nullable @NativeType("FT_Outline_MoveToFunc") FT_Outline_MoveToFuncI value) { nmove_to(address(), value); return this; } /** Sets the specified value to the {@code line_to} field. public FT_Outline_Funcs line_to(@Nullable @NativeType("FT_Outline_LineToFunc") FT_Outline_LineToFuncI value) { nline_to(address(), value); return this; } /** Sets the specified value to the {@code conic_to} field. public FT_Outline_Funcs conic_to(@Nullable @NativeType("FT_Outline_ConicToFunc") FT_Outline_ConicToFuncI value) { nconic_to(address(), value); return this; } /** Sets the specified value to the {@code cubic_to} field.
FT_Outline_Funcs::cubic_to
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
BSD-3-Clause
public FT_Outline_Funcs shift(int value) { nshift(address(), value); return this; }
Creates a {@code FT_Outline_Funcs} 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. <p>The created instance holds a strong reference to the container object.</p> public FT_Outline_Funcs(ByteBuffer container) { super(memAddress(container), __checkContainer(container, SIZEOF)); } @Override public int sizeof() { return SIZEOF; } /** @return the value of the {@code move_to} field. public @Nullable FT_Outline_MoveToFunc move_to() { return nmove_to(address()); } /** @return the value of the {@code line_to} field. public @Nullable FT_Outline_LineToFunc line_to() { return nline_to(address()); } /** @return the value of the {@code conic_to} field. public @Nullable FT_Outline_ConicToFunc conic_to() { return nconic_to(address()); } /** @return the value of the {@code cubic_to} field. public @Nullable FT_Outline_CubicToFunc cubic_to() { return ncubic_to(address()); } /** @return the value of the {@code shift} field. public int shift() { return nshift(address()); } /** @return the value of the {@code delta} field. @NativeType("FT_Pos") public long delta() { return ndelta(address()); } /** Sets the specified value to the {@code move_to} field. public FT_Outline_Funcs move_to(@Nullable @NativeType("FT_Outline_MoveToFunc") FT_Outline_MoveToFuncI value) { nmove_to(address(), value); return this; } /** Sets the specified value to the {@code line_to} field. public FT_Outline_Funcs line_to(@Nullable @NativeType("FT_Outline_LineToFunc") FT_Outline_LineToFuncI value) { nline_to(address(), value); return this; } /** Sets the specified value to the {@code conic_to} field. public FT_Outline_Funcs conic_to(@Nullable @NativeType("FT_Outline_ConicToFunc") FT_Outline_ConicToFuncI value) { nconic_to(address(), value); return this; } /** Sets the specified value to the {@code cubic_to} field. public FT_Outline_Funcs cubic_to(@Nullable @NativeType("FT_Outline_CubicToFunc") FT_Outline_CubicToFuncI value) { ncubic_to(address(), value); return this; } /** Sets the specified value to the {@code shift} field.
FT_Outline_Funcs::shift
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
BSD-3-Clause
public FT_Outline_Funcs delta(@NativeType("FT_Pos") long value) { ndelta(address(), value); return this; }
Creates a {@code FT_Outline_Funcs} 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. <p>The created instance holds a strong reference to the container object.</p> public FT_Outline_Funcs(ByteBuffer container) { super(memAddress(container), __checkContainer(container, SIZEOF)); } @Override public int sizeof() { return SIZEOF; } /** @return the value of the {@code move_to} field. public @Nullable FT_Outline_MoveToFunc move_to() { return nmove_to(address()); } /** @return the value of the {@code line_to} field. public @Nullable FT_Outline_LineToFunc line_to() { return nline_to(address()); } /** @return the value of the {@code conic_to} field. public @Nullable FT_Outline_ConicToFunc conic_to() { return nconic_to(address()); } /** @return the value of the {@code cubic_to} field. public @Nullable FT_Outline_CubicToFunc cubic_to() { return ncubic_to(address()); } /** @return the value of the {@code shift} field. public int shift() { return nshift(address()); } /** @return the value of the {@code delta} field. @NativeType("FT_Pos") public long delta() { return ndelta(address()); } /** Sets the specified value to the {@code move_to} field. public FT_Outline_Funcs move_to(@Nullable @NativeType("FT_Outline_MoveToFunc") FT_Outline_MoveToFuncI value) { nmove_to(address(), value); return this; } /** Sets the specified value to the {@code line_to} field. public FT_Outline_Funcs line_to(@Nullable @NativeType("FT_Outline_LineToFunc") FT_Outline_LineToFuncI value) { nline_to(address(), value); return this; } /** Sets the specified value to the {@code conic_to} field. public FT_Outline_Funcs conic_to(@Nullable @NativeType("FT_Outline_ConicToFunc") FT_Outline_ConicToFuncI value) { nconic_to(address(), value); return this; } /** Sets the specified value to the {@code cubic_to} field. public FT_Outline_Funcs cubic_to(@Nullable @NativeType("FT_Outline_CubicToFunc") FT_Outline_CubicToFuncI value) { ncubic_to(address(), value); return this; } /** Sets the specified value to the {@code shift} field. public FT_Outline_Funcs shift(int value) { nshift(address(), value); return this; } /** Sets the specified value to the {@code delta} field.
FT_Outline_Funcs::delta
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
BSD-3-Clause
public FT_Outline_Funcs set( FT_Outline_MoveToFuncI move_to, FT_Outline_LineToFuncI line_to, FT_Outline_ConicToFuncI conic_to, FT_Outline_CubicToFuncI cubic_to, int shift, long delta ) { move_to(move_to); line_to(line_to); conic_to(conic_to); cubic_to(cubic_to); shift(shift); delta(delta); return this; }
Creates a {@code FT_Outline_Funcs} 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. <p>The created instance holds a strong reference to the container object.</p> public FT_Outline_Funcs(ByteBuffer container) { super(memAddress(container), __checkContainer(container, SIZEOF)); } @Override public int sizeof() { return SIZEOF; } /** @return the value of the {@code move_to} field. public @Nullable FT_Outline_MoveToFunc move_to() { return nmove_to(address()); } /** @return the value of the {@code line_to} field. public @Nullable FT_Outline_LineToFunc line_to() { return nline_to(address()); } /** @return the value of the {@code conic_to} field. public @Nullable FT_Outline_ConicToFunc conic_to() { return nconic_to(address()); } /** @return the value of the {@code cubic_to} field. public @Nullable FT_Outline_CubicToFunc cubic_to() { return ncubic_to(address()); } /** @return the value of the {@code shift} field. public int shift() { return nshift(address()); } /** @return the value of the {@code delta} field. @NativeType("FT_Pos") public long delta() { return ndelta(address()); } /** Sets the specified value to the {@code move_to} field. public FT_Outline_Funcs move_to(@Nullable @NativeType("FT_Outline_MoveToFunc") FT_Outline_MoveToFuncI value) { nmove_to(address(), value); return this; } /** Sets the specified value to the {@code line_to} field. public FT_Outline_Funcs line_to(@Nullable @NativeType("FT_Outline_LineToFunc") FT_Outline_LineToFuncI value) { nline_to(address(), value); return this; } /** Sets the specified value to the {@code conic_to} field. public FT_Outline_Funcs conic_to(@Nullable @NativeType("FT_Outline_ConicToFunc") FT_Outline_ConicToFuncI value) { nconic_to(address(), value); return this; } /** Sets the specified value to the {@code cubic_to} field. public FT_Outline_Funcs cubic_to(@Nullable @NativeType("FT_Outline_CubicToFunc") FT_Outline_CubicToFuncI value) { ncubic_to(address(), value); return this; } /** Sets the specified value to the {@code shift} field. public FT_Outline_Funcs shift(int value) { nshift(address(), value); return this; } /** Sets the specified value to the {@code delta} field. public FT_Outline_Funcs delta(@NativeType("FT_Pos") long value) { ndelta(address(), value); return this; } /** Initializes this struct with the specified values.
FT_Outline_Funcs::set
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
BSD-3-Clause
public static FT_Outline_Funcs malloc() { return new FT_Outline_Funcs(nmemAllocChecked(SIZEOF), null); }
Copies the specified struct data to this struct. @param src the source struct @return this struct public FT_Outline_Funcs set(FT_Outline_Funcs src) { memCopy(src.address(), address(), SIZEOF); return this; } // ----------------------------------- /** Returns a new {@code FT_Outline_Funcs} instance allocated with {@link MemoryUtil#memAlloc memAlloc}. The instance must be explicitly freed.
FT_Outline_Funcs::malloc
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
BSD-3-Clause
public static FT_Outline_Funcs calloc() { return new FT_Outline_Funcs(nmemCallocChecked(1, SIZEOF), null); }
Copies the specified struct data to this struct. @param src the source struct @return this struct public FT_Outline_Funcs set(FT_Outline_Funcs src) { memCopy(src.address(), address(), SIZEOF); return this; } // ----------------------------------- /** Returns a new {@code FT_Outline_Funcs} instance allocated with {@link MemoryUtil#memAlloc memAlloc}. The instance must be explicitly freed. public static FT_Outline_Funcs malloc() { return new FT_Outline_Funcs(nmemAllocChecked(SIZEOF), null); } /** Returns a new {@code FT_Outline_Funcs} instance allocated with {@link MemoryUtil#memCalloc memCalloc}. The instance must be explicitly freed.
FT_Outline_Funcs::calloc
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
BSD-3-Clause
public static FT_Outline_Funcs create() { ByteBuffer container = BufferUtils.createByteBuffer(SIZEOF); return new FT_Outline_Funcs(memAddress(container), container); }
Copies the specified struct data to this struct. @param src the source struct @return this struct public FT_Outline_Funcs set(FT_Outline_Funcs src) { memCopy(src.address(), address(), SIZEOF); return this; } // ----------------------------------- /** Returns a new {@code FT_Outline_Funcs} instance allocated with {@link MemoryUtil#memAlloc memAlloc}. The instance must be explicitly freed. public static FT_Outline_Funcs malloc() { return new FT_Outline_Funcs(nmemAllocChecked(SIZEOF), null); } /** Returns a new {@code FT_Outline_Funcs} instance allocated with {@link MemoryUtil#memCalloc memCalloc}. The instance must be explicitly freed. public static FT_Outline_Funcs calloc() { return new FT_Outline_Funcs(nmemCallocChecked(1, SIZEOF), null); } /** Returns a new {@code FT_Outline_Funcs} instance allocated with {@link BufferUtils}.
FT_Outline_Funcs::create
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
BSD-3-Clause
public static FT_Outline_Funcs create(long address) { return new FT_Outline_Funcs(address, null); }
Copies the specified struct data to this struct. @param src the source struct @return this struct public FT_Outline_Funcs set(FT_Outline_Funcs src) { memCopy(src.address(), address(), SIZEOF); return this; } // ----------------------------------- /** Returns a new {@code FT_Outline_Funcs} instance allocated with {@link MemoryUtil#memAlloc memAlloc}. The instance must be explicitly freed. public static FT_Outline_Funcs malloc() { return new FT_Outline_Funcs(nmemAllocChecked(SIZEOF), null); } /** Returns a new {@code FT_Outline_Funcs} instance allocated with {@link MemoryUtil#memCalloc memCalloc}. The instance must be explicitly freed. public static FT_Outline_Funcs calloc() { return new FT_Outline_Funcs(nmemCallocChecked(1, SIZEOF), null); } /** Returns a new {@code FT_Outline_Funcs} instance allocated with {@link BufferUtils}. public static FT_Outline_Funcs create() { ByteBuffer container = BufferUtils.createByteBuffer(SIZEOF); return new FT_Outline_Funcs(memAddress(container), container); } /** Returns a new {@code FT_Outline_Funcs} instance for the specified memory address.
FT_Outline_Funcs::create
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
BSD-3-Clause
public static @Nullable FT_Outline_Funcs createSafe(long address) { return address == NULL ? null : new FT_Outline_Funcs(address, null); }
Copies the specified struct data to this struct. @param src the source struct @return this struct public FT_Outline_Funcs set(FT_Outline_Funcs src) { memCopy(src.address(), address(), SIZEOF); return this; } // ----------------------------------- /** Returns a new {@code FT_Outline_Funcs} instance allocated with {@link MemoryUtil#memAlloc memAlloc}. The instance must be explicitly freed. public static FT_Outline_Funcs malloc() { return new FT_Outline_Funcs(nmemAllocChecked(SIZEOF), null); } /** Returns a new {@code FT_Outline_Funcs} instance allocated with {@link MemoryUtil#memCalloc memCalloc}. The instance must be explicitly freed. public static FT_Outline_Funcs calloc() { return new FT_Outline_Funcs(nmemCallocChecked(1, SIZEOF), null); } /** Returns a new {@code FT_Outline_Funcs} instance allocated with {@link BufferUtils}. public static FT_Outline_Funcs create() { ByteBuffer container = BufferUtils.createByteBuffer(SIZEOF); return new FT_Outline_Funcs(memAddress(container), container); } /** Returns a new {@code FT_Outline_Funcs} instance for the specified memory address. public static FT_Outline_Funcs create(long address) { return new FT_Outline_Funcs(address, null); } /** Like {@link #create(long) create}, but returns {@code null} if {@code address} is {@code NULL}.
FT_Outline_Funcs::createSafe
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
BSD-3-Clause
public static FT_Outline_Funcs.Buffer malloc(int capacity) { return new Buffer(nmemAllocChecked(__checkMalloc(capacity, SIZEOF)), capacity); }
Returns a new {@link FT_Outline_Funcs.Buffer} instance allocated with {@link MemoryUtil#memAlloc memAlloc}. The instance must be explicitly freed. @param capacity the buffer capacity
FT_Outline_Funcs::malloc
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
BSD-3-Clause
public static FT_Outline_Funcs.Buffer calloc(int capacity) { return new Buffer(nmemCallocChecked(capacity, SIZEOF), capacity); }
Returns a new {@link FT_Outline_Funcs.Buffer} instance allocated with {@link MemoryUtil#memCalloc memCalloc}. The instance must be explicitly freed. @param capacity the buffer capacity
FT_Outline_Funcs::calloc
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
BSD-3-Clause
public static FT_Outline_Funcs.Buffer create(int capacity) { ByteBuffer container = __create(capacity, SIZEOF); return new Buffer(memAddress(container), container, -1, 0, capacity, capacity); }
Returns a new {@link FT_Outline_Funcs.Buffer} instance allocated with {@link BufferUtils}. @param capacity the buffer capacity
FT_Outline_Funcs::create
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
BSD-3-Clause
public static FT_Outline_Funcs.Buffer create(long address, int capacity) { return new Buffer(address, capacity); }
Create a {@link FT_Outline_Funcs.Buffer} instance at the specified memory. @param address the memory address @param capacity the buffer capacity
FT_Outline_Funcs::create
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
BSD-3-Clause
public static FT_Outline_Funcs.@Nullable Buffer createSafe(long address, int capacity) { return address == NULL ? null : new Buffer(address, capacity); }
Create a {@link FT_Outline_Funcs.Buffer} instance at the specified memory. @param address the memory address @param capacity the buffer capacity public static FT_Outline_Funcs.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}.
FT_Outline_Funcs::createSafe
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
BSD-3-Clause
public static FT_Outline_Funcs malloc(MemoryStack stack) { return new FT_Outline_Funcs(stack.nmalloc(ALIGNOF, SIZEOF), null); }
Returns a new {@code FT_Outline_Funcs} instance allocated on the specified {@link MemoryStack}. @param stack the stack from which to allocate
FT_Outline_Funcs::malloc
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
BSD-3-Clause
public static FT_Outline_Funcs calloc(MemoryStack stack) { return new FT_Outline_Funcs(stack.ncalloc(ALIGNOF, 1, SIZEOF), null); }
Returns a new {@code FT_Outline_Funcs} instance allocated on the specified {@link MemoryStack} and initializes all its bits to zero. @param stack the stack from which to allocate
FT_Outline_Funcs::calloc
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
BSD-3-Clause
public static FT_Outline_Funcs.Buffer malloc(int capacity, MemoryStack stack) { return new Buffer(stack.nmalloc(ALIGNOF, capacity * SIZEOF), capacity); }
Returns a new {@link FT_Outline_Funcs.Buffer} instance allocated on the specified {@link MemoryStack}. @param stack the stack from which to allocate @param capacity the buffer capacity
FT_Outline_Funcs::malloc
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
BSD-3-Clause
public static FT_Outline_Funcs.Buffer calloc(int capacity, MemoryStack stack) { return new Buffer(stack.ncalloc(ALIGNOF, capacity, SIZEOF), capacity); }
Returns a new {@link FT_Outline_Funcs.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
FT_Outline_Funcs::calloc
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
BSD-3-Clause
public static @Nullable FT_Outline_MoveToFunc nmove_to(long struct) { return FT_Outline_MoveToFunc.createSafe(memGetAddress(struct + FT_Outline_Funcs.MOVE_TO)); }
Returns a new {@link FT_Outline_Funcs.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 FT_Outline_Funcs.Buffer calloc(int capacity, MemoryStack stack) { return new Buffer(stack.ncalloc(ALIGNOF, capacity, SIZEOF), capacity); } // ----------------------------------- /** Unsafe version of {@link #move_to}.
FT_Outline_Funcs::nmove_to
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
BSD-3-Clause
public static @Nullable FT_Outline_LineToFunc nline_to(long struct) { return FT_Outline_LineToFunc.createSafe(memGetAddress(struct + FT_Outline_Funcs.LINE_TO)); }
Returns a new {@link FT_Outline_Funcs.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 FT_Outline_Funcs.Buffer calloc(int capacity, MemoryStack stack) { return new Buffer(stack.ncalloc(ALIGNOF, capacity, SIZEOF), capacity); } // ----------------------------------- /** Unsafe version of {@link #move_to}. public static @Nullable FT_Outline_MoveToFunc nmove_to(long struct) { return FT_Outline_MoveToFunc.createSafe(memGetAddress(struct + FT_Outline_Funcs.MOVE_TO)); } /** Unsafe version of {@link #line_to}.
FT_Outline_Funcs::nline_to
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
BSD-3-Clause
public static @Nullable FT_Outline_ConicToFunc nconic_to(long struct) { return FT_Outline_ConicToFunc.createSafe(memGetAddress(struct + FT_Outline_Funcs.CONIC_TO)); }
Returns a new {@link FT_Outline_Funcs.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 FT_Outline_Funcs.Buffer calloc(int capacity, MemoryStack stack) { return new Buffer(stack.ncalloc(ALIGNOF, capacity, SIZEOF), capacity); } // ----------------------------------- /** Unsafe version of {@link #move_to}. public static @Nullable FT_Outline_MoveToFunc nmove_to(long struct) { return FT_Outline_MoveToFunc.createSafe(memGetAddress(struct + FT_Outline_Funcs.MOVE_TO)); } /** Unsafe version of {@link #line_to}. public static @Nullable FT_Outline_LineToFunc nline_to(long struct) { return FT_Outline_LineToFunc.createSafe(memGetAddress(struct + FT_Outline_Funcs.LINE_TO)); } /** Unsafe version of {@link #conic_to}.
FT_Outline_Funcs::nconic_to
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
BSD-3-Clause
public static @Nullable FT_Outline_CubicToFunc ncubic_to(long struct) { return FT_Outline_CubicToFunc.createSafe(memGetAddress(struct + FT_Outline_Funcs.CUBIC_TO)); }
Returns a new {@link FT_Outline_Funcs.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 FT_Outline_Funcs.Buffer calloc(int capacity, MemoryStack stack) { return new Buffer(stack.ncalloc(ALIGNOF, capacity, SIZEOF), capacity); } // ----------------------------------- /** Unsafe version of {@link #move_to}. public static @Nullable FT_Outline_MoveToFunc nmove_to(long struct) { return FT_Outline_MoveToFunc.createSafe(memGetAddress(struct + FT_Outline_Funcs.MOVE_TO)); } /** Unsafe version of {@link #line_to}. public static @Nullable FT_Outline_LineToFunc nline_to(long struct) { return FT_Outline_LineToFunc.createSafe(memGetAddress(struct + FT_Outline_Funcs.LINE_TO)); } /** Unsafe version of {@link #conic_to}. public static @Nullable FT_Outline_ConicToFunc nconic_to(long struct) { return FT_Outline_ConicToFunc.createSafe(memGetAddress(struct + FT_Outline_Funcs.CONIC_TO)); } /** Unsafe version of {@link #cubic_to}.
FT_Outline_Funcs::ncubic_to
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
BSD-3-Clause
public static int nshift(long struct) { return memGetInt(struct + FT_Outline_Funcs.SHIFT); }
Returns a new {@link FT_Outline_Funcs.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 FT_Outline_Funcs.Buffer calloc(int capacity, MemoryStack stack) { return new Buffer(stack.ncalloc(ALIGNOF, capacity, SIZEOF), capacity); } // ----------------------------------- /** Unsafe version of {@link #move_to}. public static @Nullable FT_Outline_MoveToFunc nmove_to(long struct) { return FT_Outline_MoveToFunc.createSafe(memGetAddress(struct + FT_Outline_Funcs.MOVE_TO)); } /** Unsafe version of {@link #line_to}. public static @Nullable FT_Outline_LineToFunc nline_to(long struct) { return FT_Outline_LineToFunc.createSafe(memGetAddress(struct + FT_Outline_Funcs.LINE_TO)); } /** Unsafe version of {@link #conic_to}. public static @Nullable FT_Outline_ConicToFunc nconic_to(long struct) { return FT_Outline_ConicToFunc.createSafe(memGetAddress(struct + FT_Outline_Funcs.CONIC_TO)); } /** Unsafe version of {@link #cubic_to}. public static @Nullable FT_Outline_CubicToFunc ncubic_to(long struct) { return FT_Outline_CubicToFunc.createSafe(memGetAddress(struct + FT_Outline_Funcs.CUBIC_TO)); } /** Unsafe version of {@link #shift}.
FT_Outline_Funcs::nshift
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
BSD-3-Clause
public static long ndelta(long struct) { return memGetCLong(struct + FT_Outline_Funcs.DELTA); }
Returns a new {@link FT_Outline_Funcs.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 FT_Outline_Funcs.Buffer calloc(int capacity, MemoryStack stack) { return new Buffer(stack.ncalloc(ALIGNOF, capacity, SIZEOF), capacity); } // ----------------------------------- /** Unsafe version of {@link #move_to}. public static @Nullable FT_Outline_MoveToFunc nmove_to(long struct) { return FT_Outline_MoveToFunc.createSafe(memGetAddress(struct + FT_Outline_Funcs.MOVE_TO)); } /** Unsafe version of {@link #line_to}. public static @Nullable FT_Outline_LineToFunc nline_to(long struct) { return FT_Outline_LineToFunc.createSafe(memGetAddress(struct + FT_Outline_Funcs.LINE_TO)); } /** Unsafe version of {@link #conic_to}. public static @Nullable FT_Outline_ConicToFunc nconic_to(long struct) { return FT_Outline_ConicToFunc.createSafe(memGetAddress(struct + FT_Outline_Funcs.CONIC_TO)); } /** Unsafe version of {@link #cubic_to}. public static @Nullable FT_Outline_CubicToFunc ncubic_to(long struct) { return FT_Outline_CubicToFunc.createSafe(memGetAddress(struct + FT_Outline_Funcs.CUBIC_TO)); } /** Unsafe version of {@link #shift}. public static int nshift(long struct) { return memGetInt(struct + FT_Outline_Funcs.SHIFT); } /** Unsafe version of {@link #delta}.
FT_Outline_Funcs::ndelta
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
BSD-3-Clause
public static void nmove_to(long struct, @Nullable FT_Outline_MoveToFuncI value) { memPutAddress(struct + FT_Outline_Funcs.MOVE_TO, memAddressSafe(value)); }
Returns a new {@link FT_Outline_Funcs.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 FT_Outline_Funcs.Buffer calloc(int capacity, MemoryStack stack) { return new Buffer(stack.ncalloc(ALIGNOF, capacity, SIZEOF), capacity); } // ----------------------------------- /** Unsafe version of {@link #move_to}. public static @Nullable FT_Outline_MoveToFunc nmove_to(long struct) { return FT_Outline_MoveToFunc.createSafe(memGetAddress(struct + FT_Outline_Funcs.MOVE_TO)); } /** Unsafe version of {@link #line_to}. public static @Nullable FT_Outline_LineToFunc nline_to(long struct) { return FT_Outline_LineToFunc.createSafe(memGetAddress(struct + FT_Outline_Funcs.LINE_TO)); } /** Unsafe version of {@link #conic_to}. public static @Nullable FT_Outline_ConicToFunc nconic_to(long struct) { return FT_Outline_ConicToFunc.createSafe(memGetAddress(struct + FT_Outline_Funcs.CONIC_TO)); } /** Unsafe version of {@link #cubic_to}. public static @Nullable FT_Outline_CubicToFunc ncubic_to(long struct) { return FT_Outline_CubicToFunc.createSafe(memGetAddress(struct + FT_Outline_Funcs.CUBIC_TO)); } /** Unsafe version of {@link #shift}. public static int nshift(long struct) { return memGetInt(struct + FT_Outline_Funcs.SHIFT); } /** Unsafe version of {@link #delta}. public static long ndelta(long struct) { return memGetCLong(struct + FT_Outline_Funcs.DELTA); } /** Unsafe version of {@link #move_to(FT_Outline_MoveToFuncI) move_to}.
FT_Outline_Funcs::nmove_to
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
BSD-3-Clause
public static void nline_to(long struct, @Nullable FT_Outline_LineToFuncI value) { memPutAddress(struct + FT_Outline_Funcs.LINE_TO, memAddressSafe(value)); }
Returns a new {@link FT_Outline_Funcs.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 FT_Outline_Funcs.Buffer calloc(int capacity, MemoryStack stack) { return new Buffer(stack.ncalloc(ALIGNOF, capacity, SIZEOF), capacity); } // ----------------------------------- /** Unsafe version of {@link #move_to}. public static @Nullable FT_Outline_MoveToFunc nmove_to(long struct) { return FT_Outline_MoveToFunc.createSafe(memGetAddress(struct + FT_Outline_Funcs.MOVE_TO)); } /** Unsafe version of {@link #line_to}. public static @Nullable FT_Outline_LineToFunc nline_to(long struct) { return FT_Outline_LineToFunc.createSafe(memGetAddress(struct + FT_Outline_Funcs.LINE_TO)); } /** Unsafe version of {@link #conic_to}. public static @Nullable FT_Outline_ConicToFunc nconic_to(long struct) { return FT_Outline_ConicToFunc.createSafe(memGetAddress(struct + FT_Outline_Funcs.CONIC_TO)); } /** Unsafe version of {@link #cubic_to}. public static @Nullable FT_Outline_CubicToFunc ncubic_to(long struct) { return FT_Outline_CubicToFunc.createSafe(memGetAddress(struct + FT_Outline_Funcs.CUBIC_TO)); } /** Unsafe version of {@link #shift}. public static int nshift(long struct) { return memGetInt(struct + FT_Outline_Funcs.SHIFT); } /** Unsafe version of {@link #delta}. public static long ndelta(long struct) { return memGetCLong(struct + FT_Outline_Funcs.DELTA); } /** Unsafe version of {@link #move_to(FT_Outline_MoveToFuncI) move_to}. public static void nmove_to(long struct, @Nullable FT_Outline_MoveToFuncI value) { memPutAddress(struct + FT_Outline_Funcs.MOVE_TO, memAddressSafe(value)); } /** Unsafe version of {@link #line_to(FT_Outline_LineToFuncI) line_to}.
FT_Outline_Funcs::nline_to
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
BSD-3-Clause
public static void nconic_to(long struct, @Nullable FT_Outline_ConicToFuncI value) { memPutAddress(struct + FT_Outline_Funcs.CONIC_TO, memAddressSafe(value)); }
Returns a new {@link FT_Outline_Funcs.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 FT_Outline_Funcs.Buffer calloc(int capacity, MemoryStack stack) { return new Buffer(stack.ncalloc(ALIGNOF, capacity, SIZEOF), capacity); } // ----------------------------------- /** Unsafe version of {@link #move_to}. public static @Nullable FT_Outline_MoveToFunc nmove_to(long struct) { return FT_Outline_MoveToFunc.createSafe(memGetAddress(struct + FT_Outline_Funcs.MOVE_TO)); } /** Unsafe version of {@link #line_to}. public static @Nullable FT_Outline_LineToFunc nline_to(long struct) { return FT_Outline_LineToFunc.createSafe(memGetAddress(struct + FT_Outline_Funcs.LINE_TO)); } /** Unsafe version of {@link #conic_to}. public static @Nullable FT_Outline_ConicToFunc nconic_to(long struct) { return FT_Outline_ConicToFunc.createSafe(memGetAddress(struct + FT_Outline_Funcs.CONIC_TO)); } /** Unsafe version of {@link #cubic_to}. public static @Nullable FT_Outline_CubicToFunc ncubic_to(long struct) { return FT_Outline_CubicToFunc.createSafe(memGetAddress(struct + FT_Outline_Funcs.CUBIC_TO)); } /** Unsafe version of {@link #shift}. public static int nshift(long struct) { return memGetInt(struct + FT_Outline_Funcs.SHIFT); } /** Unsafe version of {@link #delta}. public static long ndelta(long struct) { return memGetCLong(struct + FT_Outline_Funcs.DELTA); } /** Unsafe version of {@link #move_to(FT_Outline_MoveToFuncI) move_to}. public static void nmove_to(long struct, @Nullable FT_Outline_MoveToFuncI value) { memPutAddress(struct + FT_Outline_Funcs.MOVE_TO, memAddressSafe(value)); } /** Unsafe version of {@link #line_to(FT_Outline_LineToFuncI) line_to}. public static void nline_to(long struct, @Nullable FT_Outline_LineToFuncI value) { memPutAddress(struct + FT_Outline_Funcs.LINE_TO, memAddressSafe(value)); } /** Unsafe version of {@link #conic_to(FT_Outline_ConicToFuncI) conic_to}.
FT_Outline_Funcs::nconic_to
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
BSD-3-Clause
public static void ncubic_to(long struct, @Nullable FT_Outline_CubicToFuncI value) { memPutAddress(struct + FT_Outline_Funcs.CUBIC_TO, memAddressSafe(value)); }
Returns a new {@link FT_Outline_Funcs.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 FT_Outline_Funcs.Buffer calloc(int capacity, MemoryStack stack) { return new Buffer(stack.ncalloc(ALIGNOF, capacity, SIZEOF), capacity); } // ----------------------------------- /** Unsafe version of {@link #move_to}. public static @Nullable FT_Outline_MoveToFunc nmove_to(long struct) { return FT_Outline_MoveToFunc.createSafe(memGetAddress(struct + FT_Outline_Funcs.MOVE_TO)); } /** Unsafe version of {@link #line_to}. public static @Nullable FT_Outline_LineToFunc nline_to(long struct) { return FT_Outline_LineToFunc.createSafe(memGetAddress(struct + FT_Outline_Funcs.LINE_TO)); } /** Unsafe version of {@link #conic_to}. public static @Nullable FT_Outline_ConicToFunc nconic_to(long struct) { return FT_Outline_ConicToFunc.createSafe(memGetAddress(struct + FT_Outline_Funcs.CONIC_TO)); } /** Unsafe version of {@link #cubic_to}. public static @Nullable FT_Outline_CubicToFunc ncubic_to(long struct) { return FT_Outline_CubicToFunc.createSafe(memGetAddress(struct + FT_Outline_Funcs.CUBIC_TO)); } /** Unsafe version of {@link #shift}. public static int nshift(long struct) { return memGetInt(struct + FT_Outline_Funcs.SHIFT); } /** Unsafe version of {@link #delta}. public static long ndelta(long struct) { return memGetCLong(struct + FT_Outline_Funcs.DELTA); } /** Unsafe version of {@link #move_to(FT_Outline_MoveToFuncI) move_to}. public static void nmove_to(long struct, @Nullable FT_Outline_MoveToFuncI value) { memPutAddress(struct + FT_Outline_Funcs.MOVE_TO, memAddressSafe(value)); } /** Unsafe version of {@link #line_to(FT_Outline_LineToFuncI) line_to}. public static void nline_to(long struct, @Nullable FT_Outline_LineToFuncI value) { memPutAddress(struct + FT_Outline_Funcs.LINE_TO, memAddressSafe(value)); } /** Unsafe version of {@link #conic_to(FT_Outline_ConicToFuncI) conic_to}. public static void nconic_to(long struct, @Nullable FT_Outline_ConicToFuncI value) { memPutAddress(struct + FT_Outline_Funcs.CONIC_TO, memAddressSafe(value)); } /** Unsafe version of {@link #cubic_to(FT_Outline_CubicToFuncI) cubic_to}.
FT_Outline_Funcs::ncubic_to
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
BSD-3-Clause
public static void nshift(long struct, int value) { memPutInt(struct + FT_Outline_Funcs.SHIFT, value); }
Returns a new {@link FT_Outline_Funcs.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 FT_Outline_Funcs.Buffer calloc(int capacity, MemoryStack stack) { return new Buffer(stack.ncalloc(ALIGNOF, capacity, SIZEOF), capacity); } // ----------------------------------- /** Unsafe version of {@link #move_to}. public static @Nullable FT_Outline_MoveToFunc nmove_to(long struct) { return FT_Outline_MoveToFunc.createSafe(memGetAddress(struct + FT_Outline_Funcs.MOVE_TO)); } /** Unsafe version of {@link #line_to}. public static @Nullable FT_Outline_LineToFunc nline_to(long struct) { return FT_Outline_LineToFunc.createSafe(memGetAddress(struct + FT_Outline_Funcs.LINE_TO)); } /** Unsafe version of {@link #conic_to}. public static @Nullable FT_Outline_ConicToFunc nconic_to(long struct) { return FT_Outline_ConicToFunc.createSafe(memGetAddress(struct + FT_Outline_Funcs.CONIC_TO)); } /** Unsafe version of {@link #cubic_to}. public static @Nullable FT_Outline_CubicToFunc ncubic_to(long struct) { return FT_Outline_CubicToFunc.createSafe(memGetAddress(struct + FT_Outline_Funcs.CUBIC_TO)); } /** Unsafe version of {@link #shift}. public static int nshift(long struct) { return memGetInt(struct + FT_Outline_Funcs.SHIFT); } /** Unsafe version of {@link #delta}. public static long ndelta(long struct) { return memGetCLong(struct + FT_Outline_Funcs.DELTA); } /** Unsafe version of {@link #move_to(FT_Outline_MoveToFuncI) move_to}. public static void nmove_to(long struct, @Nullable FT_Outline_MoveToFuncI value) { memPutAddress(struct + FT_Outline_Funcs.MOVE_TO, memAddressSafe(value)); } /** Unsafe version of {@link #line_to(FT_Outline_LineToFuncI) line_to}. public static void nline_to(long struct, @Nullable FT_Outline_LineToFuncI value) { memPutAddress(struct + FT_Outline_Funcs.LINE_TO, memAddressSafe(value)); } /** Unsafe version of {@link #conic_to(FT_Outline_ConicToFuncI) conic_to}. public static void nconic_to(long struct, @Nullable FT_Outline_ConicToFuncI value) { memPutAddress(struct + FT_Outline_Funcs.CONIC_TO, memAddressSafe(value)); } /** Unsafe version of {@link #cubic_to(FT_Outline_CubicToFuncI) cubic_to}. public static void ncubic_to(long struct, @Nullable FT_Outline_CubicToFuncI value) { memPutAddress(struct + FT_Outline_Funcs.CUBIC_TO, memAddressSafe(value)); } /** Unsafe version of {@link #shift(int) shift}.
FT_Outline_Funcs::nshift
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
BSD-3-Clause
public static void ndelta(long struct, long value) { memPutCLong(struct + FT_Outline_Funcs.DELTA, value); }
Returns a new {@link FT_Outline_Funcs.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 FT_Outline_Funcs.Buffer calloc(int capacity, MemoryStack stack) { return new Buffer(stack.ncalloc(ALIGNOF, capacity, SIZEOF), capacity); } // ----------------------------------- /** Unsafe version of {@link #move_to}. public static @Nullable FT_Outline_MoveToFunc nmove_to(long struct) { return FT_Outline_MoveToFunc.createSafe(memGetAddress(struct + FT_Outline_Funcs.MOVE_TO)); } /** Unsafe version of {@link #line_to}. public static @Nullable FT_Outline_LineToFunc nline_to(long struct) { return FT_Outline_LineToFunc.createSafe(memGetAddress(struct + FT_Outline_Funcs.LINE_TO)); } /** Unsafe version of {@link #conic_to}. public static @Nullable FT_Outline_ConicToFunc nconic_to(long struct) { return FT_Outline_ConicToFunc.createSafe(memGetAddress(struct + FT_Outline_Funcs.CONIC_TO)); } /** Unsafe version of {@link #cubic_to}. public static @Nullable FT_Outline_CubicToFunc ncubic_to(long struct) { return FT_Outline_CubicToFunc.createSafe(memGetAddress(struct + FT_Outline_Funcs.CUBIC_TO)); } /** Unsafe version of {@link #shift}. public static int nshift(long struct) { return memGetInt(struct + FT_Outline_Funcs.SHIFT); } /** Unsafe version of {@link #delta}. public static long ndelta(long struct) { return memGetCLong(struct + FT_Outline_Funcs.DELTA); } /** Unsafe version of {@link #move_to(FT_Outline_MoveToFuncI) move_to}. public static void nmove_to(long struct, @Nullable FT_Outline_MoveToFuncI value) { memPutAddress(struct + FT_Outline_Funcs.MOVE_TO, memAddressSafe(value)); } /** Unsafe version of {@link #line_to(FT_Outline_LineToFuncI) line_to}. public static void nline_to(long struct, @Nullable FT_Outline_LineToFuncI value) { memPutAddress(struct + FT_Outline_Funcs.LINE_TO, memAddressSafe(value)); } /** Unsafe version of {@link #conic_to(FT_Outline_ConicToFuncI) conic_to}. public static void nconic_to(long struct, @Nullable FT_Outline_ConicToFuncI value) { memPutAddress(struct + FT_Outline_Funcs.CONIC_TO, memAddressSafe(value)); } /** Unsafe version of {@link #cubic_to(FT_Outline_CubicToFuncI) cubic_to}. public static void ncubic_to(long struct, @Nullable FT_Outline_CubicToFuncI value) { memPutAddress(struct + FT_Outline_Funcs.CUBIC_TO, memAddressSafe(value)); } /** Unsafe version of {@link #shift(int) shift}. public static void nshift(long struct, int value) { memPutInt(struct + FT_Outline_Funcs.SHIFT, value); } /** Unsafe version of {@link #delta(long) delta}.
FT_Outline_Funcs::ndelta
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
BSD-3-Clause
public @Nullable FT_Outline_MoveToFunc move_to() { return FT_Outline_Funcs.nmove_to(address()); }
Creates a new {@code FT_Outline_Funcs.Buffer} instance backed by the specified container. <p>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 FT_Outline_Funcs#SIZEOF}, and its mark will be undefined.</p> <p>The created buffer instance holds a strong reference to the container object.</p> 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 FT_Outline_Funcs getElementFactory() { return ELEMENT_FACTORY; } /** @return the value of the {@code move_to} field.
Buffer::move_to
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
BSD-3-Clause
public @Nullable FT_Outline_LineToFunc line_to() { return FT_Outline_Funcs.nline_to(address()); }
Creates a new {@code FT_Outline_Funcs.Buffer} instance backed by the specified container. <p>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 FT_Outline_Funcs#SIZEOF}, and its mark will be undefined.</p> <p>The created buffer instance holds a strong reference to the container object.</p> 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 FT_Outline_Funcs getElementFactory() { return ELEMENT_FACTORY; } /** @return the value of the {@code move_to} field. public @Nullable FT_Outline_MoveToFunc move_to() { return FT_Outline_Funcs.nmove_to(address()); } /** @return the value of the {@code line_to} field.
Buffer::line_to
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
BSD-3-Clause
public @Nullable FT_Outline_ConicToFunc conic_to() { return FT_Outline_Funcs.nconic_to(address()); }
Creates a new {@code FT_Outline_Funcs.Buffer} instance backed by the specified container. <p>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 FT_Outline_Funcs#SIZEOF}, and its mark will be undefined.</p> <p>The created buffer instance holds a strong reference to the container object.</p> 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 FT_Outline_Funcs getElementFactory() { return ELEMENT_FACTORY; } /** @return the value of the {@code move_to} field. public @Nullable FT_Outline_MoveToFunc move_to() { return FT_Outline_Funcs.nmove_to(address()); } /** @return the value of the {@code line_to} field. public @Nullable FT_Outline_LineToFunc line_to() { return FT_Outline_Funcs.nline_to(address()); } /** @return the value of the {@code conic_to} field.
Buffer::conic_to
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
BSD-3-Clause
public @Nullable FT_Outline_CubicToFunc cubic_to() { return FT_Outline_Funcs.ncubic_to(address()); }
Creates a new {@code FT_Outline_Funcs.Buffer} instance backed by the specified container. <p>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 FT_Outline_Funcs#SIZEOF}, and its mark will be undefined.</p> <p>The created buffer instance holds a strong reference to the container object.</p> 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 FT_Outline_Funcs getElementFactory() { return ELEMENT_FACTORY; } /** @return the value of the {@code move_to} field. public @Nullable FT_Outline_MoveToFunc move_to() { return FT_Outline_Funcs.nmove_to(address()); } /** @return the value of the {@code line_to} field. public @Nullable FT_Outline_LineToFunc line_to() { return FT_Outline_Funcs.nline_to(address()); } /** @return the value of the {@code conic_to} field. public @Nullable FT_Outline_ConicToFunc conic_to() { return FT_Outline_Funcs.nconic_to(address()); } /** @return the value of the {@code cubic_to} field.
Buffer::cubic_to
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
BSD-3-Clause
public int shift() { return FT_Outline_Funcs.nshift(address()); }
Creates a new {@code FT_Outline_Funcs.Buffer} instance backed by the specified container. <p>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 FT_Outline_Funcs#SIZEOF}, and its mark will be undefined.</p> <p>The created buffer instance holds a strong reference to the container object.</p> 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 FT_Outline_Funcs getElementFactory() { return ELEMENT_FACTORY; } /** @return the value of the {@code move_to} field. public @Nullable FT_Outline_MoveToFunc move_to() { return FT_Outline_Funcs.nmove_to(address()); } /** @return the value of the {@code line_to} field. public @Nullable FT_Outline_LineToFunc line_to() { return FT_Outline_Funcs.nline_to(address()); } /** @return the value of the {@code conic_to} field. public @Nullable FT_Outline_ConicToFunc conic_to() { return FT_Outline_Funcs.nconic_to(address()); } /** @return the value of the {@code cubic_to} field. public @Nullable FT_Outline_CubicToFunc cubic_to() { return FT_Outline_Funcs.ncubic_to(address()); } /** @return the value of the {@code shift} field.
Buffer::shift
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
BSD-3-Clause
public FT_Outline_Funcs.Buffer move_to(@Nullable @NativeType("FT_Outline_MoveToFunc") FT_Outline_MoveToFuncI value) { FT_Outline_Funcs.nmove_to(address(), value); return this; }
Creates a new {@code FT_Outline_Funcs.Buffer} instance backed by the specified container. <p>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 FT_Outline_Funcs#SIZEOF}, and its mark will be undefined.</p> <p>The created buffer instance holds a strong reference to the container object.</p> 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 FT_Outline_Funcs getElementFactory() { return ELEMENT_FACTORY; } /** @return the value of the {@code move_to} field. public @Nullable FT_Outline_MoveToFunc move_to() { return FT_Outline_Funcs.nmove_to(address()); } /** @return the value of the {@code line_to} field. public @Nullable FT_Outline_LineToFunc line_to() { return FT_Outline_Funcs.nline_to(address()); } /** @return the value of the {@code conic_to} field. public @Nullable FT_Outline_ConicToFunc conic_to() { return FT_Outline_Funcs.nconic_to(address()); } /** @return the value of the {@code cubic_to} field. public @Nullable FT_Outline_CubicToFunc cubic_to() { return FT_Outline_Funcs.ncubic_to(address()); } /** @return the value of the {@code shift} field. public int shift() { return FT_Outline_Funcs.nshift(address()); } /** @return the value of the {@code delta} field. @NativeType("FT_Pos") public long delta() { return FT_Outline_Funcs.ndelta(address()); } /** Sets the specified value to the {@code move_to} field.
Buffer::move_to
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
BSD-3-Clause
public FT_Outline_Funcs.Buffer line_to(@Nullable @NativeType("FT_Outline_LineToFunc") FT_Outline_LineToFuncI value) { FT_Outline_Funcs.nline_to(address(), value); return this; }
Creates a new {@code FT_Outline_Funcs.Buffer} instance backed by the specified container. <p>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 FT_Outline_Funcs#SIZEOF}, and its mark will be undefined.</p> <p>The created buffer instance holds a strong reference to the container object.</p> 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 FT_Outline_Funcs getElementFactory() { return ELEMENT_FACTORY; } /** @return the value of the {@code move_to} field. public @Nullable FT_Outline_MoveToFunc move_to() { return FT_Outline_Funcs.nmove_to(address()); } /** @return the value of the {@code line_to} field. public @Nullable FT_Outline_LineToFunc line_to() { return FT_Outline_Funcs.nline_to(address()); } /** @return the value of the {@code conic_to} field. public @Nullable FT_Outline_ConicToFunc conic_to() { return FT_Outline_Funcs.nconic_to(address()); } /** @return the value of the {@code cubic_to} field. public @Nullable FT_Outline_CubicToFunc cubic_to() { return FT_Outline_Funcs.ncubic_to(address()); } /** @return the value of the {@code shift} field. public int shift() { return FT_Outline_Funcs.nshift(address()); } /** @return the value of the {@code delta} field. @NativeType("FT_Pos") public long delta() { return FT_Outline_Funcs.ndelta(address()); } /** Sets the specified value to the {@code move_to} field. public FT_Outline_Funcs.Buffer move_to(@Nullable @NativeType("FT_Outline_MoveToFunc") FT_Outline_MoveToFuncI value) { FT_Outline_Funcs.nmove_to(address(), value); return this; } /** Sets the specified value to the {@code line_to} field.
Buffer::line_to
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
BSD-3-Clause
public FT_Outline_Funcs.Buffer conic_to(@Nullable @NativeType("FT_Outline_ConicToFunc") FT_Outline_ConicToFuncI value) { FT_Outline_Funcs.nconic_to(address(), value); return this; }
Creates a new {@code FT_Outline_Funcs.Buffer} instance backed by the specified container. <p>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 FT_Outline_Funcs#SIZEOF}, and its mark will be undefined.</p> <p>The created buffer instance holds a strong reference to the container object.</p> 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 FT_Outline_Funcs getElementFactory() { return ELEMENT_FACTORY; } /** @return the value of the {@code move_to} field. public @Nullable FT_Outline_MoveToFunc move_to() { return FT_Outline_Funcs.nmove_to(address()); } /** @return the value of the {@code line_to} field. public @Nullable FT_Outline_LineToFunc line_to() { return FT_Outline_Funcs.nline_to(address()); } /** @return the value of the {@code conic_to} field. public @Nullable FT_Outline_ConicToFunc conic_to() { return FT_Outline_Funcs.nconic_to(address()); } /** @return the value of the {@code cubic_to} field. public @Nullable FT_Outline_CubicToFunc cubic_to() { return FT_Outline_Funcs.ncubic_to(address()); } /** @return the value of the {@code shift} field. public int shift() { return FT_Outline_Funcs.nshift(address()); } /** @return the value of the {@code delta} field. @NativeType("FT_Pos") public long delta() { return FT_Outline_Funcs.ndelta(address()); } /** Sets the specified value to the {@code move_to} field. public FT_Outline_Funcs.Buffer move_to(@Nullable @NativeType("FT_Outline_MoveToFunc") FT_Outline_MoveToFuncI value) { FT_Outline_Funcs.nmove_to(address(), value); return this; } /** Sets the specified value to the {@code line_to} field. public FT_Outline_Funcs.Buffer line_to(@Nullable @NativeType("FT_Outline_LineToFunc") FT_Outline_LineToFuncI value) { FT_Outline_Funcs.nline_to(address(), value); return this; } /** Sets the specified value to the {@code conic_to} field.
Buffer::conic_to
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
BSD-3-Clause
public FT_Outline_Funcs.Buffer cubic_to(@Nullable @NativeType("FT_Outline_CubicToFunc") FT_Outline_CubicToFuncI value) { FT_Outline_Funcs.ncubic_to(address(), value); return this; }
Creates a new {@code FT_Outline_Funcs.Buffer} instance backed by the specified container. <p>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 FT_Outline_Funcs#SIZEOF}, and its mark will be undefined.</p> <p>The created buffer instance holds a strong reference to the container object.</p> 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 FT_Outline_Funcs getElementFactory() { return ELEMENT_FACTORY; } /** @return the value of the {@code move_to} field. public @Nullable FT_Outline_MoveToFunc move_to() { return FT_Outline_Funcs.nmove_to(address()); } /** @return the value of the {@code line_to} field. public @Nullable FT_Outline_LineToFunc line_to() { return FT_Outline_Funcs.nline_to(address()); } /** @return the value of the {@code conic_to} field. public @Nullable FT_Outline_ConicToFunc conic_to() { return FT_Outline_Funcs.nconic_to(address()); } /** @return the value of the {@code cubic_to} field. public @Nullable FT_Outline_CubicToFunc cubic_to() { return FT_Outline_Funcs.ncubic_to(address()); } /** @return the value of the {@code shift} field. public int shift() { return FT_Outline_Funcs.nshift(address()); } /** @return the value of the {@code delta} field. @NativeType("FT_Pos") public long delta() { return FT_Outline_Funcs.ndelta(address()); } /** Sets the specified value to the {@code move_to} field. public FT_Outline_Funcs.Buffer move_to(@Nullable @NativeType("FT_Outline_MoveToFunc") FT_Outline_MoveToFuncI value) { FT_Outline_Funcs.nmove_to(address(), value); return this; } /** Sets the specified value to the {@code line_to} field. public FT_Outline_Funcs.Buffer line_to(@Nullable @NativeType("FT_Outline_LineToFunc") FT_Outline_LineToFuncI value) { FT_Outline_Funcs.nline_to(address(), value); return this; } /** Sets the specified value to the {@code conic_to} field. public FT_Outline_Funcs.Buffer conic_to(@Nullable @NativeType("FT_Outline_ConicToFunc") FT_Outline_ConicToFuncI value) { FT_Outline_Funcs.nconic_to(address(), value); return this; } /** Sets the specified value to the {@code cubic_to} field.
Buffer::cubic_to
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
BSD-3-Clause
public FT_Outline_Funcs.Buffer shift(int value) { FT_Outline_Funcs.nshift(address(), value); return this; }
Creates a new {@code FT_Outline_Funcs.Buffer} instance backed by the specified container. <p>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 FT_Outline_Funcs#SIZEOF}, and its mark will be undefined.</p> <p>The created buffer instance holds a strong reference to the container object.</p> 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 FT_Outline_Funcs getElementFactory() { return ELEMENT_FACTORY; } /** @return the value of the {@code move_to} field. public @Nullable FT_Outline_MoveToFunc move_to() { return FT_Outline_Funcs.nmove_to(address()); } /** @return the value of the {@code line_to} field. public @Nullable FT_Outline_LineToFunc line_to() { return FT_Outline_Funcs.nline_to(address()); } /** @return the value of the {@code conic_to} field. public @Nullable FT_Outline_ConicToFunc conic_to() { return FT_Outline_Funcs.nconic_to(address()); } /** @return the value of the {@code cubic_to} field. public @Nullable FT_Outline_CubicToFunc cubic_to() { return FT_Outline_Funcs.ncubic_to(address()); } /** @return the value of the {@code shift} field. public int shift() { return FT_Outline_Funcs.nshift(address()); } /** @return the value of the {@code delta} field. @NativeType("FT_Pos") public long delta() { return FT_Outline_Funcs.ndelta(address()); } /** Sets the specified value to the {@code move_to} field. public FT_Outline_Funcs.Buffer move_to(@Nullable @NativeType("FT_Outline_MoveToFunc") FT_Outline_MoveToFuncI value) { FT_Outline_Funcs.nmove_to(address(), value); return this; } /** Sets the specified value to the {@code line_to} field. public FT_Outline_Funcs.Buffer line_to(@Nullable @NativeType("FT_Outline_LineToFunc") FT_Outline_LineToFuncI value) { FT_Outline_Funcs.nline_to(address(), value); return this; } /** Sets the specified value to the {@code conic_to} field. public FT_Outline_Funcs.Buffer conic_to(@Nullable @NativeType("FT_Outline_ConicToFunc") FT_Outline_ConicToFuncI value) { FT_Outline_Funcs.nconic_to(address(), value); return this; } /** Sets the specified value to the {@code cubic_to} field. public FT_Outline_Funcs.Buffer cubic_to(@Nullable @NativeType("FT_Outline_CubicToFunc") FT_Outline_CubicToFuncI value) { FT_Outline_Funcs.ncubic_to(address(), value); return this; } /** Sets the specified value to the {@code shift} field.
Buffer::shift
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
BSD-3-Clause
public FT_Outline_Funcs.Buffer delta(@NativeType("FT_Pos") long value) { FT_Outline_Funcs.ndelta(address(), value); return this; }
Creates a new {@code FT_Outline_Funcs.Buffer} instance backed by the specified container. <p>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 FT_Outline_Funcs#SIZEOF}, and its mark will be undefined.</p> <p>The created buffer instance holds a strong reference to the container object.</p> 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 FT_Outline_Funcs getElementFactory() { return ELEMENT_FACTORY; } /** @return the value of the {@code move_to} field. public @Nullable FT_Outline_MoveToFunc move_to() { return FT_Outline_Funcs.nmove_to(address()); } /** @return the value of the {@code line_to} field. public @Nullable FT_Outline_LineToFunc line_to() { return FT_Outline_Funcs.nline_to(address()); } /** @return the value of the {@code conic_to} field. public @Nullable FT_Outline_ConicToFunc conic_to() { return FT_Outline_Funcs.nconic_to(address()); } /** @return the value of the {@code cubic_to} field. public @Nullable FT_Outline_CubicToFunc cubic_to() { return FT_Outline_Funcs.ncubic_to(address()); } /** @return the value of the {@code shift} field. public int shift() { return FT_Outline_Funcs.nshift(address()); } /** @return the value of the {@code delta} field. @NativeType("FT_Pos") public long delta() { return FT_Outline_Funcs.ndelta(address()); } /** Sets the specified value to the {@code move_to} field. public FT_Outline_Funcs.Buffer move_to(@Nullable @NativeType("FT_Outline_MoveToFunc") FT_Outline_MoveToFuncI value) { FT_Outline_Funcs.nmove_to(address(), value); return this; } /** Sets the specified value to the {@code line_to} field. public FT_Outline_Funcs.Buffer line_to(@Nullable @NativeType("FT_Outline_LineToFunc") FT_Outline_LineToFuncI value) { FT_Outline_Funcs.nline_to(address(), value); return this; } /** Sets the specified value to the {@code conic_to} field. public FT_Outline_Funcs.Buffer conic_to(@Nullable @NativeType("FT_Outline_ConicToFunc") FT_Outline_ConicToFuncI value) { FT_Outline_Funcs.nconic_to(address(), value); return this; } /** Sets the specified value to the {@code cubic_to} field. public FT_Outline_Funcs.Buffer cubic_to(@Nullable @NativeType("FT_Outline_CubicToFunc") FT_Outline_CubicToFuncI value) { FT_Outline_Funcs.ncubic_to(address(), value); return this; } /** Sets the specified value to the {@code shift} field. public FT_Outline_Funcs.Buffer shift(int value) { FT_Outline_Funcs.nshift(address(), value); return this; } /** Sets the specified value to the {@code delta} field.
Buffer::delta
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Outline_Funcs.java
BSD-3-Clause
public FT_ListNode(ByteBuffer container) { super(memAddress(container), __checkContainer(container, SIZEOF)); }
Creates a {@code FT_ListNode} 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. <p>The created instance holds a strong reference to the container object.</p>
FT_ListNode::FT_ListNode
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_ListNode.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_ListNode.java
BSD-3-Clause
public @Nullable FT_ListNode prev() { return nprev(address()); }
Creates a {@code FT_ListNode} 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. <p>The created instance holds a strong reference to the container object.</p> public FT_ListNode(ByteBuffer container) { super(memAddress(container), __checkContainer(container, SIZEOF)); } @Override public int sizeof() { return SIZEOF; } /** @return a {@link FT_ListNode} view of the struct pointed to by the {@code prev} field.
FT_ListNode::prev
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_ListNode.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_ListNode.java
BSD-3-Clause
public @Nullable FT_ListNode next() { return nnext(address()); }
Creates a {@code FT_ListNode} 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. <p>The created instance holds a strong reference to the container object.</p> public FT_ListNode(ByteBuffer container) { super(memAddress(container), __checkContainer(container, SIZEOF)); } @Override public int sizeof() { return SIZEOF; } /** @return a {@link FT_ListNode} view of the struct pointed to by the {@code prev} field. public @Nullable FT_ListNode prev() { return nprev(address()); } /** @return a {@link FT_ListNode} view of the struct pointed to by the {@code next} field.
FT_ListNode::next
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_ListNode.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_ListNode.java
BSD-3-Clause
public static FT_ListNode create(long address) { return new FT_ListNode(address, null); }
Creates a {@code FT_ListNode} 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. <p>The created instance holds a strong reference to the container object.</p> public FT_ListNode(ByteBuffer container) { super(memAddress(container), __checkContainer(container, SIZEOF)); } @Override public int sizeof() { return SIZEOF; } /** @return a {@link FT_ListNode} view of the struct pointed to by the {@code prev} field. public @Nullable FT_ListNode prev() { return nprev(address()); } /** @return a {@link FT_ListNode} view of the struct pointed to by the {@code next} field. public @Nullable FT_ListNode next() { return nnext(address()); } /** @return a {@link ByteBuffer} view of the data pointed to by the {@code data} field. @NativeType("void *") public ByteBuffer data(int capacity) { return ndata(address(), capacity); } // ----------------------------------- /** Returns a new {@code FT_ListNode} instance for the specified memory address.
FT_ListNode::create
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_ListNode.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_ListNode.java
BSD-3-Clause
public static @Nullable FT_ListNode createSafe(long address) { return address == NULL ? null : new FT_ListNode(address, null); }
Creates a {@code FT_ListNode} 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. <p>The created instance holds a strong reference to the container object.</p> public FT_ListNode(ByteBuffer container) { super(memAddress(container), __checkContainer(container, SIZEOF)); } @Override public int sizeof() { return SIZEOF; } /** @return a {@link FT_ListNode} view of the struct pointed to by the {@code prev} field. public @Nullable FT_ListNode prev() { return nprev(address()); } /** @return a {@link FT_ListNode} view of the struct pointed to by the {@code next} field. public @Nullable FT_ListNode next() { return nnext(address()); } /** @return a {@link ByteBuffer} view of the data pointed to by the {@code data} field. @NativeType("void *") public ByteBuffer data(int capacity) { return ndata(address(), capacity); } // ----------------------------------- /** Returns a new {@code FT_ListNode} instance for the specified memory address. public static FT_ListNode create(long address) { return new FT_ListNode(address, null); } /** Like {@link #create(long) create}, but returns {@code null} if {@code address} is {@code NULL}.
FT_ListNode::createSafe
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_ListNode.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_ListNode.java
BSD-3-Clause
public static FT_ListNode.Buffer create(long address, int capacity) { return new Buffer(address, capacity); }
Create a {@link FT_ListNode.Buffer} instance at the specified memory. @param address the memory address @param capacity the buffer capacity
FT_ListNode::create
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_ListNode.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_ListNode.java
BSD-3-Clause
public static FT_ListNode.@Nullable Buffer createSafe(long address, int capacity) { return address == NULL ? null : new Buffer(address, capacity); }
Create a {@link FT_ListNode.Buffer} instance at the specified memory. @param address the memory address @param capacity the buffer capacity public static FT_ListNode.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}.
FT_ListNode::createSafe
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_ListNode.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_ListNode.java
BSD-3-Clause
public static @Nullable FT_ListNode nprev(long struct) { return FT_ListNode.createSafe(memGetAddress(struct + FT_ListNode.PREV)); }
Create a {@link FT_ListNode.Buffer} instance at the specified memory. @param address the memory address @param capacity the buffer capacity public static FT_ListNode.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 FT_ListNode.@Nullable Buffer createSafe(long address, int capacity) { return address == NULL ? null : new Buffer(address, capacity); } // ----------------------------------- /** Unsafe version of {@link #prev}.
FT_ListNode::nprev
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_ListNode.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_ListNode.java
BSD-3-Clause
public static @Nullable FT_ListNode nnext(long struct) { return FT_ListNode.createSafe(memGetAddress(struct + FT_ListNode.NEXT)); }
Create a {@link FT_ListNode.Buffer} instance at the specified memory. @param address the memory address @param capacity the buffer capacity public static FT_ListNode.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 FT_ListNode.@Nullable Buffer createSafe(long address, int capacity) { return address == NULL ? null : new Buffer(address, capacity); } // ----------------------------------- /** Unsafe version of {@link #prev}. public static @Nullable FT_ListNode nprev(long struct) { return FT_ListNode.createSafe(memGetAddress(struct + FT_ListNode.PREV)); } /** Unsafe version of {@link #next}.
FT_ListNode::nnext
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_ListNode.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_ListNode.java
BSD-3-Clause
public static ByteBuffer ndata(long struct, int capacity) { return memByteBuffer(memGetAddress(struct + FT_ListNode.DATA), capacity); }
Create a {@link FT_ListNode.Buffer} instance at the specified memory. @param address the memory address @param capacity the buffer capacity public static FT_ListNode.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 FT_ListNode.@Nullable Buffer createSafe(long address, int capacity) { return address == NULL ? null : new Buffer(address, capacity); } // ----------------------------------- /** Unsafe version of {@link #prev}. public static @Nullable FT_ListNode nprev(long struct) { return FT_ListNode.createSafe(memGetAddress(struct + FT_ListNode.PREV)); } /** Unsafe version of {@link #next}. public static @Nullable FT_ListNode nnext(long struct) { return FT_ListNode.createSafe(memGetAddress(struct + FT_ListNode.NEXT)); } /** Unsafe version of {@link #data(int) data}.
FT_ListNode::ndata
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_ListNode.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_ListNode.java
BSD-3-Clause
public @Nullable FT_ListNode prev() { return FT_ListNode.nprev(address()); }
Creates a new {@code FT_ListNode.Buffer} instance backed by the specified container. <p>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 FT_ListNode#SIZEOF}, and its mark will be undefined.</p> <p>The created buffer instance holds a strong reference to the container object.</p> 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 FT_ListNode getElementFactory() { return ELEMENT_FACTORY; } /** @return a {@link FT_ListNode} view of the struct pointed to by the {@code prev} field.
Buffer::prev
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_ListNode.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_ListNode.java
BSD-3-Clause
public @Nullable FT_ListNode next() { return FT_ListNode.nnext(address()); }
Creates a new {@code FT_ListNode.Buffer} instance backed by the specified container. <p>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 FT_ListNode#SIZEOF}, and its mark will be undefined.</p> <p>The created buffer instance holds a strong reference to the container object.</p> 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 FT_ListNode getElementFactory() { return ELEMENT_FACTORY; } /** @return a {@link FT_ListNode} view of the struct pointed to by the {@code prev} field. public @Nullable FT_ListNode prev() { return FT_ListNode.nprev(address()); } /** @return a {@link FT_ListNode} view of the struct pointed to by the {@code next} field.
Buffer::next
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_ListNode.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_ListNode.java
BSD-3-Clause
public static FT_Generic_Finalizer create(long functionPointer) { FT_Generic_FinalizerI instance = Callback.get(functionPointer); return instance instanceof FT_Generic_Finalizer ? (FT_Generic_Finalizer)instance : new Container(functionPointer, instance); }
Creates a {@code FT_Generic_Finalizer} instance from the specified function pointer. @return the new {@code FT_Generic_Finalizer}
FT_Generic_Finalizer::create
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Generic_Finalizer.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Generic_Finalizer.java
BSD-3-Clause
public static @Nullable FT_Generic_Finalizer createSafe(long functionPointer) { return functionPointer == NULL ? null : create(functionPointer); }
Creates a {@code FT_Generic_Finalizer} instance from the specified function pointer. @return the new {@code FT_Generic_Finalizer} public static FT_Generic_Finalizer create(long functionPointer) { FT_Generic_FinalizerI instance = Callback.get(functionPointer); return instance instanceof FT_Generic_Finalizer ? (FT_Generic_Finalizer)instance : new Container(functionPointer, instance); } /** Like {@link #create(long) create}, but returns {@code null} if {@code functionPointer} is {@code NULL}.
FT_Generic_Finalizer::createSafe
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Generic_Finalizer.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Generic_Finalizer.java
BSD-3-Clause
public static FT_Generic_Finalizer create(FT_Generic_FinalizerI instance) { return instance instanceof FT_Generic_Finalizer ? (FT_Generic_Finalizer)instance : new Container(instance.address(), instance); }
Creates a {@code FT_Generic_Finalizer} instance from the specified function pointer. @return the new {@code FT_Generic_Finalizer} public static FT_Generic_Finalizer create(long functionPointer) { FT_Generic_FinalizerI instance = Callback.get(functionPointer); return instance instanceof FT_Generic_Finalizer ? (FT_Generic_Finalizer)instance : new Container(functionPointer, instance); } /** Like {@link #create(long) create}, but returns {@code null} if {@code functionPointer} is {@code NULL}. public static @Nullable FT_Generic_Finalizer createSafe(long functionPointer) { return functionPointer == NULL ? null : create(functionPointer); } /** Creates a {@code FT_Generic_Finalizer} instance that delegates to the specified {@code FT_Generic_FinalizerI} instance.
FT_Generic_Finalizer::create
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Generic_Finalizer.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Generic_Finalizer.java
BSD-3-Clause
public static FT_Incremental_GetGlyphDataFunc create(long functionPointer) { FT_Incremental_GetGlyphDataFuncI instance = Callback.get(functionPointer); return instance instanceof FT_Incremental_GetGlyphDataFunc ? (FT_Incremental_GetGlyphDataFunc)instance : new Container(functionPointer, instance); }
Creates a {@code FT_Incremental_GetGlyphDataFunc} instance from the specified function pointer. @return the new {@code FT_Incremental_GetGlyphDataFunc}
FT_Incremental_GetGlyphDataFunc::create
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Incremental_GetGlyphDataFunc.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Incremental_GetGlyphDataFunc.java
BSD-3-Clause
public static @Nullable FT_Incremental_GetGlyphDataFunc createSafe(long functionPointer) { return functionPointer == NULL ? null : create(functionPointer); }
Creates a {@code FT_Incremental_GetGlyphDataFunc} instance from the specified function pointer. @return the new {@code FT_Incremental_GetGlyphDataFunc} public static FT_Incremental_GetGlyphDataFunc create(long functionPointer) { FT_Incremental_GetGlyphDataFuncI instance = Callback.get(functionPointer); return instance instanceof FT_Incremental_GetGlyphDataFunc ? (FT_Incremental_GetGlyphDataFunc)instance : new Container(functionPointer, instance); } /** Like {@link #create(long) create}, but returns {@code null} if {@code functionPointer} is {@code NULL}.
FT_Incremental_GetGlyphDataFunc::createSafe
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Incremental_GetGlyphDataFunc.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Incremental_GetGlyphDataFunc.java
BSD-3-Clause
public static FT_Incremental_GetGlyphDataFunc create(FT_Incremental_GetGlyphDataFuncI instance) { return instance instanceof FT_Incremental_GetGlyphDataFunc ? (FT_Incremental_GetGlyphDataFunc)instance : new Container(instance.address(), instance); }
Creates a {@code FT_Incremental_GetGlyphDataFunc} instance from the specified function pointer. @return the new {@code FT_Incremental_GetGlyphDataFunc} public static FT_Incremental_GetGlyphDataFunc create(long functionPointer) { FT_Incremental_GetGlyphDataFuncI instance = Callback.get(functionPointer); return instance instanceof FT_Incremental_GetGlyphDataFunc ? (FT_Incremental_GetGlyphDataFunc)instance : new Container(functionPointer, instance); } /** Like {@link #create(long) create}, but returns {@code null} if {@code functionPointer} is {@code NULL}. public static @Nullable FT_Incremental_GetGlyphDataFunc createSafe(long functionPointer) { return functionPointer == NULL ? null : create(functionPointer); } /** Creates a {@code FT_Incremental_GetGlyphDataFunc} instance that delegates to the specified {@code FT_Incremental_GetGlyphDataFuncI} instance.
FT_Incremental_GetGlyphDataFunc::create
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Incremental_GetGlyphDataFunc.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Incremental_GetGlyphDataFunc.java
BSD-3-Clause
public static FT_Module_Requester create(long functionPointer) { FT_Module_RequesterI instance = Callback.get(functionPointer); return instance instanceof FT_Module_Requester ? (FT_Module_Requester)instance : new Container(functionPointer, instance); }
Creates a {@code FT_Module_Requester} instance from the specified function pointer. @return the new {@code FT_Module_Requester}
FT_Module_Requester::create
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Module_Requester.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Module_Requester.java
BSD-3-Clause
public static @Nullable FT_Module_Requester createSafe(long functionPointer) { return functionPointer == NULL ? null : create(functionPointer); }
Creates a {@code FT_Module_Requester} instance from the specified function pointer. @return the new {@code FT_Module_Requester} public static FT_Module_Requester create(long functionPointer) { FT_Module_RequesterI instance = Callback.get(functionPointer); return instance instanceof FT_Module_Requester ? (FT_Module_Requester)instance : new Container(functionPointer, instance); } /** Like {@link #create(long) create}, but returns {@code null} if {@code functionPointer} is {@code NULL}.
FT_Module_Requester::createSafe
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Module_Requester.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Module_Requester.java
BSD-3-Clause
public static FT_Module_Requester create(FT_Module_RequesterI instance) { return instance instanceof FT_Module_Requester ? (FT_Module_Requester)instance : new Container(instance.address(), instance); }
Creates a {@code FT_Module_Requester} instance from the specified function pointer. @return the new {@code FT_Module_Requester} public static FT_Module_Requester create(long functionPointer) { FT_Module_RequesterI instance = Callback.get(functionPointer); return instance instanceof FT_Module_Requester ? (FT_Module_Requester)instance : new Container(functionPointer, instance); } /** Like {@link #create(long) create}, but returns {@code null} if {@code functionPointer} is {@code NULL}. public static @Nullable FT_Module_Requester createSafe(long functionPointer) { return functionPointer == NULL ? null : create(functionPointer); } /** Creates a {@code FT_Module_Requester} instance that delegates to the specified {@code FT_Module_RequesterI} instance.
FT_Module_Requester::create
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Module_Requester.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Module_Requester.java
BSD-3-Clause
public FT_ColorStopIterator(ByteBuffer container) { super(memAddress(container), __checkContainer(container, SIZEOF)); }
Creates a {@code FT_ColorStopIterator} 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. <p>The created instance holds a strong reference to the container object.</p>
FT_ColorStopIterator::FT_ColorStopIterator
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_ColorStopIterator.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_ColorStopIterator.java
BSD-3-Clause
public static FT_ColorStopIterator malloc() { return new FT_ColorStopIterator(nmemAllocChecked(SIZEOF), null); }
Creates a {@code FT_ColorStopIterator} 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. <p>The created instance holds a strong reference to the container object.</p> public FT_ColorStopIterator(ByteBuffer container) { super(memAddress(container), __checkContainer(container, SIZEOF)); } @Override public int sizeof() { return SIZEOF; } /** @return the value of the {@code num_color_stops} field. @NativeType("FT_UInt") public int num_color_stops() { return nnum_color_stops(address()); } /** @return the value of the {@code current_color_stop} field. @NativeType("FT_UInt") public int current_color_stop() { return ncurrent_color_stop(address()); } /** @return a {@link ByteBuffer} view of the data pointed to by the {@code p} field. @NativeType("FT_Byte *") public @Nullable ByteBuffer p(int capacity) { return np(address(), capacity); } /** @return the value of the {@code read_variable} field. @NativeType("FT_Bool") public boolean read_variable() { return nread_variable(address()); } // ----------------------------------- /** Returns a new {@code FT_ColorStopIterator} instance allocated with {@link MemoryUtil#memAlloc memAlloc}. The instance must be explicitly freed.
FT_ColorStopIterator::malloc
java
LWJGL/lwjgl3
modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_ColorStopIterator.java
https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_ColorStopIterator.java
BSD-3-Clause