Package org.lwjgl.system.windows
Class POINT
- java.lang.Object
-
- org.lwjgl.system.Pointer.Default
-
- org.lwjgl.system.Struct
-
- org.lwjgl.system.windows.POINT
-
- All Implemented Interfaces:
java.lang.AutoCloseable
,org.lwjgl.system.NativeResource
,org.lwjgl.system.Pointer
public class POINT extends org.lwjgl.system.Struct implements org.lwjgl.system.NativeResource
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
POINT.Buffer
An array ofPOINT
structs.
-
Constructor Summary
Constructors Constructor Description POINT(java.nio.ByteBuffer container)
Creates aPOINT
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 POINT
calloc()
Returns a newPOINT
instance allocated withmemCalloc
.static POINT.Buffer
calloc(int capacity)
Returns a newPOINT.Buffer
instance allocated withmemCalloc
.static POINT.Buffer
calloc(int capacity, org.lwjgl.system.MemoryStack stack)
Returns a newPOINT.Buffer
instance allocated on the specifiedMemoryStack
and initializes all its bits to zero.static POINT
calloc(org.lwjgl.system.MemoryStack stack)
Returns a newPOINT
instance allocated on the specifiedMemoryStack
and initializes all its bits to zero.static POINT
callocStack()
Deprecated.static POINT.Buffer
callocStack(int capacity)
Deprecated.static POINT.Buffer
callocStack(int capacity, org.lwjgl.system.MemoryStack stack)
Deprecated.static POINT
callocStack(org.lwjgl.system.MemoryStack stack)
Deprecated.static POINT
create()
Returns a newPOINT
instance allocated withBufferUtils
.static POINT.Buffer
create(int capacity)
Returns a newPOINT.Buffer
instance allocated withBufferUtils
.static POINT
create(long address)
Returns a newPOINT
instance for the specified memory address.static POINT.Buffer
create(long address, int capacity)
Create aPOINT.Buffer
instance at the specified memory.static POINT
createSafe(long address)
static POINT.Buffer
createSafe(long address, int capacity)
static POINT
malloc()
Returns a newPOINT
instance allocated withmemAlloc
.static POINT.Buffer
malloc(int capacity)
Returns a newPOINT.Buffer
instance allocated withmemAlloc
.static POINT.Buffer
malloc(int capacity, org.lwjgl.system.MemoryStack stack)
Returns a newPOINT.Buffer
instance allocated on the specifiedMemoryStack
.static POINT
malloc(org.lwjgl.system.MemoryStack stack)
Returns a newPOINT
instance allocated on the specifiedMemoryStack
.static POINT
mallocStack()
Deprecated.static POINT.Buffer
mallocStack(int capacity)
Deprecated.static POINT.Buffer
mallocStack(int capacity, org.lwjgl.system.MemoryStack stack)
Deprecated.static POINT
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
.POINT
set(int x, int y)
Initializes this struct with the specified values.POINT
set(POINT src)
Copies the specified struct data to this struct.int
sizeof()
int
x()
the x-coordinate of the pointPOINT
x(int value)
Sets the specified value to thex()
field.int
y()
the y-coordinate of the pointPOINT
y(int value)
Sets the specified value to they()
field.
-
-
-
Constructor Detail
-
POINT
public POINT(java.nio.ByteBuffer container)
Creates aPOINT
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 x-coordinate of the point
-
y
public int y()
the y-coordinate of the point
-
set
public POINT set(int x, int y)
Initializes this struct with the specified values.
-
set
public POINT set(POINT src)
Copies the specified struct data to this struct.- Parameters:
src
- the source struct- Returns:
- this struct
-
malloc
public static POINT malloc()
Returns a newPOINT
instance allocated withmemAlloc
. The instance must be explicitly freed.
-
calloc
public static POINT calloc()
Returns a newPOINT
instance allocated withmemCalloc
. The instance must be explicitly freed.
-
create
public static POINT create()
Returns a newPOINT
instance allocated withBufferUtils
.
-
create
public static POINT create(long address)
Returns a newPOINT
instance for the specified memory address.
-
createSafe
@Nullable public static POINT createSafe(long address)
-
malloc
public static POINT.Buffer malloc(int capacity)
Returns a newPOINT.Buffer
instance allocated withmemAlloc
. The instance must be explicitly freed.- Parameters:
capacity
- the buffer capacity
-
calloc
public static POINT.Buffer calloc(int capacity)
Returns a newPOINT.Buffer
instance allocated withmemCalloc
. The instance must be explicitly freed.- Parameters:
capacity
- the buffer capacity
-
create
public static POINT.Buffer create(int capacity)
Returns a newPOINT.Buffer
instance allocated withBufferUtils
.- Parameters:
capacity
- the buffer capacity
-
create
public static POINT.Buffer create(long address, int capacity)
Create aPOINT.Buffer
instance at the specified memory.- Parameters:
address
- the memory addresscapacity
- the buffer capacity
-
createSafe
@Nullable public static POINT.Buffer createSafe(long address, int capacity)
-
mallocStack
@Deprecated public static POINT mallocStack()
Deprecated.Deprecated for removal in 3.4.0. Usemalloc(MemoryStack)
instead.
-
callocStack
@Deprecated public static POINT callocStack()
Deprecated.Deprecated for removal in 3.4.0. Usecalloc(MemoryStack)
instead.
-
mallocStack
@Deprecated public static POINT mallocStack(org.lwjgl.system.MemoryStack stack)
Deprecated.Deprecated for removal in 3.4.0. Usemalloc(MemoryStack)
instead.
-
callocStack
@Deprecated public static POINT callocStack(org.lwjgl.system.MemoryStack stack)
Deprecated.Deprecated for removal in 3.4.0. Usecalloc(MemoryStack)
instead.
-
mallocStack
@Deprecated public static POINT.Buffer mallocStack(int capacity)
Deprecated.Deprecated for removal in 3.4.0. Usemalloc(int, MemoryStack)
instead.
-
callocStack
@Deprecated public static POINT.Buffer callocStack(int capacity)
Deprecated.Deprecated for removal in 3.4.0. Usecalloc(int, MemoryStack)
instead.
-
mallocStack
@Deprecated public static POINT.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 POINT.Buffer callocStack(int capacity, org.lwjgl.system.MemoryStack stack)
Deprecated.Deprecated for removal in 3.4.0. Usecalloc(int, MemoryStack)
instead.
-
malloc
public static POINT malloc(org.lwjgl.system.MemoryStack stack)
Returns a newPOINT
instance allocated on the specifiedMemoryStack
.- Parameters:
stack
- the stack from which to allocate
-
calloc
public static POINT calloc(org.lwjgl.system.MemoryStack stack)
Returns a newPOINT
instance allocated on the specifiedMemoryStack
and initializes all its bits to zero.- Parameters:
stack
- the stack from which to allocate
-
malloc
public static POINT.Buffer malloc(int capacity, org.lwjgl.system.MemoryStack stack)
Returns a newPOINT.Buffer
instance allocated on the specifiedMemoryStack
.- Parameters:
stack
- the stack from which to allocatecapacity
- the buffer capacity
-
calloc
public static POINT.Buffer calloc(int capacity, org.lwjgl.system.MemoryStack stack)
Returns a newPOINT.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
.
-
-