Package org.lwjgl.system.windows
Class POINTL
- java.lang.Object
-
- org.lwjgl.system.Pointer.Default
-
- org.lwjgl.system.Struct
-
- org.lwjgl.system.windows.POINTL
-
- All Implemented Interfaces:
java.lang.AutoCloseable
,org.lwjgl.system.NativeResource
,org.lwjgl.system.Pointer
public class POINTL extends org.lwjgl.system.Struct implements org.lwjgl.system.NativeResource
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
POINTL.Buffer
An array ofPOINTL
structs.
-
Constructor Summary
Constructors Constructor Description POINTL(java.nio.ByteBuffer container)
Creates aPOINTL
instance at the current position of the specifiedByteBuffer
container.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static POINTL
calloc()
Returns a newPOINTL
instance allocated withmemCalloc
.static POINTL.Buffer
calloc(int capacity)
Returns a newPOINTL.Buffer
instance allocated withmemCalloc
.static POINTL.Buffer
calloc(int capacity, org.lwjgl.system.MemoryStack stack)
Returns a newPOINTL.Buffer
instance allocated on the specifiedMemoryStack
and initializes all its bits to zero.static POINTL
calloc(org.lwjgl.system.MemoryStack stack)
Returns a newPOINTL
instance allocated on the specifiedMemoryStack
and initializes all its bits to zero.static POINTL
callocStack()
Deprecated.static POINTL.Buffer
callocStack(int capacity)
Deprecated.static POINTL.Buffer
callocStack(int capacity, org.lwjgl.system.MemoryStack stack)
Deprecated.static POINTL
callocStack(org.lwjgl.system.MemoryStack stack)
Deprecated.static POINTL
create()
Returns a newPOINTL
instance allocated withBufferUtils
.static POINTL.Buffer
create(int capacity)
Returns a newPOINTL.Buffer
instance allocated withBufferUtils
.static POINTL
create(long address)
Returns a newPOINTL
instance for the specified memory address.static POINTL.Buffer
create(long address, int capacity)
Create aPOINTL.Buffer
instance at the specified memory.static POINTL
createSafe(long address)
static POINTL.Buffer
createSafe(long address, int capacity)
static POINTL
malloc()
Returns a newPOINTL
instance allocated withmemAlloc
.static POINTL.Buffer
malloc(int capacity)
Returns a newPOINTL.Buffer
instance allocated withmemAlloc
.static POINTL.Buffer
malloc(int capacity, org.lwjgl.system.MemoryStack stack)
Returns a newPOINTL.Buffer
instance allocated on the specifiedMemoryStack
.static POINTL
malloc(org.lwjgl.system.MemoryStack stack)
Returns a newPOINTL
instance allocated on the specifiedMemoryStack
.static POINTL
mallocStack()
Deprecated.static POINTL.Buffer
mallocStack(int capacity)
Deprecated.static POINTL.Buffer
mallocStack(int capacity, org.lwjgl.system.MemoryStack stack)
Deprecated.static POINTL
mallocStack(org.lwjgl.system.MemoryStack stack)
Deprecated.static int
nx(long struct)
Unsafe version ofx()
.static void
nx(long struct, int value)
Unsafe version ofx
.static int
ny(long struct)
Unsafe version ofy()
.static void
ny(long struct, int value)
Unsafe version ofy
.POINTL
set(int x, int y)
Initializes this struct with the specified values.POINTL
set(POINTL src)
Copies the specified struct data to this struct.int
sizeof()
int
x()
the horizontal (x) coordinate of the pointPOINTL
x(int value)
Sets the specified value to thex()
field.int
y()
the vertical (y) coordinate of the point.POINTL
y(int value)
Sets the specified value to they()
field.
-
-
-
Constructor Detail
-
POINTL
public POINTL(java.nio.ByteBuffer container)
Creates aPOINTL
instance at the current position of the specifiedByteBuffer
container. Changes to the buffer's content will be visible to the struct instance and vice versa.The created instance holds a strong reference to the container object.
-
-
Method Detail
-
sizeof
public int sizeof()
- Specified by:
sizeof
in classorg.lwjgl.system.Struct
-
x
public int x()
the horizontal (x) coordinate of the point
-
y
public int y()
the vertical (y) coordinate of the point.
-
set
public POINTL set(int x, int y)
Initializes this struct with the specified values.
-
set
public POINTL set(POINTL src)
Copies the specified struct data to this struct.- Parameters:
src
- the source struct- Returns:
- this struct
-
malloc
public static POINTL malloc()
Returns a newPOINTL
instance allocated withmemAlloc
. The instance must be explicitly freed.
-
calloc
public static POINTL calloc()
Returns a newPOINTL
instance allocated withmemCalloc
. The instance must be explicitly freed.
-
create
public static POINTL create()
Returns a newPOINTL
instance allocated withBufferUtils
.
-
create
public static POINTL create(long address)
Returns a newPOINTL
instance for the specified memory address.
-
createSafe
@Nullable public static POINTL createSafe(long address)
-
malloc
public static POINTL.Buffer malloc(int capacity)
Returns a newPOINTL.Buffer
instance allocated withmemAlloc
. The instance must be explicitly freed.- Parameters:
capacity
- the buffer capacity
-
calloc
public static POINTL.Buffer calloc(int capacity)
Returns a newPOINTL.Buffer
instance allocated withmemCalloc
. The instance must be explicitly freed.- Parameters:
capacity
- the buffer capacity
-
create
public static POINTL.Buffer create(int capacity)
Returns a newPOINTL.Buffer
instance allocated withBufferUtils
.- Parameters:
capacity
- the buffer capacity
-
create
public static POINTL.Buffer create(long address, int capacity)
Create aPOINTL.Buffer
instance at the specified memory.- Parameters:
address
- the memory addresscapacity
- the buffer capacity
-
createSafe
@Nullable public static POINTL.Buffer createSafe(long address, int capacity)
-
mallocStack
@Deprecated public static POINTL mallocStack()
Deprecated.Deprecated for removal in 3.4.0. Usemalloc(MemoryStack)
instead.
-
callocStack
@Deprecated public static POINTL callocStack()
Deprecated.Deprecated for removal in 3.4.0. Usecalloc(MemoryStack)
instead.
-
mallocStack
@Deprecated public static POINTL mallocStack(org.lwjgl.system.MemoryStack stack)
Deprecated.Deprecated for removal in 3.4.0. Usemalloc(MemoryStack)
instead.
-
callocStack
@Deprecated public static POINTL callocStack(org.lwjgl.system.MemoryStack stack)
Deprecated.Deprecated for removal in 3.4.0. Usecalloc(MemoryStack)
instead.
-
mallocStack
@Deprecated public static POINTL.Buffer mallocStack(int capacity)
Deprecated.Deprecated for removal in 3.4.0. Usemalloc(int, MemoryStack)
instead.
-
callocStack
@Deprecated public static POINTL.Buffer callocStack(int capacity)
Deprecated.Deprecated for removal in 3.4.0. Usecalloc(int, MemoryStack)
instead.
-
mallocStack
@Deprecated public static POINTL.Buffer mallocStack(int capacity, org.lwjgl.system.MemoryStack stack)
Deprecated.Deprecated for removal in 3.4.0. Usemalloc(int, MemoryStack)
instead.
-
callocStack
@Deprecated public static POINTL.Buffer callocStack(int capacity, org.lwjgl.system.MemoryStack stack)
Deprecated.Deprecated for removal in 3.4.0. Usecalloc(int, MemoryStack)
instead.
-
malloc
public static POINTL malloc(org.lwjgl.system.MemoryStack stack)
Returns a newPOINTL
instance allocated on the specifiedMemoryStack
.- Parameters:
stack
- the stack from which to allocate
-
calloc
public static POINTL calloc(org.lwjgl.system.MemoryStack stack)
Returns a newPOINTL
instance allocated on the specifiedMemoryStack
and initializes all its bits to zero.- Parameters:
stack
- the stack from which to allocate
-
malloc
public static POINTL.Buffer malloc(int capacity, org.lwjgl.system.MemoryStack stack)
Returns a newPOINTL.Buffer
instance allocated on the specifiedMemoryStack
.- Parameters:
stack
- the stack from which to allocatecapacity
- the buffer capacity
-
calloc
public static POINTL.Buffer calloc(int capacity, org.lwjgl.system.MemoryStack stack)
Returns a newPOINTL.Buffer
instance allocated on the specifiedMemoryStack
and initializes all its bits to zero.- Parameters:
stack
- the stack from which to allocatecapacity
- the buffer capacity
-
nx
public static int nx(long struct)
Unsafe version ofx()
.
-
ny
public static int ny(long struct)
Unsafe version ofy()
.
-
nx
public static void nx(long struct, int value)
Unsafe version ofx
.
-
ny
public static void ny(long struct, int value)
Unsafe version ofy
.
-
-