Package org.lwjgl.bgfx
Class BGFXUniformInfo.Buffer
- java.lang.Object
-
- org.lwjgl.system.Pointer.Default
-
- org.lwjgl.system.CustomBuffer<SELF>
-
- org.lwjgl.system.StructBuffer<BGFXUniformInfo,BGFXUniformInfo.Buffer>
-
- org.lwjgl.bgfx.BGFXUniformInfo.Buffer
-
- All Implemented Interfaces:
java.lang.AutoCloseable
,java.lang.Iterable<BGFXUniformInfo>
,org.lwjgl.system.NativeResource
,org.lwjgl.system.Pointer
- Enclosing class:
- BGFXUniformInfo
public static class BGFXUniformInfo.Buffer extends org.lwjgl.system.StructBuffer<BGFXUniformInfo,BGFXUniformInfo.Buffer> implements org.lwjgl.system.NativeResource
An array ofBGFXUniformInfo
structs.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.nio.ByteBuffer
name()
Returns aByteBuffer
view of thename
field.BGFXUniformInfo.Buffer
name(java.nio.ByteBuffer value)
Copies the specified encoded string to thename
field.java.lang.String
nameString()
Decodes the null-terminated string stored in thename
field.short
num()
Returns the value of thenum
field.BGFXUniformInfo.Buffer
num(short value)
Sets the specified value to thenum
field.int
type()
Returns the value of thetype
field.BGFXUniformInfo.Buffer
type(int value)
Sets the specified value to thetype
field.
-
-
-
Constructor Detail
-
Buffer
public Buffer(java.nio.ByteBuffer container)
Creates a newBGFXUniformInfo.Buffer
instance backed by the specified container. Changes to the container's content will be visible to the struct buffer instance and vice versa. The two buffers' position, limit, and mark values will be independent. The new buffer's position will be zero, its capacity and its limit will be the number of bytes remaining in this buffer divided byBGFXUniformInfo.SIZEOF
, and its mark will be undefined.The created buffer instance holds a strong reference to the container object.
-
Buffer
public Buffer(long address, int cap)
-
-
Method Detail
-
name
public java.nio.ByteBuffer name()
Returns aByteBuffer
view of thename
field.
-
nameString
public java.lang.String nameString()
Decodes the null-terminated string stored in thename
field.
-
type
public int type()
Returns the value of thetype
field.
-
num
public short num()
Returns the value of thenum
field.
-
name
public BGFXUniformInfo.Buffer name(java.nio.ByteBuffer value)
Copies the specified encoded string to thename
field.
-
type
public BGFXUniformInfo.Buffer type(int value)
Sets the specified value to thetype
field.
-
num
public BGFXUniformInfo.Buffer num(short value)
Sets the specified value to thenum
field.
-
-