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 StdVideoH265VideoParameterSet.Buffer create(int capacity) {
ByteBuffer container = __create(capacity, SIZEOF);
return new Buffer(memAddress(container), container, -1, 0, capacity, capacity);
} |
Returns a new {@link StdVideoH265VideoParameterSet.Buffer} instance allocated with {@link BufferUtils}.
@param capacity the buffer capacity
| StdVideoH265VideoParameterSet::create | java | LWJGL/lwjgl3 | modules/lwjgl/vulkan/src/generated/java/org/lwjgl/vulkan/video/StdVideoH265VideoParameterSet.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/vulkan/src/generated/java/org/lwjgl/vulkan/video/StdVideoH265VideoParameterSet.java | BSD-3-Clause |
public static StdVideoH265VideoParameterSet.Buffer create(long address, int capacity) {
return new Buffer(address, capacity);
} |
Create a {@link StdVideoH265VideoParameterSet.Buffer} instance at the specified memory.
@param address the memory address
@param capacity the buffer capacity
| StdVideoH265VideoParameterSet::create | java | LWJGL/lwjgl3 | modules/lwjgl/vulkan/src/generated/java/org/lwjgl/vulkan/video/StdVideoH265VideoParameterSet.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/vulkan/src/generated/java/org/lwjgl/vulkan/video/StdVideoH265VideoParameterSet.java | BSD-3-Clause |
public static StdVideoH265VideoParameterSet.@Nullable Buffer createSafe(long address, int capacity) {
return address == NULL ? null : new Buffer(address, capacity);
} |
Create a {@link StdVideoH265VideoParameterSet.Buffer} instance at the specified memory.
@param address the memory address
@param capacity the buffer capacity
public static StdVideoH265VideoParameterSet.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}. | StdVideoH265VideoParameterSet::createSafe | java | LWJGL/lwjgl3 | modules/lwjgl/vulkan/src/generated/java/org/lwjgl/vulkan/video/StdVideoH265VideoParameterSet.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/vulkan/src/generated/java/org/lwjgl/vulkan/video/StdVideoH265VideoParameterSet.java | BSD-3-Clause |
public static StdVideoH265VideoParameterSet malloc(MemoryStack stack) {
return new StdVideoH265VideoParameterSet(stack.nmalloc(ALIGNOF, SIZEOF), null);
} |
Returns a new {@code StdVideoH265VideoParameterSet} instance allocated on the specified {@link MemoryStack}.
@param stack the stack from which to allocate
| StdVideoH265VideoParameterSet::malloc | java | LWJGL/lwjgl3 | modules/lwjgl/vulkan/src/generated/java/org/lwjgl/vulkan/video/StdVideoH265VideoParameterSet.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/vulkan/src/generated/java/org/lwjgl/vulkan/video/StdVideoH265VideoParameterSet.java | BSD-3-Clause |
public static StdVideoH265VideoParameterSet calloc(MemoryStack stack) {
return new StdVideoH265VideoParameterSet(stack.ncalloc(ALIGNOF, 1, SIZEOF), null);
} |
Returns a new {@code StdVideoH265VideoParameterSet} instance allocated on the specified {@link MemoryStack} and initializes all its bits to zero.
@param stack the stack from which to allocate
| StdVideoH265VideoParameterSet::calloc | java | LWJGL/lwjgl3 | modules/lwjgl/vulkan/src/generated/java/org/lwjgl/vulkan/video/StdVideoH265VideoParameterSet.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/vulkan/src/generated/java/org/lwjgl/vulkan/video/StdVideoH265VideoParameterSet.java | BSD-3-Clause |
public static StdVideoH265VideoParameterSet.Buffer malloc(int capacity, MemoryStack stack) {
return new Buffer(stack.nmalloc(ALIGNOF, capacity * SIZEOF), capacity);
} |
Returns a new {@link StdVideoH265VideoParameterSet.Buffer} instance allocated on the specified {@link MemoryStack}.
@param stack the stack from which to allocate
@param capacity the buffer capacity
| StdVideoH265VideoParameterSet::malloc | java | LWJGL/lwjgl3 | modules/lwjgl/vulkan/src/generated/java/org/lwjgl/vulkan/video/StdVideoH265VideoParameterSet.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/vulkan/src/generated/java/org/lwjgl/vulkan/video/StdVideoH265VideoParameterSet.java | BSD-3-Clause |
public static StdVideoH265VideoParameterSet.Buffer calloc(int capacity, MemoryStack stack) {
return new Buffer(stack.ncalloc(ALIGNOF, capacity, SIZEOF), capacity);
} |
Returns a new {@link StdVideoH265VideoParameterSet.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
| StdVideoH265VideoParameterSet::calloc | java | LWJGL/lwjgl3 | modules/lwjgl/vulkan/src/generated/java/org/lwjgl/vulkan/video/StdVideoH265VideoParameterSet.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/vulkan/src/generated/java/org/lwjgl/vulkan/video/StdVideoH265VideoParameterSet.java | BSD-3-Clause |
public static StdVideoH265VpsFlags nflags(long struct) { return StdVideoH265VpsFlags.create(struct + StdVideoH265VideoParameterSet.FLAGS); } |
Returns a new {@link StdVideoH265VideoParameterSet.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 StdVideoH265VideoParameterSet.Buffer calloc(int capacity, MemoryStack stack) {
return new Buffer(stack.ncalloc(ALIGNOF, capacity, SIZEOF), capacity);
}
// -----------------------------------
/** Unsafe version of {@link #flags}. | StdVideoH265VideoParameterSet::nflags | java | LWJGL/lwjgl3 | modules/lwjgl/vulkan/src/generated/java/org/lwjgl/vulkan/video/StdVideoH265VideoParameterSet.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/vulkan/src/generated/java/org/lwjgl/vulkan/video/StdVideoH265VideoParameterSet.java | BSD-3-Clause |
public static byte nvps_video_parameter_set_id(long struct) { return memGetByte(struct + StdVideoH265VideoParameterSet.VPS_VIDEO_PARAMETER_SET_ID); } |
Returns a new {@link StdVideoH265VideoParameterSet.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 StdVideoH265VideoParameterSet.Buffer calloc(int capacity, MemoryStack stack) {
return new Buffer(stack.ncalloc(ALIGNOF, capacity, SIZEOF), capacity);
}
// -----------------------------------
/** Unsafe version of {@link #flags}.
public static StdVideoH265VpsFlags nflags(long struct) { return StdVideoH265VpsFlags.create(struct + StdVideoH265VideoParameterSet.FLAGS); }
/** Unsafe version of {@link #vps_video_parameter_set_id}. | StdVideoH265VideoParameterSet::nvps_video_parameter_set_id | java | LWJGL/lwjgl3 | modules/lwjgl/vulkan/src/generated/java/org/lwjgl/vulkan/video/StdVideoH265VideoParameterSet.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/vulkan/src/generated/java/org/lwjgl/vulkan/video/StdVideoH265VideoParameterSet.java | BSD-3-Clause |
public static byte nvps_max_sub_layers_minus1(long struct) { return memGetByte(struct + StdVideoH265VideoParameterSet.VPS_MAX_SUB_LAYERS_MINUS1); } |
Returns a new {@link StdVideoH265VideoParameterSet.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 StdVideoH265VideoParameterSet.Buffer calloc(int capacity, MemoryStack stack) {
return new Buffer(stack.ncalloc(ALIGNOF, capacity, SIZEOF), capacity);
}
// -----------------------------------
/** Unsafe version of {@link #flags}.
public static StdVideoH265VpsFlags nflags(long struct) { return StdVideoH265VpsFlags.create(struct + StdVideoH265VideoParameterSet.FLAGS); }
/** Unsafe version of {@link #vps_video_parameter_set_id}.
public static byte nvps_video_parameter_set_id(long struct) { return memGetByte(struct + StdVideoH265VideoParameterSet.VPS_VIDEO_PARAMETER_SET_ID); }
/** Unsafe version of {@link #vps_max_sub_layers_minus1}. | StdVideoH265VideoParameterSet::nvps_max_sub_layers_minus1 | java | LWJGL/lwjgl3 | modules/lwjgl/vulkan/src/generated/java/org/lwjgl/vulkan/video/StdVideoH265VideoParameterSet.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/vulkan/src/generated/java/org/lwjgl/vulkan/video/StdVideoH265VideoParameterSet.java | BSD-3-Clause |
public static int nvps_num_units_in_tick(long struct) { return memGetInt(struct + StdVideoH265VideoParameterSet.VPS_NUM_UNITS_IN_TICK); } |
Returns a new {@link StdVideoH265VideoParameterSet.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 StdVideoH265VideoParameterSet.Buffer calloc(int capacity, MemoryStack stack) {
return new Buffer(stack.ncalloc(ALIGNOF, capacity, SIZEOF), capacity);
}
// -----------------------------------
/** Unsafe version of {@link #flags}.
public static StdVideoH265VpsFlags nflags(long struct) { return StdVideoH265VpsFlags.create(struct + StdVideoH265VideoParameterSet.FLAGS); }
/** Unsafe version of {@link #vps_video_parameter_set_id}.
public static byte nvps_video_parameter_set_id(long struct) { return memGetByte(struct + StdVideoH265VideoParameterSet.VPS_VIDEO_PARAMETER_SET_ID); }
/** Unsafe version of {@link #vps_max_sub_layers_minus1}.
public static byte nvps_max_sub_layers_minus1(long struct) { return memGetByte(struct + StdVideoH265VideoParameterSet.VPS_MAX_SUB_LAYERS_MINUS1); }
public static byte nreserved1(long struct) { return memGetByte(struct + StdVideoH265VideoParameterSet.RESERVED1); }
public static byte nreserved2(long struct) { return memGetByte(struct + StdVideoH265VideoParameterSet.RESERVED2); }
/** Unsafe version of {@link #vps_num_units_in_tick}. | StdVideoH265VideoParameterSet::nvps_num_units_in_tick | java | LWJGL/lwjgl3 | modules/lwjgl/vulkan/src/generated/java/org/lwjgl/vulkan/video/StdVideoH265VideoParameterSet.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/vulkan/src/generated/java/org/lwjgl/vulkan/video/StdVideoH265VideoParameterSet.java | BSD-3-Clause |
public static int nvps_time_scale(long struct) { return memGetInt(struct + StdVideoH265VideoParameterSet.VPS_TIME_SCALE); } |
Returns a new {@link StdVideoH265VideoParameterSet.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 StdVideoH265VideoParameterSet.Buffer calloc(int capacity, MemoryStack stack) {
return new Buffer(stack.ncalloc(ALIGNOF, capacity, SIZEOF), capacity);
}
// -----------------------------------
/** Unsafe version of {@link #flags}.
public static StdVideoH265VpsFlags nflags(long struct) { return StdVideoH265VpsFlags.create(struct + StdVideoH265VideoParameterSet.FLAGS); }
/** Unsafe version of {@link #vps_video_parameter_set_id}.
public static byte nvps_video_parameter_set_id(long struct) { return memGetByte(struct + StdVideoH265VideoParameterSet.VPS_VIDEO_PARAMETER_SET_ID); }
/** Unsafe version of {@link #vps_max_sub_layers_minus1}.
public static byte nvps_max_sub_layers_minus1(long struct) { return memGetByte(struct + StdVideoH265VideoParameterSet.VPS_MAX_SUB_LAYERS_MINUS1); }
public static byte nreserved1(long struct) { return memGetByte(struct + StdVideoH265VideoParameterSet.RESERVED1); }
public static byte nreserved2(long struct) { return memGetByte(struct + StdVideoH265VideoParameterSet.RESERVED2); }
/** Unsafe version of {@link #vps_num_units_in_tick}.
public static int nvps_num_units_in_tick(long struct) { return memGetInt(struct + StdVideoH265VideoParameterSet.VPS_NUM_UNITS_IN_TICK); }
/** Unsafe version of {@link #vps_time_scale}. | StdVideoH265VideoParameterSet::nvps_time_scale | java | LWJGL/lwjgl3 | modules/lwjgl/vulkan/src/generated/java/org/lwjgl/vulkan/video/StdVideoH265VideoParameterSet.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/vulkan/src/generated/java/org/lwjgl/vulkan/video/StdVideoH265VideoParameterSet.java | BSD-3-Clause |
public static int nvps_num_ticks_poc_diff_one_minus1(long struct) { return memGetInt(struct + StdVideoH265VideoParameterSet.VPS_NUM_TICKS_POC_DIFF_ONE_MINUS1); } |
Returns a new {@link StdVideoH265VideoParameterSet.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 StdVideoH265VideoParameterSet.Buffer calloc(int capacity, MemoryStack stack) {
return new Buffer(stack.ncalloc(ALIGNOF, capacity, SIZEOF), capacity);
}
// -----------------------------------
/** Unsafe version of {@link #flags}.
public static StdVideoH265VpsFlags nflags(long struct) { return StdVideoH265VpsFlags.create(struct + StdVideoH265VideoParameterSet.FLAGS); }
/** Unsafe version of {@link #vps_video_parameter_set_id}.
public static byte nvps_video_parameter_set_id(long struct) { return memGetByte(struct + StdVideoH265VideoParameterSet.VPS_VIDEO_PARAMETER_SET_ID); }
/** Unsafe version of {@link #vps_max_sub_layers_minus1}.
public static byte nvps_max_sub_layers_minus1(long struct) { return memGetByte(struct + StdVideoH265VideoParameterSet.VPS_MAX_SUB_LAYERS_MINUS1); }
public static byte nreserved1(long struct) { return memGetByte(struct + StdVideoH265VideoParameterSet.RESERVED1); }
public static byte nreserved2(long struct) { return memGetByte(struct + StdVideoH265VideoParameterSet.RESERVED2); }
/** Unsafe version of {@link #vps_num_units_in_tick}.
public static int nvps_num_units_in_tick(long struct) { return memGetInt(struct + StdVideoH265VideoParameterSet.VPS_NUM_UNITS_IN_TICK); }
/** Unsafe version of {@link #vps_time_scale}.
public static int nvps_time_scale(long struct) { return memGetInt(struct + StdVideoH265VideoParameterSet.VPS_TIME_SCALE); }
/** Unsafe version of {@link #vps_num_ticks_poc_diff_one_minus1}. | StdVideoH265VideoParameterSet::nvps_num_ticks_poc_diff_one_minus1 | java | LWJGL/lwjgl3 | modules/lwjgl/vulkan/src/generated/java/org/lwjgl/vulkan/video/StdVideoH265VideoParameterSet.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/vulkan/src/generated/java/org/lwjgl/vulkan/video/StdVideoH265VideoParameterSet.java | BSD-3-Clause |
public static StdVideoH265DecPicBufMgr npDecPicBufMgr(long struct) { return StdVideoH265DecPicBufMgr.create(memGetAddress(struct + StdVideoH265VideoParameterSet.PDECPICBUFMGR)); } |
Returns a new {@link StdVideoH265VideoParameterSet.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 StdVideoH265VideoParameterSet.Buffer calloc(int capacity, MemoryStack stack) {
return new Buffer(stack.ncalloc(ALIGNOF, capacity, SIZEOF), capacity);
}
// -----------------------------------
/** Unsafe version of {@link #flags}.
public static StdVideoH265VpsFlags nflags(long struct) { return StdVideoH265VpsFlags.create(struct + StdVideoH265VideoParameterSet.FLAGS); }
/** Unsafe version of {@link #vps_video_parameter_set_id}.
public static byte nvps_video_parameter_set_id(long struct) { return memGetByte(struct + StdVideoH265VideoParameterSet.VPS_VIDEO_PARAMETER_SET_ID); }
/** Unsafe version of {@link #vps_max_sub_layers_minus1}.
public static byte nvps_max_sub_layers_minus1(long struct) { return memGetByte(struct + StdVideoH265VideoParameterSet.VPS_MAX_SUB_LAYERS_MINUS1); }
public static byte nreserved1(long struct) { return memGetByte(struct + StdVideoH265VideoParameterSet.RESERVED1); }
public static byte nreserved2(long struct) { return memGetByte(struct + StdVideoH265VideoParameterSet.RESERVED2); }
/** Unsafe version of {@link #vps_num_units_in_tick}.
public static int nvps_num_units_in_tick(long struct) { return memGetInt(struct + StdVideoH265VideoParameterSet.VPS_NUM_UNITS_IN_TICK); }
/** Unsafe version of {@link #vps_time_scale}.
public static int nvps_time_scale(long struct) { return memGetInt(struct + StdVideoH265VideoParameterSet.VPS_TIME_SCALE); }
/** Unsafe version of {@link #vps_num_ticks_poc_diff_one_minus1}.
public static int nvps_num_ticks_poc_diff_one_minus1(long struct) { return memGetInt(struct + StdVideoH265VideoParameterSet.VPS_NUM_TICKS_POC_DIFF_ONE_MINUS1); }
public static int nreserved3(long struct) { return memGetInt(struct + StdVideoH265VideoParameterSet.RESERVED3); }
/** Unsafe version of {@link #pDecPicBufMgr}. | StdVideoH265VideoParameterSet::npDecPicBufMgr | java | LWJGL/lwjgl3 | modules/lwjgl/vulkan/src/generated/java/org/lwjgl/vulkan/video/StdVideoH265VideoParameterSet.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/vulkan/src/generated/java/org/lwjgl/vulkan/video/StdVideoH265VideoParameterSet.java | BSD-3-Clause |
public static StdVideoH265HrdParameters npHrdParameters(long struct) { return StdVideoH265HrdParameters.create(memGetAddress(struct + StdVideoH265VideoParameterSet.PHRDPARAMETERS)); } |
Returns a new {@link StdVideoH265VideoParameterSet.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 StdVideoH265VideoParameterSet.Buffer calloc(int capacity, MemoryStack stack) {
return new Buffer(stack.ncalloc(ALIGNOF, capacity, SIZEOF), capacity);
}
// -----------------------------------
/** Unsafe version of {@link #flags}.
public static StdVideoH265VpsFlags nflags(long struct) { return StdVideoH265VpsFlags.create(struct + StdVideoH265VideoParameterSet.FLAGS); }
/** Unsafe version of {@link #vps_video_parameter_set_id}.
public static byte nvps_video_parameter_set_id(long struct) { return memGetByte(struct + StdVideoH265VideoParameterSet.VPS_VIDEO_PARAMETER_SET_ID); }
/** Unsafe version of {@link #vps_max_sub_layers_minus1}.
public static byte nvps_max_sub_layers_minus1(long struct) { return memGetByte(struct + StdVideoH265VideoParameterSet.VPS_MAX_SUB_LAYERS_MINUS1); }
public static byte nreserved1(long struct) { return memGetByte(struct + StdVideoH265VideoParameterSet.RESERVED1); }
public static byte nreserved2(long struct) { return memGetByte(struct + StdVideoH265VideoParameterSet.RESERVED2); }
/** Unsafe version of {@link #vps_num_units_in_tick}.
public static int nvps_num_units_in_tick(long struct) { return memGetInt(struct + StdVideoH265VideoParameterSet.VPS_NUM_UNITS_IN_TICK); }
/** Unsafe version of {@link #vps_time_scale}.
public static int nvps_time_scale(long struct) { return memGetInt(struct + StdVideoH265VideoParameterSet.VPS_TIME_SCALE); }
/** Unsafe version of {@link #vps_num_ticks_poc_diff_one_minus1}.
public static int nvps_num_ticks_poc_diff_one_minus1(long struct) { return memGetInt(struct + StdVideoH265VideoParameterSet.VPS_NUM_TICKS_POC_DIFF_ONE_MINUS1); }
public static int nreserved3(long struct) { return memGetInt(struct + StdVideoH265VideoParameterSet.RESERVED3); }
/** Unsafe version of {@link #pDecPicBufMgr}.
public static StdVideoH265DecPicBufMgr npDecPicBufMgr(long struct) { return StdVideoH265DecPicBufMgr.create(memGetAddress(struct + StdVideoH265VideoParameterSet.PDECPICBUFMGR)); }
/** Unsafe version of {@link #pHrdParameters}. | StdVideoH265VideoParameterSet::npHrdParameters | java | LWJGL/lwjgl3 | modules/lwjgl/vulkan/src/generated/java/org/lwjgl/vulkan/video/StdVideoH265VideoParameterSet.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/vulkan/src/generated/java/org/lwjgl/vulkan/video/StdVideoH265VideoParameterSet.java | BSD-3-Clause |
public static StdVideoH265ProfileTierLevel npProfileTierLevel(long struct) { return StdVideoH265ProfileTierLevel.create(memGetAddress(struct + StdVideoH265VideoParameterSet.PPROFILETIERLEVEL)); } |
Returns a new {@link StdVideoH265VideoParameterSet.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 StdVideoH265VideoParameterSet.Buffer calloc(int capacity, MemoryStack stack) {
return new Buffer(stack.ncalloc(ALIGNOF, capacity, SIZEOF), capacity);
}
// -----------------------------------
/** Unsafe version of {@link #flags}.
public static StdVideoH265VpsFlags nflags(long struct) { return StdVideoH265VpsFlags.create(struct + StdVideoH265VideoParameterSet.FLAGS); }
/** Unsafe version of {@link #vps_video_parameter_set_id}.
public static byte nvps_video_parameter_set_id(long struct) { return memGetByte(struct + StdVideoH265VideoParameterSet.VPS_VIDEO_PARAMETER_SET_ID); }
/** Unsafe version of {@link #vps_max_sub_layers_minus1}.
public static byte nvps_max_sub_layers_minus1(long struct) { return memGetByte(struct + StdVideoH265VideoParameterSet.VPS_MAX_SUB_LAYERS_MINUS1); }
public static byte nreserved1(long struct) { return memGetByte(struct + StdVideoH265VideoParameterSet.RESERVED1); }
public static byte nreserved2(long struct) { return memGetByte(struct + StdVideoH265VideoParameterSet.RESERVED2); }
/** Unsafe version of {@link #vps_num_units_in_tick}.
public static int nvps_num_units_in_tick(long struct) { return memGetInt(struct + StdVideoH265VideoParameterSet.VPS_NUM_UNITS_IN_TICK); }
/** Unsafe version of {@link #vps_time_scale}.
public static int nvps_time_scale(long struct) { return memGetInt(struct + StdVideoH265VideoParameterSet.VPS_TIME_SCALE); }
/** Unsafe version of {@link #vps_num_ticks_poc_diff_one_minus1}.
public static int nvps_num_ticks_poc_diff_one_minus1(long struct) { return memGetInt(struct + StdVideoH265VideoParameterSet.VPS_NUM_TICKS_POC_DIFF_ONE_MINUS1); }
public static int nreserved3(long struct) { return memGetInt(struct + StdVideoH265VideoParameterSet.RESERVED3); }
/** Unsafe version of {@link #pDecPicBufMgr}.
public static StdVideoH265DecPicBufMgr npDecPicBufMgr(long struct) { return StdVideoH265DecPicBufMgr.create(memGetAddress(struct + StdVideoH265VideoParameterSet.PDECPICBUFMGR)); }
/** Unsafe version of {@link #pHrdParameters}.
public static StdVideoH265HrdParameters npHrdParameters(long struct) { return StdVideoH265HrdParameters.create(memGetAddress(struct + StdVideoH265VideoParameterSet.PHRDPARAMETERS)); }
/** Unsafe version of {@link #pProfileTierLevel}. | StdVideoH265VideoParameterSet::npProfileTierLevel | java | LWJGL/lwjgl3 | modules/lwjgl/vulkan/src/generated/java/org/lwjgl/vulkan/video/StdVideoH265VideoParameterSet.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/vulkan/src/generated/java/org/lwjgl/vulkan/video/StdVideoH265VideoParameterSet.java | BSD-3-Clause |
public static void nflags(long struct, StdVideoH265VpsFlags value) { memCopy(value.address(), struct + StdVideoH265VideoParameterSet.FLAGS, StdVideoH265VpsFlags.SIZEOF); } |
Returns a new {@link StdVideoH265VideoParameterSet.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 StdVideoH265VideoParameterSet.Buffer calloc(int capacity, MemoryStack stack) {
return new Buffer(stack.ncalloc(ALIGNOF, capacity, SIZEOF), capacity);
}
// -----------------------------------
/** Unsafe version of {@link #flags}.
public static StdVideoH265VpsFlags nflags(long struct) { return StdVideoH265VpsFlags.create(struct + StdVideoH265VideoParameterSet.FLAGS); }
/** Unsafe version of {@link #vps_video_parameter_set_id}.
public static byte nvps_video_parameter_set_id(long struct) { return memGetByte(struct + StdVideoH265VideoParameterSet.VPS_VIDEO_PARAMETER_SET_ID); }
/** Unsafe version of {@link #vps_max_sub_layers_minus1}.
public static byte nvps_max_sub_layers_minus1(long struct) { return memGetByte(struct + StdVideoH265VideoParameterSet.VPS_MAX_SUB_LAYERS_MINUS1); }
public static byte nreserved1(long struct) { return memGetByte(struct + StdVideoH265VideoParameterSet.RESERVED1); }
public static byte nreserved2(long struct) { return memGetByte(struct + StdVideoH265VideoParameterSet.RESERVED2); }
/** Unsafe version of {@link #vps_num_units_in_tick}.
public static int nvps_num_units_in_tick(long struct) { return memGetInt(struct + StdVideoH265VideoParameterSet.VPS_NUM_UNITS_IN_TICK); }
/** Unsafe version of {@link #vps_time_scale}.
public static int nvps_time_scale(long struct) { return memGetInt(struct + StdVideoH265VideoParameterSet.VPS_TIME_SCALE); }
/** Unsafe version of {@link #vps_num_ticks_poc_diff_one_minus1}.
public static int nvps_num_ticks_poc_diff_one_minus1(long struct) { return memGetInt(struct + StdVideoH265VideoParameterSet.VPS_NUM_TICKS_POC_DIFF_ONE_MINUS1); }
public static int nreserved3(long struct) { return memGetInt(struct + StdVideoH265VideoParameterSet.RESERVED3); }
/** Unsafe version of {@link #pDecPicBufMgr}.
public static StdVideoH265DecPicBufMgr npDecPicBufMgr(long struct) { return StdVideoH265DecPicBufMgr.create(memGetAddress(struct + StdVideoH265VideoParameterSet.PDECPICBUFMGR)); }
/** Unsafe version of {@link #pHrdParameters}.
public static StdVideoH265HrdParameters npHrdParameters(long struct) { return StdVideoH265HrdParameters.create(memGetAddress(struct + StdVideoH265VideoParameterSet.PHRDPARAMETERS)); }
/** Unsafe version of {@link #pProfileTierLevel}.
public static StdVideoH265ProfileTierLevel npProfileTierLevel(long struct) { return StdVideoH265ProfileTierLevel.create(memGetAddress(struct + StdVideoH265VideoParameterSet.PPROFILETIERLEVEL)); }
/** Unsafe version of {@link #flags(StdVideoH265VpsFlags) flags}. | StdVideoH265VideoParameterSet::nflags | java | LWJGL/lwjgl3 | modules/lwjgl/vulkan/src/generated/java/org/lwjgl/vulkan/video/StdVideoH265VideoParameterSet.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/vulkan/src/generated/java/org/lwjgl/vulkan/video/StdVideoH265VideoParameterSet.java | BSD-3-Clause |
public static void nvps_video_parameter_set_id(long struct, byte value) { memPutByte(struct + StdVideoH265VideoParameterSet.VPS_VIDEO_PARAMETER_SET_ID, value); } |
Returns a new {@link StdVideoH265VideoParameterSet.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 StdVideoH265VideoParameterSet.Buffer calloc(int capacity, MemoryStack stack) {
return new Buffer(stack.ncalloc(ALIGNOF, capacity, SIZEOF), capacity);
}
// -----------------------------------
/** Unsafe version of {@link #flags}.
public static StdVideoH265VpsFlags nflags(long struct) { return StdVideoH265VpsFlags.create(struct + StdVideoH265VideoParameterSet.FLAGS); }
/** Unsafe version of {@link #vps_video_parameter_set_id}.
public static byte nvps_video_parameter_set_id(long struct) { return memGetByte(struct + StdVideoH265VideoParameterSet.VPS_VIDEO_PARAMETER_SET_ID); }
/** Unsafe version of {@link #vps_max_sub_layers_minus1}.
public static byte nvps_max_sub_layers_minus1(long struct) { return memGetByte(struct + StdVideoH265VideoParameterSet.VPS_MAX_SUB_LAYERS_MINUS1); }
public static byte nreserved1(long struct) { return memGetByte(struct + StdVideoH265VideoParameterSet.RESERVED1); }
public static byte nreserved2(long struct) { return memGetByte(struct + StdVideoH265VideoParameterSet.RESERVED2); }
/** Unsafe version of {@link #vps_num_units_in_tick}.
public static int nvps_num_units_in_tick(long struct) { return memGetInt(struct + StdVideoH265VideoParameterSet.VPS_NUM_UNITS_IN_TICK); }
/** Unsafe version of {@link #vps_time_scale}.
public static int nvps_time_scale(long struct) { return memGetInt(struct + StdVideoH265VideoParameterSet.VPS_TIME_SCALE); }
/** Unsafe version of {@link #vps_num_ticks_poc_diff_one_minus1}.
public static int nvps_num_ticks_poc_diff_one_minus1(long struct) { return memGetInt(struct + StdVideoH265VideoParameterSet.VPS_NUM_TICKS_POC_DIFF_ONE_MINUS1); }
public static int nreserved3(long struct) { return memGetInt(struct + StdVideoH265VideoParameterSet.RESERVED3); }
/** Unsafe version of {@link #pDecPicBufMgr}.
public static StdVideoH265DecPicBufMgr npDecPicBufMgr(long struct) { return StdVideoH265DecPicBufMgr.create(memGetAddress(struct + StdVideoH265VideoParameterSet.PDECPICBUFMGR)); }
/** Unsafe version of {@link #pHrdParameters}.
public static StdVideoH265HrdParameters npHrdParameters(long struct) { return StdVideoH265HrdParameters.create(memGetAddress(struct + StdVideoH265VideoParameterSet.PHRDPARAMETERS)); }
/** Unsafe version of {@link #pProfileTierLevel}.
public static StdVideoH265ProfileTierLevel npProfileTierLevel(long struct) { return StdVideoH265ProfileTierLevel.create(memGetAddress(struct + StdVideoH265VideoParameterSet.PPROFILETIERLEVEL)); }
/** Unsafe version of {@link #flags(StdVideoH265VpsFlags) flags}.
public static void nflags(long struct, StdVideoH265VpsFlags value) { memCopy(value.address(), struct + StdVideoH265VideoParameterSet.FLAGS, StdVideoH265VpsFlags.SIZEOF); }
/** Unsafe version of {@link #vps_video_parameter_set_id(byte) vps_video_parameter_set_id}. | StdVideoH265VideoParameterSet::nvps_video_parameter_set_id | java | LWJGL/lwjgl3 | modules/lwjgl/vulkan/src/generated/java/org/lwjgl/vulkan/video/StdVideoH265VideoParameterSet.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/vulkan/src/generated/java/org/lwjgl/vulkan/video/StdVideoH265VideoParameterSet.java | BSD-3-Clause |
public static void nvps_max_sub_layers_minus1(long struct, byte value) { memPutByte(struct + StdVideoH265VideoParameterSet.VPS_MAX_SUB_LAYERS_MINUS1, value); } |
Returns a new {@link StdVideoH265VideoParameterSet.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 StdVideoH265VideoParameterSet.Buffer calloc(int capacity, MemoryStack stack) {
return new Buffer(stack.ncalloc(ALIGNOF, capacity, SIZEOF), capacity);
}
// -----------------------------------
/** Unsafe version of {@link #flags}.
public static StdVideoH265VpsFlags nflags(long struct) { return StdVideoH265VpsFlags.create(struct + StdVideoH265VideoParameterSet.FLAGS); }
/** Unsafe version of {@link #vps_video_parameter_set_id}.
public static byte nvps_video_parameter_set_id(long struct) { return memGetByte(struct + StdVideoH265VideoParameterSet.VPS_VIDEO_PARAMETER_SET_ID); }
/** Unsafe version of {@link #vps_max_sub_layers_minus1}.
public static byte nvps_max_sub_layers_minus1(long struct) { return memGetByte(struct + StdVideoH265VideoParameterSet.VPS_MAX_SUB_LAYERS_MINUS1); }
public static byte nreserved1(long struct) { return memGetByte(struct + StdVideoH265VideoParameterSet.RESERVED1); }
public static byte nreserved2(long struct) { return memGetByte(struct + StdVideoH265VideoParameterSet.RESERVED2); }
/** Unsafe version of {@link #vps_num_units_in_tick}.
public static int nvps_num_units_in_tick(long struct) { return memGetInt(struct + StdVideoH265VideoParameterSet.VPS_NUM_UNITS_IN_TICK); }
/** Unsafe version of {@link #vps_time_scale}.
public static int nvps_time_scale(long struct) { return memGetInt(struct + StdVideoH265VideoParameterSet.VPS_TIME_SCALE); }
/** Unsafe version of {@link #vps_num_ticks_poc_diff_one_minus1}.
public static int nvps_num_ticks_poc_diff_one_minus1(long struct) { return memGetInt(struct + StdVideoH265VideoParameterSet.VPS_NUM_TICKS_POC_DIFF_ONE_MINUS1); }
public static int nreserved3(long struct) { return memGetInt(struct + StdVideoH265VideoParameterSet.RESERVED3); }
/** Unsafe version of {@link #pDecPicBufMgr}.
public static StdVideoH265DecPicBufMgr npDecPicBufMgr(long struct) { return StdVideoH265DecPicBufMgr.create(memGetAddress(struct + StdVideoH265VideoParameterSet.PDECPICBUFMGR)); }
/** Unsafe version of {@link #pHrdParameters}.
public static StdVideoH265HrdParameters npHrdParameters(long struct) { return StdVideoH265HrdParameters.create(memGetAddress(struct + StdVideoH265VideoParameterSet.PHRDPARAMETERS)); }
/** Unsafe version of {@link #pProfileTierLevel}.
public static StdVideoH265ProfileTierLevel npProfileTierLevel(long struct) { return StdVideoH265ProfileTierLevel.create(memGetAddress(struct + StdVideoH265VideoParameterSet.PPROFILETIERLEVEL)); }
/** Unsafe version of {@link #flags(StdVideoH265VpsFlags) flags}.
public static void nflags(long struct, StdVideoH265VpsFlags value) { memCopy(value.address(), struct + StdVideoH265VideoParameterSet.FLAGS, StdVideoH265VpsFlags.SIZEOF); }
/** Unsafe version of {@link #vps_video_parameter_set_id(byte) vps_video_parameter_set_id}.
public static void nvps_video_parameter_set_id(long struct, byte value) { memPutByte(struct + StdVideoH265VideoParameterSet.VPS_VIDEO_PARAMETER_SET_ID, value); }
/** Unsafe version of {@link #vps_max_sub_layers_minus1(byte) vps_max_sub_layers_minus1}. | StdVideoH265VideoParameterSet::nvps_max_sub_layers_minus1 | java | LWJGL/lwjgl3 | modules/lwjgl/vulkan/src/generated/java/org/lwjgl/vulkan/video/StdVideoH265VideoParameterSet.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/vulkan/src/generated/java/org/lwjgl/vulkan/video/StdVideoH265VideoParameterSet.java | BSD-3-Clause |
public static void nvps_num_units_in_tick(long struct, int value) { memPutInt(struct + StdVideoH265VideoParameterSet.VPS_NUM_UNITS_IN_TICK, value); } |
Returns a new {@link StdVideoH265VideoParameterSet.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 StdVideoH265VideoParameterSet.Buffer calloc(int capacity, MemoryStack stack) {
return new Buffer(stack.ncalloc(ALIGNOF, capacity, SIZEOF), capacity);
}
// -----------------------------------
/** Unsafe version of {@link #flags}.
public static StdVideoH265VpsFlags nflags(long struct) { return StdVideoH265VpsFlags.create(struct + StdVideoH265VideoParameterSet.FLAGS); }
/** Unsafe version of {@link #vps_video_parameter_set_id}.
public static byte nvps_video_parameter_set_id(long struct) { return memGetByte(struct + StdVideoH265VideoParameterSet.VPS_VIDEO_PARAMETER_SET_ID); }
/** Unsafe version of {@link #vps_max_sub_layers_minus1}.
public static byte nvps_max_sub_layers_minus1(long struct) { return memGetByte(struct + StdVideoH265VideoParameterSet.VPS_MAX_SUB_LAYERS_MINUS1); }
public static byte nreserved1(long struct) { return memGetByte(struct + StdVideoH265VideoParameterSet.RESERVED1); }
public static byte nreserved2(long struct) { return memGetByte(struct + StdVideoH265VideoParameterSet.RESERVED2); }
/** Unsafe version of {@link #vps_num_units_in_tick}.
public static int nvps_num_units_in_tick(long struct) { return memGetInt(struct + StdVideoH265VideoParameterSet.VPS_NUM_UNITS_IN_TICK); }
/** Unsafe version of {@link #vps_time_scale}.
public static int nvps_time_scale(long struct) { return memGetInt(struct + StdVideoH265VideoParameterSet.VPS_TIME_SCALE); }
/** Unsafe version of {@link #vps_num_ticks_poc_diff_one_minus1}.
public static int nvps_num_ticks_poc_diff_one_minus1(long struct) { return memGetInt(struct + StdVideoH265VideoParameterSet.VPS_NUM_TICKS_POC_DIFF_ONE_MINUS1); }
public static int nreserved3(long struct) { return memGetInt(struct + StdVideoH265VideoParameterSet.RESERVED3); }
/** Unsafe version of {@link #pDecPicBufMgr}.
public static StdVideoH265DecPicBufMgr npDecPicBufMgr(long struct) { return StdVideoH265DecPicBufMgr.create(memGetAddress(struct + StdVideoH265VideoParameterSet.PDECPICBUFMGR)); }
/** Unsafe version of {@link #pHrdParameters}.
public static StdVideoH265HrdParameters npHrdParameters(long struct) { return StdVideoH265HrdParameters.create(memGetAddress(struct + StdVideoH265VideoParameterSet.PHRDPARAMETERS)); }
/** Unsafe version of {@link #pProfileTierLevel}.
public static StdVideoH265ProfileTierLevel npProfileTierLevel(long struct) { return StdVideoH265ProfileTierLevel.create(memGetAddress(struct + StdVideoH265VideoParameterSet.PPROFILETIERLEVEL)); }
/** Unsafe version of {@link #flags(StdVideoH265VpsFlags) flags}.
public static void nflags(long struct, StdVideoH265VpsFlags value) { memCopy(value.address(), struct + StdVideoH265VideoParameterSet.FLAGS, StdVideoH265VpsFlags.SIZEOF); }
/** Unsafe version of {@link #vps_video_parameter_set_id(byte) vps_video_parameter_set_id}.
public static void nvps_video_parameter_set_id(long struct, byte value) { memPutByte(struct + StdVideoH265VideoParameterSet.VPS_VIDEO_PARAMETER_SET_ID, value); }
/** Unsafe version of {@link #vps_max_sub_layers_minus1(byte) vps_max_sub_layers_minus1}.
public static void nvps_max_sub_layers_minus1(long struct, byte value) { memPutByte(struct + StdVideoH265VideoParameterSet.VPS_MAX_SUB_LAYERS_MINUS1, value); }
public static void nreserved1(long struct, byte value) { memPutByte(struct + StdVideoH265VideoParameterSet.RESERVED1, value); }
public static void nreserved2(long struct, byte value) { memPutByte(struct + StdVideoH265VideoParameterSet.RESERVED2, value); }
/** Unsafe version of {@link #vps_num_units_in_tick(int) vps_num_units_in_tick}. | StdVideoH265VideoParameterSet::nvps_num_units_in_tick | java | LWJGL/lwjgl3 | modules/lwjgl/vulkan/src/generated/java/org/lwjgl/vulkan/video/StdVideoH265VideoParameterSet.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/vulkan/src/generated/java/org/lwjgl/vulkan/video/StdVideoH265VideoParameterSet.java | BSD-3-Clause |
public static void nvps_time_scale(long struct, int value) { memPutInt(struct + StdVideoH265VideoParameterSet.VPS_TIME_SCALE, value); } |
Returns a new {@link StdVideoH265VideoParameterSet.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 StdVideoH265VideoParameterSet.Buffer calloc(int capacity, MemoryStack stack) {
return new Buffer(stack.ncalloc(ALIGNOF, capacity, SIZEOF), capacity);
}
// -----------------------------------
/** Unsafe version of {@link #flags}.
public static StdVideoH265VpsFlags nflags(long struct) { return StdVideoH265VpsFlags.create(struct + StdVideoH265VideoParameterSet.FLAGS); }
/** Unsafe version of {@link #vps_video_parameter_set_id}.
public static byte nvps_video_parameter_set_id(long struct) { return memGetByte(struct + StdVideoH265VideoParameterSet.VPS_VIDEO_PARAMETER_SET_ID); }
/** Unsafe version of {@link #vps_max_sub_layers_minus1}.
public static byte nvps_max_sub_layers_minus1(long struct) { return memGetByte(struct + StdVideoH265VideoParameterSet.VPS_MAX_SUB_LAYERS_MINUS1); }
public static byte nreserved1(long struct) { return memGetByte(struct + StdVideoH265VideoParameterSet.RESERVED1); }
public static byte nreserved2(long struct) { return memGetByte(struct + StdVideoH265VideoParameterSet.RESERVED2); }
/** Unsafe version of {@link #vps_num_units_in_tick}.
public static int nvps_num_units_in_tick(long struct) { return memGetInt(struct + StdVideoH265VideoParameterSet.VPS_NUM_UNITS_IN_TICK); }
/** Unsafe version of {@link #vps_time_scale}.
public static int nvps_time_scale(long struct) { return memGetInt(struct + StdVideoH265VideoParameterSet.VPS_TIME_SCALE); }
/** Unsafe version of {@link #vps_num_ticks_poc_diff_one_minus1}.
public static int nvps_num_ticks_poc_diff_one_minus1(long struct) { return memGetInt(struct + StdVideoH265VideoParameterSet.VPS_NUM_TICKS_POC_DIFF_ONE_MINUS1); }
public static int nreserved3(long struct) { return memGetInt(struct + StdVideoH265VideoParameterSet.RESERVED3); }
/** Unsafe version of {@link #pDecPicBufMgr}.
public static StdVideoH265DecPicBufMgr npDecPicBufMgr(long struct) { return StdVideoH265DecPicBufMgr.create(memGetAddress(struct + StdVideoH265VideoParameterSet.PDECPICBUFMGR)); }
/** Unsafe version of {@link #pHrdParameters}.
public static StdVideoH265HrdParameters npHrdParameters(long struct) { return StdVideoH265HrdParameters.create(memGetAddress(struct + StdVideoH265VideoParameterSet.PHRDPARAMETERS)); }
/** Unsafe version of {@link #pProfileTierLevel}.
public static StdVideoH265ProfileTierLevel npProfileTierLevel(long struct) { return StdVideoH265ProfileTierLevel.create(memGetAddress(struct + StdVideoH265VideoParameterSet.PPROFILETIERLEVEL)); }
/** Unsafe version of {@link #flags(StdVideoH265VpsFlags) flags}.
public static void nflags(long struct, StdVideoH265VpsFlags value) { memCopy(value.address(), struct + StdVideoH265VideoParameterSet.FLAGS, StdVideoH265VpsFlags.SIZEOF); }
/** Unsafe version of {@link #vps_video_parameter_set_id(byte) vps_video_parameter_set_id}.
public static void nvps_video_parameter_set_id(long struct, byte value) { memPutByte(struct + StdVideoH265VideoParameterSet.VPS_VIDEO_PARAMETER_SET_ID, value); }
/** Unsafe version of {@link #vps_max_sub_layers_minus1(byte) vps_max_sub_layers_minus1}.
public static void nvps_max_sub_layers_minus1(long struct, byte value) { memPutByte(struct + StdVideoH265VideoParameterSet.VPS_MAX_SUB_LAYERS_MINUS1, value); }
public static void nreserved1(long struct, byte value) { memPutByte(struct + StdVideoH265VideoParameterSet.RESERVED1, value); }
public static void nreserved2(long struct, byte value) { memPutByte(struct + StdVideoH265VideoParameterSet.RESERVED2, value); }
/** Unsafe version of {@link #vps_num_units_in_tick(int) vps_num_units_in_tick}.
public static void nvps_num_units_in_tick(long struct, int value) { memPutInt(struct + StdVideoH265VideoParameterSet.VPS_NUM_UNITS_IN_TICK, value); }
/** Unsafe version of {@link #vps_time_scale(int) vps_time_scale}. | StdVideoH265VideoParameterSet::nvps_time_scale | java | LWJGL/lwjgl3 | modules/lwjgl/vulkan/src/generated/java/org/lwjgl/vulkan/video/StdVideoH265VideoParameterSet.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/vulkan/src/generated/java/org/lwjgl/vulkan/video/StdVideoH265VideoParameterSet.java | BSD-3-Clause |
public static void nvps_num_ticks_poc_diff_one_minus1(long struct, int value) { memPutInt(struct + StdVideoH265VideoParameterSet.VPS_NUM_TICKS_POC_DIFF_ONE_MINUS1, value); } |
Returns a new {@link StdVideoH265VideoParameterSet.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 StdVideoH265VideoParameterSet.Buffer calloc(int capacity, MemoryStack stack) {
return new Buffer(stack.ncalloc(ALIGNOF, capacity, SIZEOF), capacity);
}
// -----------------------------------
/** Unsafe version of {@link #flags}.
public static StdVideoH265VpsFlags nflags(long struct) { return StdVideoH265VpsFlags.create(struct + StdVideoH265VideoParameterSet.FLAGS); }
/** Unsafe version of {@link #vps_video_parameter_set_id}.
public static byte nvps_video_parameter_set_id(long struct) { return memGetByte(struct + StdVideoH265VideoParameterSet.VPS_VIDEO_PARAMETER_SET_ID); }
/** Unsafe version of {@link #vps_max_sub_layers_minus1}.
public static byte nvps_max_sub_layers_minus1(long struct) { return memGetByte(struct + StdVideoH265VideoParameterSet.VPS_MAX_SUB_LAYERS_MINUS1); }
public static byte nreserved1(long struct) { return memGetByte(struct + StdVideoH265VideoParameterSet.RESERVED1); }
public static byte nreserved2(long struct) { return memGetByte(struct + StdVideoH265VideoParameterSet.RESERVED2); }
/** Unsafe version of {@link #vps_num_units_in_tick}.
public static int nvps_num_units_in_tick(long struct) { return memGetInt(struct + StdVideoH265VideoParameterSet.VPS_NUM_UNITS_IN_TICK); }
/** Unsafe version of {@link #vps_time_scale}.
public static int nvps_time_scale(long struct) { return memGetInt(struct + StdVideoH265VideoParameterSet.VPS_TIME_SCALE); }
/** Unsafe version of {@link #vps_num_ticks_poc_diff_one_minus1}.
public static int nvps_num_ticks_poc_diff_one_minus1(long struct) { return memGetInt(struct + StdVideoH265VideoParameterSet.VPS_NUM_TICKS_POC_DIFF_ONE_MINUS1); }
public static int nreserved3(long struct) { return memGetInt(struct + StdVideoH265VideoParameterSet.RESERVED3); }
/** Unsafe version of {@link #pDecPicBufMgr}.
public static StdVideoH265DecPicBufMgr npDecPicBufMgr(long struct) { return StdVideoH265DecPicBufMgr.create(memGetAddress(struct + StdVideoH265VideoParameterSet.PDECPICBUFMGR)); }
/** Unsafe version of {@link #pHrdParameters}.
public static StdVideoH265HrdParameters npHrdParameters(long struct) { return StdVideoH265HrdParameters.create(memGetAddress(struct + StdVideoH265VideoParameterSet.PHRDPARAMETERS)); }
/** Unsafe version of {@link #pProfileTierLevel}.
public static StdVideoH265ProfileTierLevel npProfileTierLevel(long struct) { return StdVideoH265ProfileTierLevel.create(memGetAddress(struct + StdVideoH265VideoParameterSet.PPROFILETIERLEVEL)); }
/** Unsafe version of {@link #flags(StdVideoH265VpsFlags) flags}.
public static void nflags(long struct, StdVideoH265VpsFlags value) { memCopy(value.address(), struct + StdVideoH265VideoParameterSet.FLAGS, StdVideoH265VpsFlags.SIZEOF); }
/** Unsafe version of {@link #vps_video_parameter_set_id(byte) vps_video_parameter_set_id}.
public static void nvps_video_parameter_set_id(long struct, byte value) { memPutByte(struct + StdVideoH265VideoParameterSet.VPS_VIDEO_PARAMETER_SET_ID, value); }
/** Unsafe version of {@link #vps_max_sub_layers_minus1(byte) vps_max_sub_layers_minus1}.
public static void nvps_max_sub_layers_minus1(long struct, byte value) { memPutByte(struct + StdVideoH265VideoParameterSet.VPS_MAX_SUB_LAYERS_MINUS1, value); }
public static void nreserved1(long struct, byte value) { memPutByte(struct + StdVideoH265VideoParameterSet.RESERVED1, value); }
public static void nreserved2(long struct, byte value) { memPutByte(struct + StdVideoH265VideoParameterSet.RESERVED2, value); }
/** Unsafe version of {@link #vps_num_units_in_tick(int) vps_num_units_in_tick}.
public static void nvps_num_units_in_tick(long struct, int value) { memPutInt(struct + StdVideoH265VideoParameterSet.VPS_NUM_UNITS_IN_TICK, value); }
/** Unsafe version of {@link #vps_time_scale(int) vps_time_scale}.
public static void nvps_time_scale(long struct, int value) { memPutInt(struct + StdVideoH265VideoParameterSet.VPS_TIME_SCALE, value); }
/** Unsafe version of {@link #vps_num_ticks_poc_diff_one_minus1(int) vps_num_ticks_poc_diff_one_minus1}. | StdVideoH265VideoParameterSet::nvps_num_ticks_poc_diff_one_minus1 | java | LWJGL/lwjgl3 | modules/lwjgl/vulkan/src/generated/java/org/lwjgl/vulkan/video/StdVideoH265VideoParameterSet.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/vulkan/src/generated/java/org/lwjgl/vulkan/video/StdVideoH265VideoParameterSet.java | BSD-3-Clause |
public static void npDecPicBufMgr(long struct, StdVideoH265DecPicBufMgr value) { memPutAddress(struct + StdVideoH265VideoParameterSet.PDECPICBUFMGR, value.address()); } |
Returns a new {@link StdVideoH265VideoParameterSet.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 StdVideoH265VideoParameterSet.Buffer calloc(int capacity, MemoryStack stack) {
return new Buffer(stack.ncalloc(ALIGNOF, capacity, SIZEOF), capacity);
}
// -----------------------------------
/** Unsafe version of {@link #flags}.
public static StdVideoH265VpsFlags nflags(long struct) { return StdVideoH265VpsFlags.create(struct + StdVideoH265VideoParameterSet.FLAGS); }
/** Unsafe version of {@link #vps_video_parameter_set_id}.
public static byte nvps_video_parameter_set_id(long struct) { return memGetByte(struct + StdVideoH265VideoParameterSet.VPS_VIDEO_PARAMETER_SET_ID); }
/** Unsafe version of {@link #vps_max_sub_layers_minus1}.
public static byte nvps_max_sub_layers_minus1(long struct) { return memGetByte(struct + StdVideoH265VideoParameterSet.VPS_MAX_SUB_LAYERS_MINUS1); }
public static byte nreserved1(long struct) { return memGetByte(struct + StdVideoH265VideoParameterSet.RESERVED1); }
public static byte nreserved2(long struct) { return memGetByte(struct + StdVideoH265VideoParameterSet.RESERVED2); }
/** Unsafe version of {@link #vps_num_units_in_tick}.
public static int nvps_num_units_in_tick(long struct) { return memGetInt(struct + StdVideoH265VideoParameterSet.VPS_NUM_UNITS_IN_TICK); }
/** Unsafe version of {@link #vps_time_scale}.
public static int nvps_time_scale(long struct) { return memGetInt(struct + StdVideoH265VideoParameterSet.VPS_TIME_SCALE); }
/** Unsafe version of {@link #vps_num_ticks_poc_diff_one_minus1}.
public static int nvps_num_ticks_poc_diff_one_minus1(long struct) { return memGetInt(struct + StdVideoH265VideoParameterSet.VPS_NUM_TICKS_POC_DIFF_ONE_MINUS1); }
public static int nreserved3(long struct) { return memGetInt(struct + StdVideoH265VideoParameterSet.RESERVED3); }
/** Unsafe version of {@link #pDecPicBufMgr}.
public static StdVideoH265DecPicBufMgr npDecPicBufMgr(long struct) { return StdVideoH265DecPicBufMgr.create(memGetAddress(struct + StdVideoH265VideoParameterSet.PDECPICBUFMGR)); }
/** Unsafe version of {@link #pHrdParameters}.
public static StdVideoH265HrdParameters npHrdParameters(long struct) { return StdVideoH265HrdParameters.create(memGetAddress(struct + StdVideoH265VideoParameterSet.PHRDPARAMETERS)); }
/** Unsafe version of {@link #pProfileTierLevel}.
public static StdVideoH265ProfileTierLevel npProfileTierLevel(long struct) { return StdVideoH265ProfileTierLevel.create(memGetAddress(struct + StdVideoH265VideoParameterSet.PPROFILETIERLEVEL)); }
/** Unsafe version of {@link #flags(StdVideoH265VpsFlags) flags}.
public static void nflags(long struct, StdVideoH265VpsFlags value) { memCopy(value.address(), struct + StdVideoH265VideoParameterSet.FLAGS, StdVideoH265VpsFlags.SIZEOF); }
/** Unsafe version of {@link #vps_video_parameter_set_id(byte) vps_video_parameter_set_id}.
public static void nvps_video_parameter_set_id(long struct, byte value) { memPutByte(struct + StdVideoH265VideoParameterSet.VPS_VIDEO_PARAMETER_SET_ID, value); }
/** Unsafe version of {@link #vps_max_sub_layers_minus1(byte) vps_max_sub_layers_minus1}.
public static void nvps_max_sub_layers_minus1(long struct, byte value) { memPutByte(struct + StdVideoH265VideoParameterSet.VPS_MAX_SUB_LAYERS_MINUS1, value); }
public static void nreserved1(long struct, byte value) { memPutByte(struct + StdVideoH265VideoParameterSet.RESERVED1, value); }
public static void nreserved2(long struct, byte value) { memPutByte(struct + StdVideoH265VideoParameterSet.RESERVED2, value); }
/** Unsafe version of {@link #vps_num_units_in_tick(int) vps_num_units_in_tick}.
public static void nvps_num_units_in_tick(long struct, int value) { memPutInt(struct + StdVideoH265VideoParameterSet.VPS_NUM_UNITS_IN_TICK, value); }
/** Unsafe version of {@link #vps_time_scale(int) vps_time_scale}.
public static void nvps_time_scale(long struct, int value) { memPutInt(struct + StdVideoH265VideoParameterSet.VPS_TIME_SCALE, value); }
/** Unsafe version of {@link #vps_num_ticks_poc_diff_one_minus1(int) vps_num_ticks_poc_diff_one_minus1}.
public static void nvps_num_ticks_poc_diff_one_minus1(long struct, int value) { memPutInt(struct + StdVideoH265VideoParameterSet.VPS_NUM_TICKS_POC_DIFF_ONE_MINUS1, value); }
public static void nreserved3(long struct, int value) { memPutInt(struct + StdVideoH265VideoParameterSet.RESERVED3, value); }
/** Unsafe version of {@link #pDecPicBufMgr(StdVideoH265DecPicBufMgr) pDecPicBufMgr}. | StdVideoH265VideoParameterSet::npDecPicBufMgr | java | LWJGL/lwjgl3 | modules/lwjgl/vulkan/src/generated/java/org/lwjgl/vulkan/video/StdVideoH265VideoParameterSet.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/vulkan/src/generated/java/org/lwjgl/vulkan/video/StdVideoH265VideoParameterSet.java | BSD-3-Clause |
public static void npHrdParameters(long struct, StdVideoH265HrdParameters value) { memPutAddress(struct + StdVideoH265VideoParameterSet.PHRDPARAMETERS, value.address()); } |
Returns a new {@link StdVideoH265VideoParameterSet.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 StdVideoH265VideoParameterSet.Buffer calloc(int capacity, MemoryStack stack) {
return new Buffer(stack.ncalloc(ALIGNOF, capacity, SIZEOF), capacity);
}
// -----------------------------------
/** Unsafe version of {@link #flags}.
public static StdVideoH265VpsFlags nflags(long struct) { return StdVideoH265VpsFlags.create(struct + StdVideoH265VideoParameterSet.FLAGS); }
/** Unsafe version of {@link #vps_video_parameter_set_id}.
public static byte nvps_video_parameter_set_id(long struct) { return memGetByte(struct + StdVideoH265VideoParameterSet.VPS_VIDEO_PARAMETER_SET_ID); }
/** Unsafe version of {@link #vps_max_sub_layers_minus1}.
public static byte nvps_max_sub_layers_minus1(long struct) { return memGetByte(struct + StdVideoH265VideoParameterSet.VPS_MAX_SUB_LAYERS_MINUS1); }
public static byte nreserved1(long struct) { return memGetByte(struct + StdVideoH265VideoParameterSet.RESERVED1); }
public static byte nreserved2(long struct) { return memGetByte(struct + StdVideoH265VideoParameterSet.RESERVED2); }
/** Unsafe version of {@link #vps_num_units_in_tick}.
public static int nvps_num_units_in_tick(long struct) { return memGetInt(struct + StdVideoH265VideoParameterSet.VPS_NUM_UNITS_IN_TICK); }
/** Unsafe version of {@link #vps_time_scale}.
public static int nvps_time_scale(long struct) { return memGetInt(struct + StdVideoH265VideoParameterSet.VPS_TIME_SCALE); }
/** Unsafe version of {@link #vps_num_ticks_poc_diff_one_minus1}.
public static int nvps_num_ticks_poc_diff_one_minus1(long struct) { return memGetInt(struct + StdVideoH265VideoParameterSet.VPS_NUM_TICKS_POC_DIFF_ONE_MINUS1); }
public static int nreserved3(long struct) { return memGetInt(struct + StdVideoH265VideoParameterSet.RESERVED3); }
/** Unsafe version of {@link #pDecPicBufMgr}.
public static StdVideoH265DecPicBufMgr npDecPicBufMgr(long struct) { return StdVideoH265DecPicBufMgr.create(memGetAddress(struct + StdVideoH265VideoParameterSet.PDECPICBUFMGR)); }
/** Unsafe version of {@link #pHrdParameters}.
public static StdVideoH265HrdParameters npHrdParameters(long struct) { return StdVideoH265HrdParameters.create(memGetAddress(struct + StdVideoH265VideoParameterSet.PHRDPARAMETERS)); }
/** Unsafe version of {@link #pProfileTierLevel}.
public static StdVideoH265ProfileTierLevel npProfileTierLevel(long struct) { return StdVideoH265ProfileTierLevel.create(memGetAddress(struct + StdVideoH265VideoParameterSet.PPROFILETIERLEVEL)); }
/** Unsafe version of {@link #flags(StdVideoH265VpsFlags) flags}.
public static void nflags(long struct, StdVideoH265VpsFlags value) { memCopy(value.address(), struct + StdVideoH265VideoParameterSet.FLAGS, StdVideoH265VpsFlags.SIZEOF); }
/** Unsafe version of {@link #vps_video_parameter_set_id(byte) vps_video_parameter_set_id}.
public static void nvps_video_parameter_set_id(long struct, byte value) { memPutByte(struct + StdVideoH265VideoParameterSet.VPS_VIDEO_PARAMETER_SET_ID, value); }
/** Unsafe version of {@link #vps_max_sub_layers_minus1(byte) vps_max_sub_layers_minus1}.
public static void nvps_max_sub_layers_minus1(long struct, byte value) { memPutByte(struct + StdVideoH265VideoParameterSet.VPS_MAX_SUB_LAYERS_MINUS1, value); }
public static void nreserved1(long struct, byte value) { memPutByte(struct + StdVideoH265VideoParameterSet.RESERVED1, value); }
public static void nreserved2(long struct, byte value) { memPutByte(struct + StdVideoH265VideoParameterSet.RESERVED2, value); }
/** Unsafe version of {@link #vps_num_units_in_tick(int) vps_num_units_in_tick}.
public static void nvps_num_units_in_tick(long struct, int value) { memPutInt(struct + StdVideoH265VideoParameterSet.VPS_NUM_UNITS_IN_TICK, value); }
/** Unsafe version of {@link #vps_time_scale(int) vps_time_scale}.
public static void nvps_time_scale(long struct, int value) { memPutInt(struct + StdVideoH265VideoParameterSet.VPS_TIME_SCALE, value); }
/** Unsafe version of {@link #vps_num_ticks_poc_diff_one_minus1(int) vps_num_ticks_poc_diff_one_minus1}.
public static void nvps_num_ticks_poc_diff_one_minus1(long struct, int value) { memPutInt(struct + StdVideoH265VideoParameterSet.VPS_NUM_TICKS_POC_DIFF_ONE_MINUS1, value); }
public static void nreserved3(long struct, int value) { memPutInt(struct + StdVideoH265VideoParameterSet.RESERVED3, value); }
/** Unsafe version of {@link #pDecPicBufMgr(StdVideoH265DecPicBufMgr) pDecPicBufMgr}.
public static void npDecPicBufMgr(long struct, StdVideoH265DecPicBufMgr value) { memPutAddress(struct + StdVideoH265VideoParameterSet.PDECPICBUFMGR, value.address()); }
/** Unsafe version of {@link #pHrdParameters(StdVideoH265HrdParameters) pHrdParameters}. | StdVideoH265VideoParameterSet::npHrdParameters | java | LWJGL/lwjgl3 | modules/lwjgl/vulkan/src/generated/java/org/lwjgl/vulkan/video/StdVideoH265VideoParameterSet.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/vulkan/src/generated/java/org/lwjgl/vulkan/video/StdVideoH265VideoParameterSet.java | BSD-3-Clause |
public static void npProfileTierLevel(long struct, StdVideoH265ProfileTierLevel value) { memPutAddress(struct + StdVideoH265VideoParameterSet.PPROFILETIERLEVEL, value.address()); } |
Returns a new {@link StdVideoH265VideoParameterSet.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 StdVideoH265VideoParameterSet.Buffer calloc(int capacity, MemoryStack stack) {
return new Buffer(stack.ncalloc(ALIGNOF, capacity, SIZEOF), capacity);
}
// -----------------------------------
/** Unsafe version of {@link #flags}.
public static StdVideoH265VpsFlags nflags(long struct) { return StdVideoH265VpsFlags.create(struct + StdVideoH265VideoParameterSet.FLAGS); }
/** Unsafe version of {@link #vps_video_parameter_set_id}.
public static byte nvps_video_parameter_set_id(long struct) { return memGetByte(struct + StdVideoH265VideoParameterSet.VPS_VIDEO_PARAMETER_SET_ID); }
/** Unsafe version of {@link #vps_max_sub_layers_minus1}.
public static byte nvps_max_sub_layers_minus1(long struct) { return memGetByte(struct + StdVideoH265VideoParameterSet.VPS_MAX_SUB_LAYERS_MINUS1); }
public static byte nreserved1(long struct) { return memGetByte(struct + StdVideoH265VideoParameterSet.RESERVED1); }
public static byte nreserved2(long struct) { return memGetByte(struct + StdVideoH265VideoParameterSet.RESERVED2); }
/** Unsafe version of {@link #vps_num_units_in_tick}.
public static int nvps_num_units_in_tick(long struct) { return memGetInt(struct + StdVideoH265VideoParameterSet.VPS_NUM_UNITS_IN_TICK); }
/** Unsafe version of {@link #vps_time_scale}.
public static int nvps_time_scale(long struct) { return memGetInt(struct + StdVideoH265VideoParameterSet.VPS_TIME_SCALE); }
/** Unsafe version of {@link #vps_num_ticks_poc_diff_one_minus1}.
public static int nvps_num_ticks_poc_diff_one_minus1(long struct) { return memGetInt(struct + StdVideoH265VideoParameterSet.VPS_NUM_TICKS_POC_DIFF_ONE_MINUS1); }
public static int nreserved3(long struct) { return memGetInt(struct + StdVideoH265VideoParameterSet.RESERVED3); }
/** Unsafe version of {@link #pDecPicBufMgr}.
public static StdVideoH265DecPicBufMgr npDecPicBufMgr(long struct) { return StdVideoH265DecPicBufMgr.create(memGetAddress(struct + StdVideoH265VideoParameterSet.PDECPICBUFMGR)); }
/** Unsafe version of {@link #pHrdParameters}.
public static StdVideoH265HrdParameters npHrdParameters(long struct) { return StdVideoH265HrdParameters.create(memGetAddress(struct + StdVideoH265VideoParameterSet.PHRDPARAMETERS)); }
/** Unsafe version of {@link #pProfileTierLevel}.
public static StdVideoH265ProfileTierLevel npProfileTierLevel(long struct) { return StdVideoH265ProfileTierLevel.create(memGetAddress(struct + StdVideoH265VideoParameterSet.PPROFILETIERLEVEL)); }
/** Unsafe version of {@link #flags(StdVideoH265VpsFlags) flags}.
public static void nflags(long struct, StdVideoH265VpsFlags value) { memCopy(value.address(), struct + StdVideoH265VideoParameterSet.FLAGS, StdVideoH265VpsFlags.SIZEOF); }
/** Unsafe version of {@link #vps_video_parameter_set_id(byte) vps_video_parameter_set_id}.
public static void nvps_video_parameter_set_id(long struct, byte value) { memPutByte(struct + StdVideoH265VideoParameterSet.VPS_VIDEO_PARAMETER_SET_ID, value); }
/** Unsafe version of {@link #vps_max_sub_layers_minus1(byte) vps_max_sub_layers_minus1}.
public static void nvps_max_sub_layers_minus1(long struct, byte value) { memPutByte(struct + StdVideoH265VideoParameterSet.VPS_MAX_SUB_LAYERS_MINUS1, value); }
public static void nreserved1(long struct, byte value) { memPutByte(struct + StdVideoH265VideoParameterSet.RESERVED1, value); }
public static void nreserved2(long struct, byte value) { memPutByte(struct + StdVideoH265VideoParameterSet.RESERVED2, value); }
/** Unsafe version of {@link #vps_num_units_in_tick(int) vps_num_units_in_tick}.
public static void nvps_num_units_in_tick(long struct, int value) { memPutInt(struct + StdVideoH265VideoParameterSet.VPS_NUM_UNITS_IN_TICK, value); }
/** Unsafe version of {@link #vps_time_scale(int) vps_time_scale}.
public static void nvps_time_scale(long struct, int value) { memPutInt(struct + StdVideoH265VideoParameterSet.VPS_TIME_SCALE, value); }
/** Unsafe version of {@link #vps_num_ticks_poc_diff_one_minus1(int) vps_num_ticks_poc_diff_one_minus1}.
public static void nvps_num_ticks_poc_diff_one_minus1(long struct, int value) { memPutInt(struct + StdVideoH265VideoParameterSet.VPS_NUM_TICKS_POC_DIFF_ONE_MINUS1, value); }
public static void nreserved3(long struct, int value) { memPutInt(struct + StdVideoH265VideoParameterSet.RESERVED3, value); }
/** Unsafe version of {@link #pDecPicBufMgr(StdVideoH265DecPicBufMgr) pDecPicBufMgr}.
public static void npDecPicBufMgr(long struct, StdVideoH265DecPicBufMgr value) { memPutAddress(struct + StdVideoH265VideoParameterSet.PDECPICBUFMGR, value.address()); }
/** Unsafe version of {@link #pHrdParameters(StdVideoH265HrdParameters) pHrdParameters}.
public static void npHrdParameters(long struct, StdVideoH265HrdParameters value) { memPutAddress(struct + StdVideoH265VideoParameterSet.PHRDPARAMETERS, value.address()); }
/** Unsafe version of {@link #pProfileTierLevel(StdVideoH265ProfileTierLevel) pProfileTierLevel}. | StdVideoH265VideoParameterSet::npProfileTierLevel | java | LWJGL/lwjgl3 | modules/lwjgl/vulkan/src/generated/java/org/lwjgl/vulkan/video/StdVideoH265VideoParameterSet.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/vulkan/src/generated/java/org/lwjgl/vulkan/video/StdVideoH265VideoParameterSet.java | BSD-3-Clause |
public StdVideoH265VpsFlags flags() { return StdVideoH265VideoParameterSet.nflags(address()); } |
Creates a new {@code StdVideoH265VideoParameterSet.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 StdVideoH265VideoParameterSet#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 StdVideoH265VideoParameterSet getElementFactory() {
return ELEMENT_FACTORY;
}
/** @return a {@link StdVideoH265VpsFlags} view of the {@code flags} field. | Buffer::flags | java | LWJGL/lwjgl3 | modules/lwjgl/vulkan/src/generated/java/org/lwjgl/vulkan/video/StdVideoH265VideoParameterSet.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/vulkan/src/generated/java/org/lwjgl/vulkan/video/StdVideoH265VideoParameterSet.java | BSD-3-Clause |
public StdVideoH265VideoParameterSet.Buffer flags(StdVideoH265VpsFlags value) { StdVideoH265VideoParameterSet.nflags(address(), value); return this; } |
Creates a new {@code StdVideoH265VideoParameterSet.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 StdVideoH265VideoParameterSet#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 StdVideoH265VideoParameterSet getElementFactory() {
return ELEMENT_FACTORY;
}
/** @return a {@link StdVideoH265VpsFlags} view of the {@code flags} field.
public StdVideoH265VpsFlags flags() { return StdVideoH265VideoParameterSet.nflags(address()); }
/** @return the value of the {@code vps_video_parameter_set_id} field.
@NativeType("uint8_t")
public byte vps_video_parameter_set_id() { return StdVideoH265VideoParameterSet.nvps_video_parameter_set_id(address()); }
/** @return the value of the {@code vps_max_sub_layers_minus1} field.
@NativeType("uint8_t")
public byte vps_max_sub_layers_minus1() { return StdVideoH265VideoParameterSet.nvps_max_sub_layers_minus1(address()); }
/** @return the value of the {@code vps_num_units_in_tick} field.
@NativeType("uint32_t")
public int vps_num_units_in_tick() { return StdVideoH265VideoParameterSet.nvps_num_units_in_tick(address()); }
/** @return the value of the {@code vps_time_scale} field.
@NativeType("uint32_t")
public int vps_time_scale() { return StdVideoH265VideoParameterSet.nvps_time_scale(address()); }
/** @return the value of the {@code vps_num_ticks_poc_diff_one_minus1} field.
@NativeType("uint32_t")
public int vps_num_ticks_poc_diff_one_minus1() { return StdVideoH265VideoParameterSet.nvps_num_ticks_poc_diff_one_minus1(address()); }
/** @return a {@link StdVideoH265DecPicBufMgr} view of the struct pointed to by the {@code pDecPicBufMgr} field.
@NativeType("StdVideoH265DecPicBufMgr const *")
public StdVideoH265DecPicBufMgr pDecPicBufMgr() { return StdVideoH265VideoParameterSet.npDecPicBufMgr(address()); }
/** @return a {@link StdVideoH265HrdParameters} view of the struct pointed to by the {@code pHrdParameters} field.
@NativeType("StdVideoH265HrdParameters const *")
public StdVideoH265HrdParameters pHrdParameters() { return StdVideoH265VideoParameterSet.npHrdParameters(address()); }
/** @return a {@link StdVideoH265ProfileTierLevel} view of the struct pointed to by the {@code pProfileTierLevel} field.
@NativeType("StdVideoH265ProfileTierLevel const *")
public StdVideoH265ProfileTierLevel pProfileTierLevel() { return StdVideoH265VideoParameterSet.npProfileTierLevel(address()); }
/** Copies the specified {@link StdVideoH265VpsFlags} to the {@code flags} field. | Buffer::flags | java | LWJGL/lwjgl3 | modules/lwjgl/vulkan/src/generated/java/org/lwjgl/vulkan/video/StdVideoH265VideoParameterSet.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/vulkan/src/generated/java/org/lwjgl/vulkan/video/StdVideoH265VideoParameterSet.java | BSD-3-Clause |
public StdVideoH265VideoParameterSet.Buffer flags(java.util.function.Consumer<StdVideoH265VpsFlags> consumer) { consumer.accept(flags()); return this; } |
Creates a new {@code StdVideoH265VideoParameterSet.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 StdVideoH265VideoParameterSet#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 StdVideoH265VideoParameterSet getElementFactory() {
return ELEMENT_FACTORY;
}
/** @return a {@link StdVideoH265VpsFlags} view of the {@code flags} field.
public StdVideoH265VpsFlags flags() { return StdVideoH265VideoParameterSet.nflags(address()); }
/** @return the value of the {@code vps_video_parameter_set_id} field.
@NativeType("uint8_t")
public byte vps_video_parameter_set_id() { return StdVideoH265VideoParameterSet.nvps_video_parameter_set_id(address()); }
/** @return the value of the {@code vps_max_sub_layers_minus1} field.
@NativeType("uint8_t")
public byte vps_max_sub_layers_minus1() { return StdVideoH265VideoParameterSet.nvps_max_sub_layers_minus1(address()); }
/** @return the value of the {@code vps_num_units_in_tick} field.
@NativeType("uint32_t")
public int vps_num_units_in_tick() { return StdVideoH265VideoParameterSet.nvps_num_units_in_tick(address()); }
/** @return the value of the {@code vps_time_scale} field.
@NativeType("uint32_t")
public int vps_time_scale() { return StdVideoH265VideoParameterSet.nvps_time_scale(address()); }
/** @return the value of the {@code vps_num_ticks_poc_diff_one_minus1} field.
@NativeType("uint32_t")
public int vps_num_ticks_poc_diff_one_minus1() { return StdVideoH265VideoParameterSet.nvps_num_ticks_poc_diff_one_minus1(address()); }
/** @return a {@link StdVideoH265DecPicBufMgr} view of the struct pointed to by the {@code pDecPicBufMgr} field.
@NativeType("StdVideoH265DecPicBufMgr const *")
public StdVideoH265DecPicBufMgr pDecPicBufMgr() { return StdVideoH265VideoParameterSet.npDecPicBufMgr(address()); }
/** @return a {@link StdVideoH265HrdParameters} view of the struct pointed to by the {@code pHrdParameters} field.
@NativeType("StdVideoH265HrdParameters const *")
public StdVideoH265HrdParameters pHrdParameters() { return StdVideoH265VideoParameterSet.npHrdParameters(address()); }
/** @return a {@link StdVideoH265ProfileTierLevel} view of the struct pointed to by the {@code pProfileTierLevel} field.
@NativeType("StdVideoH265ProfileTierLevel const *")
public StdVideoH265ProfileTierLevel pProfileTierLevel() { return StdVideoH265VideoParameterSet.npProfileTierLevel(address()); }
/** Copies the specified {@link StdVideoH265VpsFlags} to the {@code flags} field.
public StdVideoH265VideoParameterSet.Buffer flags(StdVideoH265VpsFlags value) { StdVideoH265VideoParameterSet.nflags(address(), value); return this; }
/** Passes the {@code flags} field to the specified {@link java.util.function.Consumer Consumer}. | Buffer::flags | java | LWJGL/lwjgl3 | modules/lwjgl/vulkan/src/generated/java/org/lwjgl/vulkan/video/StdVideoH265VideoParameterSet.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/vulkan/src/generated/java/org/lwjgl/vulkan/video/StdVideoH265VideoParameterSet.java | BSD-3-Clause |
public StdVideoH265VideoParameterSet.Buffer vps_video_parameter_set_id(@NativeType("uint8_t") byte value) { StdVideoH265VideoParameterSet.nvps_video_parameter_set_id(address(), value); return this; } |
Creates a new {@code StdVideoH265VideoParameterSet.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 StdVideoH265VideoParameterSet#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 StdVideoH265VideoParameterSet getElementFactory() {
return ELEMENT_FACTORY;
}
/** @return a {@link StdVideoH265VpsFlags} view of the {@code flags} field.
public StdVideoH265VpsFlags flags() { return StdVideoH265VideoParameterSet.nflags(address()); }
/** @return the value of the {@code vps_video_parameter_set_id} field.
@NativeType("uint8_t")
public byte vps_video_parameter_set_id() { return StdVideoH265VideoParameterSet.nvps_video_parameter_set_id(address()); }
/** @return the value of the {@code vps_max_sub_layers_minus1} field.
@NativeType("uint8_t")
public byte vps_max_sub_layers_minus1() { return StdVideoH265VideoParameterSet.nvps_max_sub_layers_minus1(address()); }
/** @return the value of the {@code vps_num_units_in_tick} field.
@NativeType("uint32_t")
public int vps_num_units_in_tick() { return StdVideoH265VideoParameterSet.nvps_num_units_in_tick(address()); }
/** @return the value of the {@code vps_time_scale} field.
@NativeType("uint32_t")
public int vps_time_scale() { return StdVideoH265VideoParameterSet.nvps_time_scale(address()); }
/** @return the value of the {@code vps_num_ticks_poc_diff_one_minus1} field.
@NativeType("uint32_t")
public int vps_num_ticks_poc_diff_one_minus1() { return StdVideoH265VideoParameterSet.nvps_num_ticks_poc_diff_one_minus1(address()); }
/** @return a {@link StdVideoH265DecPicBufMgr} view of the struct pointed to by the {@code pDecPicBufMgr} field.
@NativeType("StdVideoH265DecPicBufMgr const *")
public StdVideoH265DecPicBufMgr pDecPicBufMgr() { return StdVideoH265VideoParameterSet.npDecPicBufMgr(address()); }
/** @return a {@link StdVideoH265HrdParameters} view of the struct pointed to by the {@code pHrdParameters} field.
@NativeType("StdVideoH265HrdParameters const *")
public StdVideoH265HrdParameters pHrdParameters() { return StdVideoH265VideoParameterSet.npHrdParameters(address()); }
/** @return a {@link StdVideoH265ProfileTierLevel} view of the struct pointed to by the {@code pProfileTierLevel} field.
@NativeType("StdVideoH265ProfileTierLevel const *")
public StdVideoH265ProfileTierLevel pProfileTierLevel() { return StdVideoH265VideoParameterSet.npProfileTierLevel(address()); }
/** Copies the specified {@link StdVideoH265VpsFlags} to the {@code flags} field.
public StdVideoH265VideoParameterSet.Buffer flags(StdVideoH265VpsFlags value) { StdVideoH265VideoParameterSet.nflags(address(), value); return this; }
/** Passes the {@code flags} field to the specified {@link java.util.function.Consumer Consumer}.
public StdVideoH265VideoParameterSet.Buffer flags(java.util.function.Consumer<StdVideoH265VpsFlags> consumer) { consumer.accept(flags()); return this; }
/** Sets the specified value to the {@code vps_video_parameter_set_id} field. | Buffer::vps_video_parameter_set_id | java | LWJGL/lwjgl3 | modules/lwjgl/vulkan/src/generated/java/org/lwjgl/vulkan/video/StdVideoH265VideoParameterSet.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/vulkan/src/generated/java/org/lwjgl/vulkan/video/StdVideoH265VideoParameterSet.java | BSD-3-Clause |
public StdVideoH265VideoParameterSet.Buffer vps_max_sub_layers_minus1(@NativeType("uint8_t") byte value) { StdVideoH265VideoParameterSet.nvps_max_sub_layers_minus1(address(), value); return this; } |
Creates a new {@code StdVideoH265VideoParameterSet.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 StdVideoH265VideoParameterSet#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 StdVideoH265VideoParameterSet getElementFactory() {
return ELEMENT_FACTORY;
}
/** @return a {@link StdVideoH265VpsFlags} view of the {@code flags} field.
public StdVideoH265VpsFlags flags() { return StdVideoH265VideoParameterSet.nflags(address()); }
/** @return the value of the {@code vps_video_parameter_set_id} field.
@NativeType("uint8_t")
public byte vps_video_parameter_set_id() { return StdVideoH265VideoParameterSet.nvps_video_parameter_set_id(address()); }
/** @return the value of the {@code vps_max_sub_layers_minus1} field.
@NativeType("uint8_t")
public byte vps_max_sub_layers_minus1() { return StdVideoH265VideoParameterSet.nvps_max_sub_layers_minus1(address()); }
/** @return the value of the {@code vps_num_units_in_tick} field.
@NativeType("uint32_t")
public int vps_num_units_in_tick() { return StdVideoH265VideoParameterSet.nvps_num_units_in_tick(address()); }
/** @return the value of the {@code vps_time_scale} field.
@NativeType("uint32_t")
public int vps_time_scale() { return StdVideoH265VideoParameterSet.nvps_time_scale(address()); }
/** @return the value of the {@code vps_num_ticks_poc_diff_one_minus1} field.
@NativeType("uint32_t")
public int vps_num_ticks_poc_diff_one_minus1() { return StdVideoH265VideoParameterSet.nvps_num_ticks_poc_diff_one_minus1(address()); }
/** @return a {@link StdVideoH265DecPicBufMgr} view of the struct pointed to by the {@code pDecPicBufMgr} field.
@NativeType("StdVideoH265DecPicBufMgr const *")
public StdVideoH265DecPicBufMgr pDecPicBufMgr() { return StdVideoH265VideoParameterSet.npDecPicBufMgr(address()); }
/** @return a {@link StdVideoH265HrdParameters} view of the struct pointed to by the {@code pHrdParameters} field.
@NativeType("StdVideoH265HrdParameters const *")
public StdVideoH265HrdParameters pHrdParameters() { return StdVideoH265VideoParameterSet.npHrdParameters(address()); }
/** @return a {@link StdVideoH265ProfileTierLevel} view of the struct pointed to by the {@code pProfileTierLevel} field.
@NativeType("StdVideoH265ProfileTierLevel const *")
public StdVideoH265ProfileTierLevel pProfileTierLevel() { return StdVideoH265VideoParameterSet.npProfileTierLevel(address()); }
/** Copies the specified {@link StdVideoH265VpsFlags} to the {@code flags} field.
public StdVideoH265VideoParameterSet.Buffer flags(StdVideoH265VpsFlags value) { StdVideoH265VideoParameterSet.nflags(address(), value); return this; }
/** Passes the {@code flags} field to the specified {@link java.util.function.Consumer Consumer}.
public StdVideoH265VideoParameterSet.Buffer flags(java.util.function.Consumer<StdVideoH265VpsFlags> consumer) { consumer.accept(flags()); return this; }
/** Sets the specified value to the {@code vps_video_parameter_set_id} field.
public StdVideoH265VideoParameterSet.Buffer vps_video_parameter_set_id(@NativeType("uint8_t") byte value) { StdVideoH265VideoParameterSet.nvps_video_parameter_set_id(address(), value); return this; }
/** Sets the specified value to the {@code vps_max_sub_layers_minus1} field. | Buffer::vps_max_sub_layers_minus1 | java | LWJGL/lwjgl3 | modules/lwjgl/vulkan/src/generated/java/org/lwjgl/vulkan/video/StdVideoH265VideoParameterSet.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/vulkan/src/generated/java/org/lwjgl/vulkan/video/StdVideoH265VideoParameterSet.java | BSD-3-Clause |
public StdVideoH265VideoParameterSet.Buffer vps_num_units_in_tick(@NativeType("uint32_t") int value) { StdVideoH265VideoParameterSet.nvps_num_units_in_tick(address(), value); return this; } |
Creates a new {@code StdVideoH265VideoParameterSet.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 StdVideoH265VideoParameterSet#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 StdVideoH265VideoParameterSet getElementFactory() {
return ELEMENT_FACTORY;
}
/** @return a {@link StdVideoH265VpsFlags} view of the {@code flags} field.
public StdVideoH265VpsFlags flags() { return StdVideoH265VideoParameterSet.nflags(address()); }
/** @return the value of the {@code vps_video_parameter_set_id} field.
@NativeType("uint8_t")
public byte vps_video_parameter_set_id() { return StdVideoH265VideoParameterSet.nvps_video_parameter_set_id(address()); }
/** @return the value of the {@code vps_max_sub_layers_minus1} field.
@NativeType("uint8_t")
public byte vps_max_sub_layers_minus1() { return StdVideoH265VideoParameterSet.nvps_max_sub_layers_minus1(address()); }
/** @return the value of the {@code vps_num_units_in_tick} field.
@NativeType("uint32_t")
public int vps_num_units_in_tick() { return StdVideoH265VideoParameterSet.nvps_num_units_in_tick(address()); }
/** @return the value of the {@code vps_time_scale} field.
@NativeType("uint32_t")
public int vps_time_scale() { return StdVideoH265VideoParameterSet.nvps_time_scale(address()); }
/** @return the value of the {@code vps_num_ticks_poc_diff_one_minus1} field.
@NativeType("uint32_t")
public int vps_num_ticks_poc_diff_one_minus1() { return StdVideoH265VideoParameterSet.nvps_num_ticks_poc_diff_one_minus1(address()); }
/** @return a {@link StdVideoH265DecPicBufMgr} view of the struct pointed to by the {@code pDecPicBufMgr} field.
@NativeType("StdVideoH265DecPicBufMgr const *")
public StdVideoH265DecPicBufMgr pDecPicBufMgr() { return StdVideoH265VideoParameterSet.npDecPicBufMgr(address()); }
/** @return a {@link StdVideoH265HrdParameters} view of the struct pointed to by the {@code pHrdParameters} field.
@NativeType("StdVideoH265HrdParameters const *")
public StdVideoH265HrdParameters pHrdParameters() { return StdVideoH265VideoParameterSet.npHrdParameters(address()); }
/** @return a {@link StdVideoH265ProfileTierLevel} view of the struct pointed to by the {@code pProfileTierLevel} field.
@NativeType("StdVideoH265ProfileTierLevel const *")
public StdVideoH265ProfileTierLevel pProfileTierLevel() { return StdVideoH265VideoParameterSet.npProfileTierLevel(address()); }
/** Copies the specified {@link StdVideoH265VpsFlags} to the {@code flags} field.
public StdVideoH265VideoParameterSet.Buffer flags(StdVideoH265VpsFlags value) { StdVideoH265VideoParameterSet.nflags(address(), value); return this; }
/** Passes the {@code flags} field to the specified {@link java.util.function.Consumer Consumer}.
public StdVideoH265VideoParameterSet.Buffer flags(java.util.function.Consumer<StdVideoH265VpsFlags> consumer) { consumer.accept(flags()); return this; }
/** Sets the specified value to the {@code vps_video_parameter_set_id} field.
public StdVideoH265VideoParameterSet.Buffer vps_video_parameter_set_id(@NativeType("uint8_t") byte value) { StdVideoH265VideoParameterSet.nvps_video_parameter_set_id(address(), value); return this; }
/** Sets the specified value to the {@code vps_max_sub_layers_minus1} field.
public StdVideoH265VideoParameterSet.Buffer vps_max_sub_layers_minus1(@NativeType("uint8_t") byte value) { StdVideoH265VideoParameterSet.nvps_max_sub_layers_minus1(address(), value); return this; }
/** Sets the specified value to the {@code vps_num_units_in_tick} field. | Buffer::vps_num_units_in_tick | java | LWJGL/lwjgl3 | modules/lwjgl/vulkan/src/generated/java/org/lwjgl/vulkan/video/StdVideoH265VideoParameterSet.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/vulkan/src/generated/java/org/lwjgl/vulkan/video/StdVideoH265VideoParameterSet.java | BSD-3-Clause |
public StdVideoH265VideoParameterSet.Buffer vps_time_scale(@NativeType("uint32_t") int value) { StdVideoH265VideoParameterSet.nvps_time_scale(address(), value); return this; } |
Creates a new {@code StdVideoH265VideoParameterSet.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 StdVideoH265VideoParameterSet#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 StdVideoH265VideoParameterSet getElementFactory() {
return ELEMENT_FACTORY;
}
/** @return a {@link StdVideoH265VpsFlags} view of the {@code flags} field.
public StdVideoH265VpsFlags flags() { return StdVideoH265VideoParameterSet.nflags(address()); }
/** @return the value of the {@code vps_video_parameter_set_id} field.
@NativeType("uint8_t")
public byte vps_video_parameter_set_id() { return StdVideoH265VideoParameterSet.nvps_video_parameter_set_id(address()); }
/** @return the value of the {@code vps_max_sub_layers_minus1} field.
@NativeType("uint8_t")
public byte vps_max_sub_layers_minus1() { return StdVideoH265VideoParameterSet.nvps_max_sub_layers_minus1(address()); }
/** @return the value of the {@code vps_num_units_in_tick} field.
@NativeType("uint32_t")
public int vps_num_units_in_tick() { return StdVideoH265VideoParameterSet.nvps_num_units_in_tick(address()); }
/** @return the value of the {@code vps_time_scale} field.
@NativeType("uint32_t")
public int vps_time_scale() { return StdVideoH265VideoParameterSet.nvps_time_scale(address()); }
/** @return the value of the {@code vps_num_ticks_poc_diff_one_minus1} field.
@NativeType("uint32_t")
public int vps_num_ticks_poc_diff_one_minus1() { return StdVideoH265VideoParameterSet.nvps_num_ticks_poc_diff_one_minus1(address()); }
/** @return a {@link StdVideoH265DecPicBufMgr} view of the struct pointed to by the {@code pDecPicBufMgr} field.
@NativeType("StdVideoH265DecPicBufMgr const *")
public StdVideoH265DecPicBufMgr pDecPicBufMgr() { return StdVideoH265VideoParameterSet.npDecPicBufMgr(address()); }
/** @return a {@link StdVideoH265HrdParameters} view of the struct pointed to by the {@code pHrdParameters} field.
@NativeType("StdVideoH265HrdParameters const *")
public StdVideoH265HrdParameters pHrdParameters() { return StdVideoH265VideoParameterSet.npHrdParameters(address()); }
/** @return a {@link StdVideoH265ProfileTierLevel} view of the struct pointed to by the {@code pProfileTierLevel} field.
@NativeType("StdVideoH265ProfileTierLevel const *")
public StdVideoH265ProfileTierLevel pProfileTierLevel() { return StdVideoH265VideoParameterSet.npProfileTierLevel(address()); }
/** Copies the specified {@link StdVideoH265VpsFlags} to the {@code flags} field.
public StdVideoH265VideoParameterSet.Buffer flags(StdVideoH265VpsFlags value) { StdVideoH265VideoParameterSet.nflags(address(), value); return this; }
/** Passes the {@code flags} field to the specified {@link java.util.function.Consumer Consumer}.
public StdVideoH265VideoParameterSet.Buffer flags(java.util.function.Consumer<StdVideoH265VpsFlags> consumer) { consumer.accept(flags()); return this; }
/** Sets the specified value to the {@code vps_video_parameter_set_id} field.
public StdVideoH265VideoParameterSet.Buffer vps_video_parameter_set_id(@NativeType("uint8_t") byte value) { StdVideoH265VideoParameterSet.nvps_video_parameter_set_id(address(), value); return this; }
/** Sets the specified value to the {@code vps_max_sub_layers_minus1} field.
public StdVideoH265VideoParameterSet.Buffer vps_max_sub_layers_minus1(@NativeType("uint8_t") byte value) { StdVideoH265VideoParameterSet.nvps_max_sub_layers_minus1(address(), value); return this; }
/** Sets the specified value to the {@code vps_num_units_in_tick} field.
public StdVideoH265VideoParameterSet.Buffer vps_num_units_in_tick(@NativeType("uint32_t") int value) { StdVideoH265VideoParameterSet.nvps_num_units_in_tick(address(), value); return this; }
/** Sets the specified value to the {@code vps_time_scale} field. | Buffer::vps_time_scale | java | LWJGL/lwjgl3 | modules/lwjgl/vulkan/src/generated/java/org/lwjgl/vulkan/video/StdVideoH265VideoParameterSet.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/vulkan/src/generated/java/org/lwjgl/vulkan/video/StdVideoH265VideoParameterSet.java | BSD-3-Clause |
public StdVideoH265VideoParameterSet.Buffer vps_num_ticks_poc_diff_one_minus1(@NativeType("uint32_t") int value) { StdVideoH265VideoParameterSet.nvps_num_ticks_poc_diff_one_minus1(address(), value); return this; } |
Creates a new {@code StdVideoH265VideoParameterSet.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 StdVideoH265VideoParameterSet#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 StdVideoH265VideoParameterSet getElementFactory() {
return ELEMENT_FACTORY;
}
/** @return a {@link StdVideoH265VpsFlags} view of the {@code flags} field.
public StdVideoH265VpsFlags flags() { return StdVideoH265VideoParameterSet.nflags(address()); }
/** @return the value of the {@code vps_video_parameter_set_id} field.
@NativeType("uint8_t")
public byte vps_video_parameter_set_id() { return StdVideoH265VideoParameterSet.nvps_video_parameter_set_id(address()); }
/** @return the value of the {@code vps_max_sub_layers_minus1} field.
@NativeType("uint8_t")
public byte vps_max_sub_layers_minus1() { return StdVideoH265VideoParameterSet.nvps_max_sub_layers_minus1(address()); }
/** @return the value of the {@code vps_num_units_in_tick} field.
@NativeType("uint32_t")
public int vps_num_units_in_tick() { return StdVideoH265VideoParameterSet.nvps_num_units_in_tick(address()); }
/** @return the value of the {@code vps_time_scale} field.
@NativeType("uint32_t")
public int vps_time_scale() { return StdVideoH265VideoParameterSet.nvps_time_scale(address()); }
/** @return the value of the {@code vps_num_ticks_poc_diff_one_minus1} field.
@NativeType("uint32_t")
public int vps_num_ticks_poc_diff_one_minus1() { return StdVideoH265VideoParameterSet.nvps_num_ticks_poc_diff_one_minus1(address()); }
/** @return a {@link StdVideoH265DecPicBufMgr} view of the struct pointed to by the {@code pDecPicBufMgr} field.
@NativeType("StdVideoH265DecPicBufMgr const *")
public StdVideoH265DecPicBufMgr pDecPicBufMgr() { return StdVideoH265VideoParameterSet.npDecPicBufMgr(address()); }
/** @return a {@link StdVideoH265HrdParameters} view of the struct pointed to by the {@code pHrdParameters} field.
@NativeType("StdVideoH265HrdParameters const *")
public StdVideoH265HrdParameters pHrdParameters() { return StdVideoH265VideoParameterSet.npHrdParameters(address()); }
/** @return a {@link StdVideoH265ProfileTierLevel} view of the struct pointed to by the {@code pProfileTierLevel} field.
@NativeType("StdVideoH265ProfileTierLevel const *")
public StdVideoH265ProfileTierLevel pProfileTierLevel() { return StdVideoH265VideoParameterSet.npProfileTierLevel(address()); }
/** Copies the specified {@link StdVideoH265VpsFlags} to the {@code flags} field.
public StdVideoH265VideoParameterSet.Buffer flags(StdVideoH265VpsFlags value) { StdVideoH265VideoParameterSet.nflags(address(), value); return this; }
/** Passes the {@code flags} field to the specified {@link java.util.function.Consumer Consumer}.
public StdVideoH265VideoParameterSet.Buffer flags(java.util.function.Consumer<StdVideoH265VpsFlags> consumer) { consumer.accept(flags()); return this; }
/** Sets the specified value to the {@code vps_video_parameter_set_id} field.
public StdVideoH265VideoParameterSet.Buffer vps_video_parameter_set_id(@NativeType("uint8_t") byte value) { StdVideoH265VideoParameterSet.nvps_video_parameter_set_id(address(), value); return this; }
/** Sets the specified value to the {@code vps_max_sub_layers_minus1} field.
public StdVideoH265VideoParameterSet.Buffer vps_max_sub_layers_minus1(@NativeType("uint8_t") byte value) { StdVideoH265VideoParameterSet.nvps_max_sub_layers_minus1(address(), value); return this; }
/** Sets the specified value to the {@code vps_num_units_in_tick} field.
public StdVideoH265VideoParameterSet.Buffer vps_num_units_in_tick(@NativeType("uint32_t") int value) { StdVideoH265VideoParameterSet.nvps_num_units_in_tick(address(), value); return this; }
/** Sets the specified value to the {@code vps_time_scale} field.
public StdVideoH265VideoParameterSet.Buffer vps_time_scale(@NativeType("uint32_t") int value) { StdVideoH265VideoParameterSet.nvps_time_scale(address(), value); return this; }
/** Sets the specified value to the {@code vps_num_ticks_poc_diff_one_minus1} field. | Buffer::vps_num_ticks_poc_diff_one_minus1 | java | LWJGL/lwjgl3 | modules/lwjgl/vulkan/src/generated/java/org/lwjgl/vulkan/video/StdVideoH265VideoParameterSet.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/vulkan/src/generated/java/org/lwjgl/vulkan/video/StdVideoH265VideoParameterSet.java | BSD-3-Clause |
public StdVideoH265VideoParameterSet.Buffer pDecPicBufMgr(@NativeType("StdVideoH265DecPicBufMgr const *") StdVideoH265DecPicBufMgr value) { StdVideoH265VideoParameterSet.npDecPicBufMgr(address(), value); return this; } |
Creates a new {@code StdVideoH265VideoParameterSet.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 StdVideoH265VideoParameterSet#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 StdVideoH265VideoParameterSet getElementFactory() {
return ELEMENT_FACTORY;
}
/** @return a {@link StdVideoH265VpsFlags} view of the {@code flags} field.
public StdVideoH265VpsFlags flags() { return StdVideoH265VideoParameterSet.nflags(address()); }
/** @return the value of the {@code vps_video_parameter_set_id} field.
@NativeType("uint8_t")
public byte vps_video_parameter_set_id() { return StdVideoH265VideoParameterSet.nvps_video_parameter_set_id(address()); }
/** @return the value of the {@code vps_max_sub_layers_minus1} field.
@NativeType("uint8_t")
public byte vps_max_sub_layers_minus1() { return StdVideoH265VideoParameterSet.nvps_max_sub_layers_minus1(address()); }
/** @return the value of the {@code vps_num_units_in_tick} field.
@NativeType("uint32_t")
public int vps_num_units_in_tick() { return StdVideoH265VideoParameterSet.nvps_num_units_in_tick(address()); }
/** @return the value of the {@code vps_time_scale} field.
@NativeType("uint32_t")
public int vps_time_scale() { return StdVideoH265VideoParameterSet.nvps_time_scale(address()); }
/** @return the value of the {@code vps_num_ticks_poc_diff_one_minus1} field.
@NativeType("uint32_t")
public int vps_num_ticks_poc_diff_one_minus1() { return StdVideoH265VideoParameterSet.nvps_num_ticks_poc_diff_one_minus1(address()); }
/** @return a {@link StdVideoH265DecPicBufMgr} view of the struct pointed to by the {@code pDecPicBufMgr} field.
@NativeType("StdVideoH265DecPicBufMgr const *")
public StdVideoH265DecPicBufMgr pDecPicBufMgr() { return StdVideoH265VideoParameterSet.npDecPicBufMgr(address()); }
/** @return a {@link StdVideoH265HrdParameters} view of the struct pointed to by the {@code pHrdParameters} field.
@NativeType("StdVideoH265HrdParameters const *")
public StdVideoH265HrdParameters pHrdParameters() { return StdVideoH265VideoParameterSet.npHrdParameters(address()); }
/** @return a {@link StdVideoH265ProfileTierLevel} view of the struct pointed to by the {@code pProfileTierLevel} field.
@NativeType("StdVideoH265ProfileTierLevel const *")
public StdVideoH265ProfileTierLevel pProfileTierLevel() { return StdVideoH265VideoParameterSet.npProfileTierLevel(address()); }
/** Copies the specified {@link StdVideoH265VpsFlags} to the {@code flags} field.
public StdVideoH265VideoParameterSet.Buffer flags(StdVideoH265VpsFlags value) { StdVideoH265VideoParameterSet.nflags(address(), value); return this; }
/** Passes the {@code flags} field to the specified {@link java.util.function.Consumer Consumer}.
public StdVideoH265VideoParameterSet.Buffer flags(java.util.function.Consumer<StdVideoH265VpsFlags> consumer) { consumer.accept(flags()); return this; }
/** Sets the specified value to the {@code vps_video_parameter_set_id} field.
public StdVideoH265VideoParameterSet.Buffer vps_video_parameter_set_id(@NativeType("uint8_t") byte value) { StdVideoH265VideoParameterSet.nvps_video_parameter_set_id(address(), value); return this; }
/** Sets the specified value to the {@code vps_max_sub_layers_minus1} field.
public StdVideoH265VideoParameterSet.Buffer vps_max_sub_layers_minus1(@NativeType("uint8_t") byte value) { StdVideoH265VideoParameterSet.nvps_max_sub_layers_minus1(address(), value); return this; }
/** Sets the specified value to the {@code vps_num_units_in_tick} field.
public StdVideoH265VideoParameterSet.Buffer vps_num_units_in_tick(@NativeType("uint32_t") int value) { StdVideoH265VideoParameterSet.nvps_num_units_in_tick(address(), value); return this; }
/** Sets the specified value to the {@code vps_time_scale} field.
public StdVideoH265VideoParameterSet.Buffer vps_time_scale(@NativeType("uint32_t") int value) { StdVideoH265VideoParameterSet.nvps_time_scale(address(), value); return this; }
/** Sets the specified value to the {@code vps_num_ticks_poc_diff_one_minus1} field.
public StdVideoH265VideoParameterSet.Buffer vps_num_ticks_poc_diff_one_minus1(@NativeType("uint32_t") int value) { StdVideoH265VideoParameterSet.nvps_num_ticks_poc_diff_one_minus1(address(), value); return this; }
/** Sets the address of the specified {@link StdVideoH265DecPicBufMgr} to the {@code pDecPicBufMgr} field. | Buffer::pDecPicBufMgr | java | LWJGL/lwjgl3 | modules/lwjgl/vulkan/src/generated/java/org/lwjgl/vulkan/video/StdVideoH265VideoParameterSet.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/vulkan/src/generated/java/org/lwjgl/vulkan/video/StdVideoH265VideoParameterSet.java | BSD-3-Clause |
public StdVideoH265VideoParameterSet.Buffer pHrdParameters(@NativeType("StdVideoH265HrdParameters const *") StdVideoH265HrdParameters value) { StdVideoH265VideoParameterSet.npHrdParameters(address(), value); return this; } |
Creates a new {@code StdVideoH265VideoParameterSet.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 StdVideoH265VideoParameterSet#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 StdVideoH265VideoParameterSet getElementFactory() {
return ELEMENT_FACTORY;
}
/** @return a {@link StdVideoH265VpsFlags} view of the {@code flags} field.
public StdVideoH265VpsFlags flags() { return StdVideoH265VideoParameterSet.nflags(address()); }
/** @return the value of the {@code vps_video_parameter_set_id} field.
@NativeType("uint8_t")
public byte vps_video_parameter_set_id() { return StdVideoH265VideoParameterSet.nvps_video_parameter_set_id(address()); }
/** @return the value of the {@code vps_max_sub_layers_minus1} field.
@NativeType("uint8_t")
public byte vps_max_sub_layers_minus1() { return StdVideoH265VideoParameterSet.nvps_max_sub_layers_minus1(address()); }
/** @return the value of the {@code vps_num_units_in_tick} field.
@NativeType("uint32_t")
public int vps_num_units_in_tick() { return StdVideoH265VideoParameterSet.nvps_num_units_in_tick(address()); }
/** @return the value of the {@code vps_time_scale} field.
@NativeType("uint32_t")
public int vps_time_scale() { return StdVideoH265VideoParameterSet.nvps_time_scale(address()); }
/** @return the value of the {@code vps_num_ticks_poc_diff_one_minus1} field.
@NativeType("uint32_t")
public int vps_num_ticks_poc_diff_one_minus1() { return StdVideoH265VideoParameterSet.nvps_num_ticks_poc_diff_one_minus1(address()); }
/** @return a {@link StdVideoH265DecPicBufMgr} view of the struct pointed to by the {@code pDecPicBufMgr} field.
@NativeType("StdVideoH265DecPicBufMgr const *")
public StdVideoH265DecPicBufMgr pDecPicBufMgr() { return StdVideoH265VideoParameterSet.npDecPicBufMgr(address()); }
/** @return a {@link StdVideoH265HrdParameters} view of the struct pointed to by the {@code pHrdParameters} field.
@NativeType("StdVideoH265HrdParameters const *")
public StdVideoH265HrdParameters pHrdParameters() { return StdVideoH265VideoParameterSet.npHrdParameters(address()); }
/** @return a {@link StdVideoH265ProfileTierLevel} view of the struct pointed to by the {@code pProfileTierLevel} field.
@NativeType("StdVideoH265ProfileTierLevel const *")
public StdVideoH265ProfileTierLevel pProfileTierLevel() { return StdVideoH265VideoParameterSet.npProfileTierLevel(address()); }
/** Copies the specified {@link StdVideoH265VpsFlags} to the {@code flags} field.
public StdVideoH265VideoParameterSet.Buffer flags(StdVideoH265VpsFlags value) { StdVideoH265VideoParameterSet.nflags(address(), value); return this; }
/** Passes the {@code flags} field to the specified {@link java.util.function.Consumer Consumer}.
public StdVideoH265VideoParameterSet.Buffer flags(java.util.function.Consumer<StdVideoH265VpsFlags> consumer) { consumer.accept(flags()); return this; }
/** Sets the specified value to the {@code vps_video_parameter_set_id} field.
public StdVideoH265VideoParameterSet.Buffer vps_video_parameter_set_id(@NativeType("uint8_t") byte value) { StdVideoH265VideoParameterSet.nvps_video_parameter_set_id(address(), value); return this; }
/** Sets the specified value to the {@code vps_max_sub_layers_minus1} field.
public StdVideoH265VideoParameterSet.Buffer vps_max_sub_layers_minus1(@NativeType("uint8_t") byte value) { StdVideoH265VideoParameterSet.nvps_max_sub_layers_minus1(address(), value); return this; }
/** Sets the specified value to the {@code vps_num_units_in_tick} field.
public StdVideoH265VideoParameterSet.Buffer vps_num_units_in_tick(@NativeType("uint32_t") int value) { StdVideoH265VideoParameterSet.nvps_num_units_in_tick(address(), value); return this; }
/** Sets the specified value to the {@code vps_time_scale} field.
public StdVideoH265VideoParameterSet.Buffer vps_time_scale(@NativeType("uint32_t") int value) { StdVideoH265VideoParameterSet.nvps_time_scale(address(), value); return this; }
/** Sets the specified value to the {@code vps_num_ticks_poc_diff_one_minus1} field.
public StdVideoH265VideoParameterSet.Buffer vps_num_ticks_poc_diff_one_minus1(@NativeType("uint32_t") int value) { StdVideoH265VideoParameterSet.nvps_num_ticks_poc_diff_one_minus1(address(), value); return this; }
/** Sets the address of the specified {@link StdVideoH265DecPicBufMgr} to the {@code pDecPicBufMgr} field.
public StdVideoH265VideoParameterSet.Buffer pDecPicBufMgr(@NativeType("StdVideoH265DecPicBufMgr const *") StdVideoH265DecPicBufMgr value) { StdVideoH265VideoParameterSet.npDecPicBufMgr(address(), value); return this; }
/** Sets the address of the specified {@link StdVideoH265HrdParameters} to the {@code pHrdParameters} field. | Buffer::pHrdParameters | java | LWJGL/lwjgl3 | modules/lwjgl/vulkan/src/generated/java/org/lwjgl/vulkan/video/StdVideoH265VideoParameterSet.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/vulkan/src/generated/java/org/lwjgl/vulkan/video/StdVideoH265VideoParameterSet.java | BSD-3-Clause |
public StdVideoH265VideoParameterSet.Buffer pProfileTierLevel(@NativeType("StdVideoH265ProfileTierLevel const *") StdVideoH265ProfileTierLevel value) { StdVideoH265VideoParameterSet.npProfileTierLevel(address(), value); return this; } |
Creates a new {@code StdVideoH265VideoParameterSet.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 StdVideoH265VideoParameterSet#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 StdVideoH265VideoParameterSet getElementFactory() {
return ELEMENT_FACTORY;
}
/** @return a {@link StdVideoH265VpsFlags} view of the {@code flags} field.
public StdVideoH265VpsFlags flags() { return StdVideoH265VideoParameterSet.nflags(address()); }
/** @return the value of the {@code vps_video_parameter_set_id} field.
@NativeType("uint8_t")
public byte vps_video_parameter_set_id() { return StdVideoH265VideoParameterSet.nvps_video_parameter_set_id(address()); }
/** @return the value of the {@code vps_max_sub_layers_minus1} field.
@NativeType("uint8_t")
public byte vps_max_sub_layers_minus1() { return StdVideoH265VideoParameterSet.nvps_max_sub_layers_minus1(address()); }
/** @return the value of the {@code vps_num_units_in_tick} field.
@NativeType("uint32_t")
public int vps_num_units_in_tick() { return StdVideoH265VideoParameterSet.nvps_num_units_in_tick(address()); }
/** @return the value of the {@code vps_time_scale} field.
@NativeType("uint32_t")
public int vps_time_scale() { return StdVideoH265VideoParameterSet.nvps_time_scale(address()); }
/** @return the value of the {@code vps_num_ticks_poc_diff_one_minus1} field.
@NativeType("uint32_t")
public int vps_num_ticks_poc_diff_one_minus1() { return StdVideoH265VideoParameterSet.nvps_num_ticks_poc_diff_one_minus1(address()); }
/** @return a {@link StdVideoH265DecPicBufMgr} view of the struct pointed to by the {@code pDecPicBufMgr} field.
@NativeType("StdVideoH265DecPicBufMgr const *")
public StdVideoH265DecPicBufMgr pDecPicBufMgr() { return StdVideoH265VideoParameterSet.npDecPicBufMgr(address()); }
/** @return a {@link StdVideoH265HrdParameters} view of the struct pointed to by the {@code pHrdParameters} field.
@NativeType("StdVideoH265HrdParameters const *")
public StdVideoH265HrdParameters pHrdParameters() { return StdVideoH265VideoParameterSet.npHrdParameters(address()); }
/** @return a {@link StdVideoH265ProfileTierLevel} view of the struct pointed to by the {@code pProfileTierLevel} field.
@NativeType("StdVideoH265ProfileTierLevel const *")
public StdVideoH265ProfileTierLevel pProfileTierLevel() { return StdVideoH265VideoParameterSet.npProfileTierLevel(address()); }
/** Copies the specified {@link StdVideoH265VpsFlags} to the {@code flags} field.
public StdVideoH265VideoParameterSet.Buffer flags(StdVideoH265VpsFlags value) { StdVideoH265VideoParameterSet.nflags(address(), value); return this; }
/** Passes the {@code flags} field to the specified {@link java.util.function.Consumer Consumer}.
public StdVideoH265VideoParameterSet.Buffer flags(java.util.function.Consumer<StdVideoH265VpsFlags> consumer) { consumer.accept(flags()); return this; }
/** Sets the specified value to the {@code vps_video_parameter_set_id} field.
public StdVideoH265VideoParameterSet.Buffer vps_video_parameter_set_id(@NativeType("uint8_t") byte value) { StdVideoH265VideoParameterSet.nvps_video_parameter_set_id(address(), value); return this; }
/** Sets the specified value to the {@code vps_max_sub_layers_minus1} field.
public StdVideoH265VideoParameterSet.Buffer vps_max_sub_layers_minus1(@NativeType("uint8_t") byte value) { StdVideoH265VideoParameterSet.nvps_max_sub_layers_minus1(address(), value); return this; }
/** Sets the specified value to the {@code vps_num_units_in_tick} field.
public StdVideoH265VideoParameterSet.Buffer vps_num_units_in_tick(@NativeType("uint32_t") int value) { StdVideoH265VideoParameterSet.nvps_num_units_in_tick(address(), value); return this; }
/** Sets the specified value to the {@code vps_time_scale} field.
public StdVideoH265VideoParameterSet.Buffer vps_time_scale(@NativeType("uint32_t") int value) { StdVideoH265VideoParameterSet.nvps_time_scale(address(), value); return this; }
/** Sets the specified value to the {@code vps_num_ticks_poc_diff_one_minus1} field.
public StdVideoH265VideoParameterSet.Buffer vps_num_ticks_poc_diff_one_minus1(@NativeType("uint32_t") int value) { StdVideoH265VideoParameterSet.nvps_num_ticks_poc_diff_one_minus1(address(), value); return this; }
/** Sets the address of the specified {@link StdVideoH265DecPicBufMgr} to the {@code pDecPicBufMgr} field.
public StdVideoH265VideoParameterSet.Buffer pDecPicBufMgr(@NativeType("StdVideoH265DecPicBufMgr const *") StdVideoH265DecPicBufMgr value) { StdVideoH265VideoParameterSet.npDecPicBufMgr(address(), value); return this; }
/** Sets the address of the specified {@link StdVideoH265HrdParameters} to the {@code pHrdParameters} field.
public StdVideoH265VideoParameterSet.Buffer pHrdParameters(@NativeType("StdVideoH265HrdParameters const *") StdVideoH265HrdParameters value) { StdVideoH265VideoParameterSet.npHrdParameters(address(), value); return this; }
/** Sets the address of the specified {@link StdVideoH265ProfileTierLevel} to the {@code pProfileTierLevel} field. | Buffer::pProfileTierLevel | java | LWJGL/lwjgl3 | modules/lwjgl/vulkan/src/generated/java/org/lwjgl/vulkan/video/StdVideoH265VideoParameterSet.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/vulkan/src/generated/java/org/lwjgl/vulkan/video/StdVideoH265VideoParameterSet.java | BSD-3-Clause |
public CID_FaceDict(ByteBuffer container) {
super(memAddress(container), __checkContainer(container, SIZEOF));
} |
Creates a {@code CID_FaceDict} 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>
| CID_FaceDict::CID_FaceDict | java | LWJGL/lwjgl3 | modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/CID_FaceDict.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/CID_FaceDict.java | BSD-3-Clause |
public FT_Matrix font_matrix() { return nfont_matrix(address()); } |
Creates a {@code CID_FaceDict} 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 CID_FaceDict(ByteBuffer container) {
super(memAddress(container), __checkContainer(container, SIZEOF));
}
@Override
public int sizeof() { return SIZEOF; }
/** @return a {@link PS_Private} view of the {@code private_dict} field.
@NativeType("PS_PrivateRec")
public PS_Private private_dict() { return nprivate_dict(address()); }
/** @return the value of the {@code len_buildchar} field.
@NativeType("FT_UInt")
public int len_buildchar() { return nlen_buildchar(address()); }
/** @return the value of the {@code forcebold_threshold} field.
@NativeType("FT_Fixed")
public long forcebold_threshold() { return nforcebold_threshold(address()); }
/** @return the value of the {@code stroke_width} field.
@NativeType("FT_Pos")
public long stroke_width() { return nstroke_width(address()); }
/** @return the value of the {@code expansion_factor} field.
@NativeType("FT_Fixed")
public long expansion_factor() { return nexpansion_factor(address()); }
/** @return the value of the {@code paint_type} field.
@NativeType("FT_Byte")
public byte paint_type() { return npaint_type(address()); }
/** @return the value of the {@code font_type} field.
@NativeType("FT_Byte")
public byte font_type() { return nfont_type(address()); }
/** @return a {@link FT_Matrix} view of the {@code font_matrix} field. | CID_FaceDict::font_matrix | java | LWJGL/lwjgl3 | modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/CID_FaceDict.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/CID_FaceDict.java | BSD-3-Clause |
public FT_Vector font_offset() { return nfont_offset(address()); } |
Creates a {@code CID_FaceDict} 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 CID_FaceDict(ByteBuffer container) {
super(memAddress(container), __checkContainer(container, SIZEOF));
}
@Override
public int sizeof() { return SIZEOF; }
/** @return a {@link PS_Private} view of the {@code private_dict} field.
@NativeType("PS_PrivateRec")
public PS_Private private_dict() { return nprivate_dict(address()); }
/** @return the value of the {@code len_buildchar} field.
@NativeType("FT_UInt")
public int len_buildchar() { return nlen_buildchar(address()); }
/** @return the value of the {@code forcebold_threshold} field.
@NativeType("FT_Fixed")
public long forcebold_threshold() { return nforcebold_threshold(address()); }
/** @return the value of the {@code stroke_width} field.
@NativeType("FT_Pos")
public long stroke_width() { return nstroke_width(address()); }
/** @return the value of the {@code expansion_factor} field.
@NativeType("FT_Fixed")
public long expansion_factor() { return nexpansion_factor(address()); }
/** @return the value of the {@code paint_type} field.
@NativeType("FT_Byte")
public byte paint_type() { return npaint_type(address()); }
/** @return the value of the {@code font_type} field.
@NativeType("FT_Byte")
public byte font_type() { return nfont_type(address()); }
/** @return a {@link FT_Matrix} view of the {@code font_matrix} field.
public FT_Matrix font_matrix() { return nfont_matrix(address()); }
/** @return a {@link FT_Vector} view of the {@code font_offset} field. | CID_FaceDict::font_offset | java | LWJGL/lwjgl3 | modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/CID_FaceDict.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/CID_FaceDict.java | BSD-3-Clause |
public static CID_FaceDict create(long address) {
return new CID_FaceDict(address, null);
} |
Creates a {@code CID_FaceDict} 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 CID_FaceDict(ByteBuffer container) {
super(memAddress(container), __checkContainer(container, SIZEOF));
}
@Override
public int sizeof() { return SIZEOF; }
/** @return a {@link PS_Private} view of the {@code private_dict} field.
@NativeType("PS_PrivateRec")
public PS_Private private_dict() { return nprivate_dict(address()); }
/** @return the value of the {@code len_buildchar} field.
@NativeType("FT_UInt")
public int len_buildchar() { return nlen_buildchar(address()); }
/** @return the value of the {@code forcebold_threshold} field.
@NativeType("FT_Fixed")
public long forcebold_threshold() { return nforcebold_threshold(address()); }
/** @return the value of the {@code stroke_width} field.
@NativeType("FT_Pos")
public long stroke_width() { return nstroke_width(address()); }
/** @return the value of the {@code expansion_factor} field.
@NativeType("FT_Fixed")
public long expansion_factor() { return nexpansion_factor(address()); }
/** @return the value of the {@code paint_type} field.
@NativeType("FT_Byte")
public byte paint_type() { return npaint_type(address()); }
/** @return the value of the {@code font_type} field.
@NativeType("FT_Byte")
public byte font_type() { return nfont_type(address()); }
/** @return a {@link FT_Matrix} view of the {@code font_matrix} field.
public FT_Matrix font_matrix() { return nfont_matrix(address()); }
/** @return a {@link FT_Vector} view of the {@code font_offset} field.
public FT_Vector font_offset() { return nfont_offset(address()); }
/** @return the value of the {@code num_subrs} field.
@NativeType("FT_UInt")
public int num_subrs() { return nnum_subrs(address()); }
/** @return the value of the {@code subrmap_offset} field.
@NativeType("FT_ULong")
public long subrmap_offset() { return nsubrmap_offset(address()); }
/** @return the value of the {@code sd_bytes} field.
@NativeType("FT_UInt")
public int sd_bytes() { return nsd_bytes(address()); }
// -----------------------------------
/** Returns a new {@code CID_FaceDict} instance for the specified memory address. | CID_FaceDict::create | java | LWJGL/lwjgl3 | modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/CID_FaceDict.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/CID_FaceDict.java | BSD-3-Clause |
public static @Nullable CID_FaceDict createSafe(long address) {
return address == NULL ? null : new CID_FaceDict(address, null);
} |
Creates a {@code CID_FaceDict} 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 CID_FaceDict(ByteBuffer container) {
super(memAddress(container), __checkContainer(container, SIZEOF));
}
@Override
public int sizeof() { return SIZEOF; }
/** @return a {@link PS_Private} view of the {@code private_dict} field.
@NativeType("PS_PrivateRec")
public PS_Private private_dict() { return nprivate_dict(address()); }
/** @return the value of the {@code len_buildchar} field.
@NativeType("FT_UInt")
public int len_buildchar() { return nlen_buildchar(address()); }
/** @return the value of the {@code forcebold_threshold} field.
@NativeType("FT_Fixed")
public long forcebold_threshold() { return nforcebold_threshold(address()); }
/** @return the value of the {@code stroke_width} field.
@NativeType("FT_Pos")
public long stroke_width() { return nstroke_width(address()); }
/** @return the value of the {@code expansion_factor} field.
@NativeType("FT_Fixed")
public long expansion_factor() { return nexpansion_factor(address()); }
/** @return the value of the {@code paint_type} field.
@NativeType("FT_Byte")
public byte paint_type() { return npaint_type(address()); }
/** @return the value of the {@code font_type} field.
@NativeType("FT_Byte")
public byte font_type() { return nfont_type(address()); }
/** @return a {@link FT_Matrix} view of the {@code font_matrix} field.
public FT_Matrix font_matrix() { return nfont_matrix(address()); }
/** @return a {@link FT_Vector} view of the {@code font_offset} field.
public FT_Vector font_offset() { return nfont_offset(address()); }
/** @return the value of the {@code num_subrs} field.
@NativeType("FT_UInt")
public int num_subrs() { return nnum_subrs(address()); }
/** @return the value of the {@code subrmap_offset} field.
@NativeType("FT_ULong")
public long subrmap_offset() { return nsubrmap_offset(address()); }
/** @return the value of the {@code sd_bytes} field.
@NativeType("FT_UInt")
public int sd_bytes() { return nsd_bytes(address()); }
// -----------------------------------
/** Returns a new {@code CID_FaceDict} instance for the specified memory address.
public static CID_FaceDict create(long address) {
return new CID_FaceDict(address, null);
}
/** Like {@link #create(long) create}, but returns {@code null} if {@code address} is {@code NULL}. | CID_FaceDict::createSafe | java | LWJGL/lwjgl3 | modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/CID_FaceDict.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/CID_FaceDict.java | BSD-3-Clause |
public static CID_FaceDict.Buffer create(long address, int capacity) {
return new Buffer(address, capacity);
} |
Create a {@link CID_FaceDict.Buffer} instance at the specified memory.
@param address the memory address
@param capacity the buffer capacity
| CID_FaceDict::create | java | LWJGL/lwjgl3 | modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/CID_FaceDict.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/CID_FaceDict.java | BSD-3-Clause |
public static CID_FaceDict.@Nullable Buffer createSafe(long address, int capacity) {
return address == NULL ? null : new Buffer(address, capacity);
} |
Create a {@link CID_FaceDict.Buffer} instance at the specified memory.
@param address the memory address
@param capacity the buffer capacity
public static CID_FaceDict.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}. | CID_FaceDict::createSafe | java | LWJGL/lwjgl3 | modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/CID_FaceDict.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/CID_FaceDict.java | BSD-3-Clause |
public static PS_Private nprivate_dict(long struct) { return PS_Private.create(struct + CID_FaceDict.PRIVATE_DICT); } |
Create a {@link CID_FaceDict.Buffer} instance at the specified memory.
@param address the memory address
@param capacity the buffer capacity
public static CID_FaceDict.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 CID_FaceDict.@Nullable Buffer createSafe(long address, int capacity) {
return address == NULL ? null : new Buffer(address, capacity);
}
// -----------------------------------
/** Unsafe version of {@link #private_dict}. | CID_FaceDict::nprivate_dict | java | LWJGL/lwjgl3 | modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/CID_FaceDict.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/CID_FaceDict.java | BSD-3-Clause |
public static int nlen_buildchar(long struct) { return memGetInt(struct + CID_FaceDict.LEN_BUILDCHAR); } |
Create a {@link CID_FaceDict.Buffer} instance at the specified memory.
@param address the memory address
@param capacity the buffer capacity
public static CID_FaceDict.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 CID_FaceDict.@Nullable Buffer createSafe(long address, int capacity) {
return address == NULL ? null : new Buffer(address, capacity);
}
// -----------------------------------
/** Unsafe version of {@link #private_dict}.
public static PS_Private nprivate_dict(long struct) { return PS_Private.create(struct + CID_FaceDict.PRIVATE_DICT); }
/** Unsafe version of {@link #len_buildchar}. | CID_FaceDict::nlen_buildchar | java | LWJGL/lwjgl3 | modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/CID_FaceDict.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/CID_FaceDict.java | BSD-3-Clause |
public static long nforcebold_threshold(long struct) { return memGetCLong(struct + CID_FaceDict.FORCEBOLD_THRESHOLD); } |
Create a {@link CID_FaceDict.Buffer} instance at the specified memory.
@param address the memory address
@param capacity the buffer capacity
public static CID_FaceDict.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 CID_FaceDict.@Nullable Buffer createSafe(long address, int capacity) {
return address == NULL ? null : new Buffer(address, capacity);
}
// -----------------------------------
/** Unsafe version of {@link #private_dict}.
public static PS_Private nprivate_dict(long struct) { return PS_Private.create(struct + CID_FaceDict.PRIVATE_DICT); }
/** Unsafe version of {@link #len_buildchar}.
public static int nlen_buildchar(long struct) { return memGetInt(struct + CID_FaceDict.LEN_BUILDCHAR); }
/** Unsafe version of {@link #forcebold_threshold}. | CID_FaceDict::nforcebold_threshold | java | LWJGL/lwjgl3 | modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/CID_FaceDict.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/CID_FaceDict.java | BSD-3-Clause |
public static long nstroke_width(long struct) { return memGetCLong(struct + CID_FaceDict.STROKE_WIDTH); } |
Create a {@link CID_FaceDict.Buffer} instance at the specified memory.
@param address the memory address
@param capacity the buffer capacity
public static CID_FaceDict.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 CID_FaceDict.@Nullable Buffer createSafe(long address, int capacity) {
return address == NULL ? null : new Buffer(address, capacity);
}
// -----------------------------------
/** Unsafe version of {@link #private_dict}.
public static PS_Private nprivate_dict(long struct) { return PS_Private.create(struct + CID_FaceDict.PRIVATE_DICT); }
/** Unsafe version of {@link #len_buildchar}.
public static int nlen_buildchar(long struct) { return memGetInt(struct + CID_FaceDict.LEN_BUILDCHAR); }
/** Unsafe version of {@link #forcebold_threshold}.
public static long nforcebold_threshold(long struct) { return memGetCLong(struct + CID_FaceDict.FORCEBOLD_THRESHOLD); }
/** Unsafe version of {@link #stroke_width}. | CID_FaceDict::nstroke_width | java | LWJGL/lwjgl3 | modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/CID_FaceDict.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/CID_FaceDict.java | BSD-3-Clause |
public static long nexpansion_factor(long struct) { return memGetCLong(struct + CID_FaceDict.EXPANSION_FACTOR); } |
Create a {@link CID_FaceDict.Buffer} instance at the specified memory.
@param address the memory address
@param capacity the buffer capacity
public static CID_FaceDict.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 CID_FaceDict.@Nullable Buffer createSafe(long address, int capacity) {
return address == NULL ? null : new Buffer(address, capacity);
}
// -----------------------------------
/** Unsafe version of {@link #private_dict}.
public static PS_Private nprivate_dict(long struct) { return PS_Private.create(struct + CID_FaceDict.PRIVATE_DICT); }
/** Unsafe version of {@link #len_buildchar}.
public static int nlen_buildchar(long struct) { return memGetInt(struct + CID_FaceDict.LEN_BUILDCHAR); }
/** Unsafe version of {@link #forcebold_threshold}.
public static long nforcebold_threshold(long struct) { return memGetCLong(struct + CID_FaceDict.FORCEBOLD_THRESHOLD); }
/** Unsafe version of {@link #stroke_width}.
public static long nstroke_width(long struct) { return memGetCLong(struct + CID_FaceDict.STROKE_WIDTH); }
/** Unsafe version of {@link #expansion_factor}. | CID_FaceDict::nexpansion_factor | java | LWJGL/lwjgl3 | modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/CID_FaceDict.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/CID_FaceDict.java | BSD-3-Clause |
public static byte npaint_type(long struct) { return memGetByte(struct + CID_FaceDict.PAINT_TYPE); } |
Create a {@link CID_FaceDict.Buffer} instance at the specified memory.
@param address the memory address
@param capacity the buffer capacity
public static CID_FaceDict.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 CID_FaceDict.@Nullable Buffer createSafe(long address, int capacity) {
return address == NULL ? null : new Buffer(address, capacity);
}
// -----------------------------------
/** Unsafe version of {@link #private_dict}.
public static PS_Private nprivate_dict(long struct) { return PS_Private.create(struct + CID_FaceDict.PRIVATE_DICT); }
/** Unsafe version of {@link #len_buildchar}.
public static int nlen_buildchar(long struct) { return memGetInt(struct + CID_FaceDict.LEN_BUILDCHAR); }
/** Unsafe version of {@link #forcebold_threshold}.
public static long nforcebold_threshold(long struct) { return memGetCLong(struct + CID_FaceDict.FORCEBOLD_THRESHOLD); }
/** Unsafe version of {@link #stroke_width}.
public static long nstroke_width(long struct) { return memGetCLong(struct + CID_FaceDict.STROKE_WIDTH); }
/** Unsafe version of {@link #expansion_factor}.
public static long nexpansion_factor(long struct) { return memGetCLong(struct + CID_FaceDict.EXPANSION_FACTOR); }
/** Unsafe version of {@link #paint_type}. | CID_FaceDict::npaint_type | java | LWJGL/lwjgl3 | modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/CID_FaceDict.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/CID_FaceDict.java | BSD-3-Clause |
public static byte nfont_type(long struct) { return memGetByte(struct + CID_FaceDict.FONT_TYPE); } |
Create a {@link CID_FaceDict.Buffer} instance at the specified memory.
@param address the memory address
@param capacity the buffer capacity
public static CID_FaceDict.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 CID_FaceDict.@Nullable Buffer createSafe(long address, int capacity) {
return address == NULL ? null : new Buffer(address, capacity);
}
// -----------------------------------
/** Unsafe version of {@link #private_dict}.
public static PS_Private nprivate_dict(long struct) { return PS_Private.create(struct + CID_FaceDict.PRIVATE_DICT); }
/** Unsafe version of {@link #len_buildchar}.
public static int nlen_buildchar(long struct) { return memGetInt(struct + CID_FaceDict.LEN_BUILDCHAR); }
/** Unsafe version of {@link #forcebold_threshold}.
public static long nforcebold_threshold(long struct) { return memGetCLong(struct + CID_FaceDict.FORCEBOLD_THRESHOLD); }
/** Unsafe version of {@link #stroke_width}.
public static long nstroke_width(long struct) { return memGetCLong(struct + CID_FaceDict.STROKE_WIDTH); }
/** Unsafe version of {@link #expansion_factor}.
public static long nexpansion_factor(long struct) { return memGetCLong(struct + CID_FaceDict.EXPANSION_FACTOR); }
/** Unsafe version of {@link #paint_type}.
public static byte npaint_type(long struct) { return memGetByte(struct + CID_FaceDict.PAINT_TYPE); }
/** Unsafe version of {@link #font_type}. | CID_FaceDict::nfont_type | java | LWJGL/lwjgl3 | modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/CID_FaceDict.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/CID_FaceDict.java | BSD-3-Clause |
public static FT_Matrix nfont_matrix(long struct) { return FT_Matrix.create(struct + CID_FaceDict.FONT_MATRIX); } |
Create a {@link CID_FaceDict.Buffer} instance at the specified memory.
@param address the memory address
@param capacity the buffer capacity
public static CID_FaceDict.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 CID_FaceDict.@Nullable Buffer createSafe(long address, int capacity) {
return address == NULL ? null : new Buffer(address, capacity);
}
// -----------------------------------
/** Unsafe version of {@link #private_dict}.
public static PS_Private nprivate_dict(long struct) { return PS_Private.create(struct + CID_FaceDict.PRIVATE_DICT); }
/** Unsafe version of {@link #len_buildchar}.
public static int nlen_buildchar(long struct) { return memGetInt(struct + CID_FaceDict.LEN_BUILDCHAR); }
/** Unsafe version of {@link #forcebold_threshold}.
public static long nforcebold_threshold(long struct) { return memGetCLong(struct + CID_FaceDict.FORCEBOLD_THRESHOLD); }
/** Unsafe version of {@link #stroke_width}.
public static long nstroke_width(long struct) { return memGetCLong(struct + CID_FaceDict.STROKE_WIDTH); }
/** Unsafe version of {@link #expansion_factor}.
public static long nexpansion_factor(long struct) { return memGetCLong(struct + CID_FaceDict.EXPANSION_FACTOR); }
/** Unsafe version of {@link #paint_type}.
public static byte npaint_type(long struct) { return memGetByte(struct + CID_FaceDict.PAINT_TYPE); }
/** Unsafe version of {@link #font_type}.
public static byte nfont_type(long struct) { return memGetByte(struct + CID_FaceDict.FONT_TYPE); }
/** Unsafe version of {@link #font_matrix}. | CID_FaceDict::nfont_matrix | java | LWJGL/lwjgl3 | modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/CID_FaceDict.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/CID_FaceDict.java | BSD-3-Clause |
public static FT_Vector nfont_offset(long struct) { return FT_Vector.create(struct + CID_FaceDict.FONT_OFFSET); } |
Create a {@link CID_FaceDict.Buffer} instance at the specified memory.
@param address the memory address
@param capacity the buffer capacity
public static CID_FaceDict.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 CID_FaceDict.@Nullable Buffer createSafe(long address, int capacity) {
return address == NULL ? null : new Buffer(address, capacity);
}
// -----------------------------------
/** Unsafe version of {@link #private_dict}.
public static PS_Private nprivate_dict(long struct) { return PS_Private.create(struct + CID_FaceDict.PRIVATE_DICT); }
/** Unsafe version of {@link #len_buildchar}.
public static int nlen_buildchar(long struct) { return memGetInt(struct + CID_FaceDict.LEN_BUILDCHAR); }
/** Unsafe version of {@link #forcebold_threshold}.
public static long nforcebold_threshold(long struct) { return memGetCLong(struct + CID_FaceDict.FORCEBOLD_THRESHOLD); }
/** Unsafe version of {@link #stroke_width}.
public static long nstroke_width(long struct) { return memGetCLong(struct + CID_FaceDict.STROKE_WIDTH); }
/** Unsafe version of {@link #expansion_factor}.
public static long nexpansion_factor(long struct) { return memGetCLong(struct + CID_FaceDict.EXPANSION_FACTOR); }
/** Unsafe version of {@link #paint_type}.
public static byte npaint_type(long struct) { return memGetByte(struct + CID_FaceDict.PAINT_TYPE); }
/** Unsafe version of {@link #font_type}.
public static byte nfont_type(long struct) { return memGetByte(struct + CID_FaceDict.FONT_TYPE); }
/** Unsafe version of {@link #font_matrix}.
public static FT_Matrix nfont_matrix(long struct) { return FT_Matrix.create(struct + CID_FaceDict.FONT_MATRIX); }
/** Unsafe version of {@link #font_offset}. | CID_FaceDict::nfont_offset | java | LWJGL/lwjgl3 | modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/CID_FaceDict.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/CID_FaceDict.java | BSD-3-Clause |
public static int nnum_subrs(long struct) { return memGetInt(struct + CID_FaceDict.NUM_SUBRS); } |
Create a {@link CID_FaceDict.Buffer} instance at the specified memory.
@param address the memory address
@param capacity the buffer capacity
public static CID_FaceDict.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 CID_FaceDict.@Nullable Buffer createSafe(long address, int capacity) {
return address == NULL ? null : new Buffer(address, capacity);
}
// -----------------------------------
/** Unsafe version of {@link #private_dict}.
public static PS_Private nprivate_dict(long struct) { return PS_Private.create(struct + CID_FaceDict.PRIVATE_DICT); }
/** Unsafe version of {@link #len_buildchar}.
public static int nlen_buildchar(long struct) { return memGetInt(struct + CID_FaceDict.LEN_BUILDCHAR); }
/** Unsafe version of {@link #forcebold_threshold}.
public static long nforcebold_threshold(long struct) { return memGetCLong(struct + CID_FaceDict.FORCEBOLD_THRESHOLD); }
/** Unsafe version of {@link #stroke_width}.
public static long nstroke_width(long struct) { return memGetCLong(struct + CID_FaceDict.STROKE_WIDTH); }
/** Unsafe version of {@link #expansion_factor}.
public static long nexpansion_factor(long struct) { return memGetCLong(struct + CID_FaceDict.EXPANSION_FACTOR); }
/** Unsafe version of {@link #paint_type}.
public static byte npaint_type(long struct) { return memGetByte(struct + CID_FaceDict.PAINT_TYPE); }
/** Unsafe version of {@link #font_type}.
public static byte nfont_type(long struct) { return memGetByte(struct + CID_FaceDict.FONT_TYPE); }
/** Unsafe version of {@link #font_matrix}.
public static FT_Matrix nfont_matrix(long struct) { return FT_Matrix.create(struct + CID_FaceDict.FONT_MATRIX); }
/** Unsafe version of {@link #font_offset}.
public static FT_Vector nfont_offset(long struct) { return FT_Vector.create(struct + CID_FaceDict.FONT_OFFSET); }
/** Unsafe version of {@link #num_subrs}. | CID_FaceDict::nnum_subrs | java | LWJGL/lwjgl3 | modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/CID_FaceDict.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/CID_FaceDict.java | BSD-3-Clause |
public static long nsubrmap_offset(long struct) { return memGetCLong(struct + CID_FaceDict.SUBRMAP_OFFSET); } |
Create a {@link CID_FaceDict.Buffer} instance at the specified memory.
@param address the memory address
@param capacity the buffer capacity
public static CID_FaceDict.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 CID_FaceDict.@Nullable Buffer createSafe(long address, int capacity) {
return address == NULL ? null : new Buffer(address, capacity);
}
// -----------------------------------
/** Unsafe version of {@link #private_dict}.
public static PS_Private nprivate_dict(long struct) { return PS_Private.create(struct + CID_FaceDict.PRIVATE_DICT); }
/** Unsafe version of {@link #len_buildchar}.
public static int nlen_buildchar(long struct) { return memGetInt(struct + CID_FaceDict.LEN_BUILDCHAR); }
/** Unsafe version of {@link #forcebold_threshold}.
public static long nforcebold_threshold(long struct) { return memGetCLong(struct + CID_FaceDict.FORCEBOLD_THRESHOLD); }
/** Unsafe version of {@link #stroke_width}.
public static long nstroke_width(long struct) { return memGetCLong(struct + CID_FaceDict.STROKE_WIDTH); }
/** Unsafe version of {@link #expansion_factor}.
public static long nexpansion_factor(long struct) { return memGetCLong(struct + CID_FaceDict.EXPANSION_FACTOR); }
/** Unsafe version of {@link #paint_type}.
public static byte npaint_type(long struct) { return memGetByte(struct + CID_FaceDict.PAINT_TYPE); }
/** Unsafe version of {@link #font_type}.
public static byte nfont_type(long struct) { return memGetByte(struct + CID_FaceDict.FONT_TYPE); }
/** Unsafe version of {@link #font_matrix}.
public static FT_Matrix nfont_matrix(long struct) { return FT_Matrix.create(struct + CID_FaceDict.FONT_MATRIX); }
/** Unsafe version of {@link #font_offset}.
public static FT_Vector nfont_offset(long struct) { return FT_Vector.create(struct + CID_FaceDict.FONT_OFFSET); }
/** Unsafe version of {@link #num_subrs}.
public static int nnum_subrs(long struct) { return memGetInt(struct + CID_FaceDict.NUM_SUBRS); }
/** Unsafe version of {@link #subrmap_offset}. | CID_FaceDict::nsubrmap_offset | java | LWJGL/lwjgl3 | modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/CID_FaceDict.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/CID_FaceDict.java | BSD-3-Clause |
public static int nsd_bytes(long struct) { return memGetInt(struct + CID_FaceDict.SD_BYTES); } |
Create a {@link CID_FaceDict.Buffer} instance at the specified memory.
@param address the memory address
@param capacity the buffer capacity
public static CID_FaceDict.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 CID_FaceDict.@Nullable Buffer createSafe(long address, int capacity) {
return address == NULL ? null : new Buffer(address, capacity);
}
// -----------------------------------
/** Unsafe version of {@link #private_dict}.
public static PS_Private nprivate_dict(long struct) { return PS_Private.create(struct + CID_FaceDict.PRIVATE_DICT); }
/** Unsafe version of {@link #len_buildchar}.
public static int nlen_buildchar(long struct) { return memGetInt(struct + CID_FaceDict.LEN_BUILDCHAR); }
/** Unsafe version of {@link #forcebold_threshold}.
public static long nforcebold_threshold(long struct) { return memGetCLong(struct + CID_FaceDict.FORCEBOLD_THRESHOLD); }
/** Unsafe version of {@link #stroke_width}.
public static long nstroke_width(long struct) { return memGetCLong(struct + CID_FaceDict.STROKE_WIDTH); }
/** Unsafe version of {@link #expansion_factor}.
public static long nexpansion_factor(long struct) { return memGetCLong(struct + CID_FaceDict.EXPANSION_FACTOR); }
/** Unsafe version of {@link #paint_type}.
public static byte npaint_type(long struct) { return memGetByte(struct + CID_FaceDict.PAINT_TYPE); }
/** Unsafe version of {@link #font_type}.
public static byte nfont_type(long struct) { return memGetByte(struct + CID_FaceDict.FONT_TYPE); }
/** Unsafe version of {@link #font_matrix}.
public static FT_Matrix nfont_matrix(long struct) { return FT_Matrix.create(struct + CID_FaceDict.FONT_MATRIX); }
/** Unsafe version of {@link #font_offset}.
public static FT_Vector nfont_offset(long struct) { return FT_Vector.create(struct + CID_FaceDict.FONT_OFFSET); }
/** Unsafe version of {@link #num_subrs}.
public static int nnum_subrs(long struct) { return memGetInt(struct + CID_FaceDict.NUM_SUBRS); }
/** Unsafe version of {@link #subrmap_offset}.
public static long nsubrmap_offset(long struct) { return memGetCLong(struct + CID_FaceDict.SUBRMAP_OFFSET); }
/** Unsafe version of {@link #sd_bytes}. | CID_FaceDict::nsd_bytes | java | LWJGL/lwjgl3 | modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/CID_FaceDict.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/CID_FaceDict.java | BSD-3-Clause |
public FT_Matrix font_matrix() { return CID_FaceDict.nfont_matrix(address()); } |
Creates a new {@code CID_FaceDict.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 CID_FaceDict#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 CID_FaceDict getElementFactory() {
return ELEMENT_FACTORY;
}
/** @return a {@link PS_Private} view of the {@code private_dict} field.
@NativeType("PS_PrivateRec")
public PS_Private private_dict() { return CID_FaceDict.nprivate_dict(address()); }
/** @return the value of the {@code len_buildchar} field.
@NativeType("FT_UInt")
public int len_buildchar() { return CID_FaceDict.nlen_buildchar(address()); }
/** @return the value of the {@code forcebold_threshold} field.
@NativeType("FT_Fixed")
public long forcebold_threshold() { return CID_FaceDict.nforcebold_threshold(address()); }
/** @return the value of the {@code stroke_width} field.
@NativeType("FT_Pos")
public long stroke_width() { return CID_FaceDict.nstroke_width(address()); }
/** @return the value of the {@code expansion_factor} field.
@NativeType("FT_Fixed")
public long expansion_factor() { return CID_FaceDict.nexpansion_factor(address()); }
/** @return the value of the {@code paint_type} field.
@NativeType("FT_Byte")
public byte paint_type() { return CID_FaceDict.npaint_type(address()); }
/** @return the value of the {@code font_type} field.
@NativeType("FT_Byte")
public byte font_type() { return CID_FaceDict.nfont_type(address()); }
/** @return a {@link FT_Matrix} view of the {@code font_matrix} field. | Buffer::font_matrix | java | LWJGL/lwjgl3 | modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/CID_FaceDict.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/CID_FaceDict.java | BSD-3-Clause |
public FT_Vector font_offset() { return CID_FaceDict.nfont_offset(address()); } |
Creates a new {@code CID_FaceDict.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 CID_FaceDict#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 CID_FaceDict getElementFactory() {
return ELEMENT_FACTORY;
}
/** @return a {@link PS_Private} view of the {@code private_dict} field.
@NativeType("PS_PrivateRec")
public PS_Private private_dict() { return CID_FaceDict.nprivate_dict(address()); }
/** @return the value of the {@code len_buildchar} field.
@NativeType("FT_UInt")
public int len_buildchar() { return CID_FaceDict.nlen_buildchar(address()); }
/** @return the value of the {@code forcebold_threshold} field.
@NativeType("FT_Fixed")
public long forcebold_threshold() { return CID_FaceDict.nforcebold_threshold(address()); }
/** @return the value of the {@code stroke_width} field.
@NativeType("FT_Pos")
public long stroke_width() { return CID_FaceDict.nstroke_width(address()); }
/** @return the value of the {@code expansion_factor} field.
@NativeType("FT_Fixed")
public long expansion_factor() { return CID_FaceDict.nexpansion_factor(address()); }
/** @return the value of the {@code paint_type} field.
@NativeType("FT_Byte")
public byte paint_type() { return CID_FaceDict.npaint_type(address()); }
/** @return the value of the {@code font_type} field.
@NativeType("FT_Byte")
public byte font_type() { return CID_FaceDict.nfont_type(address()); }
/** @return a {@link FT_Matrix} view of the {@code font_matrix} field.
public FT_Matrix font_matrix() { return CID_FaceDict.nfont_matrix(address()); }
/** @return a {@link FT_Vector} view of the {@code font_offset} field. | Buffer::font_offset | java | LWJGL/lwjgl3 | modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/CID_FaceDict.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/CID_FaceDict.java | BSD-3-Clause |
public FT_Size_Metrics(ByteBuffer container) {
super(memAddress(container), __checkContainer(container, SIZEOF));
} |
Creates a {@code FT_Size_Metrics} 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_Size_Metrics::FT_Size_Metrics | java | LWJGL/lwjgl3 | modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Size_Metrics.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Size_Metrics.java | BSD-3-Clause |
public static FT_Size_Metrics create(long address) {
return new FT_Size_Metrics(address, null);
} |
Creates a {@code FT_Size_Metrics} 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_Size_Metrics(ByteBuffer container) {
super(memAddress(container), __checkContainer(container, SIZEOF));
}
@Override
public int sizeof() { return SIZEOF; }
/** @return the value of the {@code x_ppem} field.
@NativeType("FT_UShort")
public short x_ppem() { return nx_ppem(address()); }
/** @return the value of the {@code y_ppem} field.
@NativeType("FT_UShort")
public short y_ppem() { return ny_ppem(address()); }
/** @return the value of the {@code x_scale} field.
@NativeType("FT_Fixed")
public long x_scale() { return nx_scale(address()); }
/** @return the value of the {@code y_scale} field.
@NativeType("FT_Fixed")
public long y_scale() { return ny_scale(address()); }
/** @return the value of the {@code ascender} field.
@NativeType("FT_Pos")
public long ascender() { return nascender(address()); }
/** @return the value of the {@code descender} field.
@NativeType("FT_Pos")
public long descender() { return ndescender(address()); }
/** @return the value of the {@code height} field.
@NativeType("FT_Pos")
public long height() { return nheight(address()); }
/** @return the value of the {@code max_advance} field.
@NativeType("FT_Pos")
public long max_advance() { return nmax_advance(address()); }
// -----------------------------------
/** Returns a new {@code FT_Size_Metrics} instance for the specified memory address. | FT_Size_Metrics::create | java | LWJGL/lwjgl3 | modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Size_Metrics.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Size_Metrics.java | BSD-3-Clause |
public static @Nullable FT_Size_Metrics createSafe(long address) {
return address == NULL ? null : new FT_Size_Metrics(address, null);
} |
Creates a {@code FT_Size_Metrics} 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_Size_Metrics(ByteBuffer container) {
super(memAddress(container), __checkContainer(container, SIZEOF));
}
@Override
public int sizeof() { return SIZEOF; }
/** @return the value of the {@code x_ppem} field.
@NativeType("FT_UShort")
public short x_ppem() { return nx_ppem(address()); }
/** @return the value of the {@code y_ppem} field.
@NativeType("FT_UShort")
public short y_ppem() { return ny_ppem(address()); }
/** @return the value of the {@code x_scale} field.
@NativeType("FT_Fixed")
public long x_scale() { return nx_scale(address()); }
/** @return the value of the {@code y_scale} field.
@NativeType("FT_Fixed")
public long y_scale() { return ny_scale(address()); }
/** @return the value of the {@code ascender} field.
@NativeType("FT_Pos")
public long ascender() { return nascender(address()); }
/** @return the value of the {@code descender} field.
@NativeType("FT_Pos")
public long descender() { return ndescender(address()); }
/** @return the value of the {@code height} field.
@NativeType("FT_Pos")
public long height() { return nheight(address()); }
/** @return the value of the {@code max_advance} field.
@NativeType("FT_Pos")
public long max_advance() { return nmax_advance(address()); }
// -----------------------------------
/** Returns a new {@code FT_Size_Metrics} instance for the specified memory address.
public static FT_Size_Metrics create(long address) {
return new FT_Size_Metrics(address, null);
}
/** Like {@link #create(long) create}, but returns {@code null} if {@code address} is {@code NULL}. | FT_Size_Metrics::createSafe | java | LWJGL/lwjgl3 | modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Size_Metrics.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Size_Metrics.java | BSD-3-Clause |
public static FT_Size_Metrics.Buffer create(long address, int capacity) {
return new Buffer(address, capacity);
} |
Create a {@link FT_Size_Metrics.Buffer} instance at the specified memory.
@param address the memory address
@param capacity the buffer capacity
| FT_Size_Metrics::create | java | LWJGL/lwjgl3 | modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Size_Metrics.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Size_Metrics.java | BSD-3-Clause |
public static FT_Size_Metrics.@Nullable Buffer createSafe(long address, int capacity) {
return address == NULL ? null : new Buffer(address, capacity);
} |
Create a {@link FT_Size_Metrics.Buffer} instance at the specified memory.
@param address the memory address
@param capacity the buffer capacity
public static FT_Size_Metrics.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_Size_Metrics::createSafe | java | LWJGL/lwjgl3 | modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Size_Metrics.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Size_Metrics.java | BSD-3-Clause |
public static short nx_ppem(long struct) { return memGetShort(struct + FT_Size_Metrics.X_PPEM); } |
Create a {@link FT_Size_Metrics.Buffer} instance at the specified memory.
@param address the memory address
@param capacity the buffer capacity
public static FT_Size_Metrics.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_Size_Metrics.@Nullable Buffer createSafe(long address, int capacity) {
return address == NULL ? null : new Buffer(address, capacity);
}
// -----------------------------------
/** Unsafe version of {@link #x_ppem}. | FT_Size_Metrics::nx_ppem | java | LWJGL/lwjgl3 | modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Size_Metrics.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Size_Metrics.java | BSD-3-Clause |
public static short ny_ppem(long struct) { return memGetShort(struct + FT_Size_Metrics.Y_PPEM); } |
Create a {@link FT_Size_Metrics.Buffer} instance at the specified memory.
@param address the memory address
@param capacity the buffer capacity
public static FT_Size_Metrics.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_Size_Metrics.@Nullable Buffer createSafe(long address, int capacity) {
return address == NULL ? null : new Buffer(address, capacity);
}
// -----------------------------------
/** Unsafe version of {@link #x_ppem}.
public static short nx_ppem(long struct) { return memGetShort(struct + FT_Size_Metrics.X_PPEM); }
/** Unsafe version of {@link #y_ppem}. | FT_Size_Metrics::ny_ppem | java | LWJGL/lwjgl3 | modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Size_Metrics.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Size_Metrics.java | BSD-3-Clause |
public static long nx_scale(long struct) { return memGetCLong(struct + FT_Size_Metrics.X_SCALE); } |
Create a {@link FT_Size_Metrics.Buffer} instance at the specified memory.
@param address the memory address
@param capacity the buffer capacity
public static FT_Size_Metrics.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_Size_Metrics.@Nullable Buffer createSafe(long address, int capacity) {
return address == NULL ? null : new Buffer(address, capacity);
}
// -----------------------------------
/** Unsafe version of {@link #x_ppem}.
public static short nx_ppem(long struct) { return memGetShort(struct + FT_Size_Metrics.X_PPEM); }
/** Unsafe version of {@link #y_ppem}.
public static short ny_ppem(long struct) { return memGetShort(struct + FT_Size_Metrics.Y_PPEM); }
/** Unsafe version of {@link #x_scale}. | FT_Size_Metrics::nx_scale | java | LWJGL/lwjgl3 | modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Size_Metrics.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Size_Metrics.java | BSD-3-Clause |
public static long ny_scale(long struct) { return memGetCLong(struct + FT_Size_Metrics.Y_SCALE); } |
Create a {@link FT_Size_Metrics.Buffer} instance at the specified memory.
@param address the memory address
@param capacity the buffer capacity
public static FT_Size_Metrics.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_Size_Metrics.@Nullable Buffer createSafe(long address, int capacity) {
return address == NULL ? null : new Buffer(address, capacity);
}
// -----------------------------------
/** Unsafe version of {@link #x_ppem}.
public static short nx_ppem(long struct) { return memGetShort(struct + FT_Size_Metrics.X_PPEM); }
/** Unsafe version of {@link #y_ppem}.
public static short ny_ppem(long struct) { return memGetShort(struct + FT_Size_Metrics.Y_PPEM); }
/** Unsafe version of {@link #x_scale}.
public static long nx_scale(long struct) { return memGetCLong(struct + FT_Size_Metrics.X_SCALE); }
/** Unsafe version of {@link #y_scale}. | FT_Size_Metrics::ny_scale | java | LWJGL/lwjgl3 | modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Size_Metrics.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Size_Metrics.java | BSD-3-Clause |
public static long nascender(long struct) { return memGetCLong(struct + FT_Size_Metrics.ASCENDER); } |
Create a {@link FT_Size_Metrics.Buffer} instance at the specified memory.
@param address the memory address
@param capacity the buffer capacity
public static FT_Size_Metrics.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_Size_Metrics.@Nullable Buffer createSafe(long address, int capacity) {
return address == NULL ? null : new Buffer(address, capacity);
}
// -----------------------------------
/** Unsafe version of {@link #x_ppem}.
public static short nx_ppem(long struct) { return memGetShort(struct + FT_Size_Metrics.X_PPEM); }
/** Unsafe version of {@link #y_ppem}.
public static short ny_ppem(long struct) { return memGetShort(struct + FT_Size_Metrics.Y_PPEM); }
/** Unsafe version of {@link #x_scale}.
public static long nx_scale(long struct) { return memGetCLong(struct + FT_Size_Metrics.X_SCALE); }
/** Unsafe version of {@link #y_scale}.
public static long ny_scale(long struct) { return memGetCLong(struct + FT_Size_Metrics.Y_SCALE); }
/** Unsafe version of {@link #ascender}. | FT_Size_Metrics::nascender | java | LWJGL/lwjgl3 | modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Size_Metrics.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Size_Metrics.java | BSD-3-Clause |
public static long ndescender(long struct) { return memGetCLong(struct + FT_Size_Metrics.DESCENDER); } |
Create a {@link FT_Size_Metrics.Buffer} instance at the specified memory.
@param address the memory address
@param capacity the buffer capacity
public static FT_Size_Metrics.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_Size_Metrics.@Nullable Buffer createSafe(long address, int capacity) {
return address == NULL ? null : new Buffer(address, capacity);
}
// -----------------------------------
/** Unsafe version of {@link #x_ppem}.
public static short nx_ppem(long struct) { return memGetShort(struct + FT_Size_Metrics.X_PPEM); }
/** Unsafe version of {@link #y_ppem}.
public static short ny_ppem(long struct) { return memGetShort(struct + FT_Size_Metrics.Y_PPEM); }
/** Unsafe version of {@link #x_scale}.
public static long nx_scale(long struct) { return memGetCLong(struct + FT_Size_Metrics.X_SCALE); }
/** Unsafe version of {@link #y_scale}.
public static long ny_scale(long struct) { return memGetCLong(struct + FT_Size_Metrics.Y_SCALE); }
/** Unsafe version of {@link #ascender}.
public static long nascender(long struct) { return memGetCLong(struct + FT_Size_Metrics.ASCENDER); }
/** Unsafe version of {@link #descender}. | FT_Size_Metrics::ndescender | java | LWJGL/lwjgl3 | modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Size_Metrics.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Size_Metrics.java | BSD-3-Clause |
public static long nheight(long struct) { return memGetCLong(struct + FT_Size_Metrics.HEIGHT); } |
Create a {@link FT_Size_Metrics.Buffer} instance at the specified memory.
@param address the memory address
@param capacity the buffer capacity
public static FT_Size_Metrics.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_Size_Metrics.@Nullable Buffer createSafe(long address, int capacity) {
return address == NULL ? null : new Buffer(address, capacity);
}
// -----------------------------------
/** Unsafe version of {@link #x_ppem}.
public static short nx_ppem(long struct) { return memGetShort(struct + FT_Size_Metrics.X_PPEM); }
/** Unsafe version of {@link #y_ppem}.
public static short ny_ppem(long struct) { return memGetShort(struct + FT_Size_Metrics.Y_PPEM); }
/** Unsafe version of {@link #x_scale}.
public static long nx_scale(long struct) { return memGetCLong(struct + FT_Size_Metrics.X_SCALE); }
/** Unsafe version of {@link #y_scale}.
public static long ny_scale(long struct) { return memGetCLong(struct + FT_Size_Metrics.Y_SCALE); }
/** Unsafe version of {@link #ascender}.
public static long nascender(long struct) { return memGetCLong(struct + FT_Size_Metrics.ASCENDER); }
/** Unsafe version of {@link #descender}.
public static long ndescender(long struct) { return memGetCLong(struct + FT_Size_Metrics.DESCENDER); }
/** Unsafe version of {@link #height}. | FT_Size_Metrics::nheight | java | LWJGL/lwjgl3 | modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Size_Metrics.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Size_Metrics.java | BSD-3-Clause |
public static long nmax_advance(long struct) { return memGetCLong(struct + FT_Size_Metrics.MAX_ADVANCE); } |
Create a {@link FT_Size_Metrics.Buffer} instance at the specified memory.
@param address the memory address
@param capacity the buffer capacity
public static FT_Size_Metrics.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_Size_Metrics.@Nullable Buffer createSafe(long address, int capacity) {
return address == NULL ? null : new Buffer(address, capacity);
}
// -----------------------------------
/** Unsafe version of {@link #x_ppem}.
public static short nx_ppem(long struct) { return memGetShort(struct + FT_Size_Metrics.X_PPEM); }
/** Unsafe version of {@link #y_ppem}.
public static short ny_ppem(long struct) { return memGetShort(struct + FT_Size_Metrics.Y_PPEM); }
/** Unsafe version of {@link #x_scale}.
public static long nx_scale(long struct) { return memGetCLong(struct + FT_Size_Metrics.X_SCALE); }
/** Unsafe version of {@link #y_scale}.
public static long ny_scale(long struct) { return memGetCLong(struct + FT_Size_Metrics.Y_SCALE); }
/** Unsafe version of {@link #ascender}.
public static long nascender(long struct) { return memGetCLong(struct + FT_Size_Metrics.ASCENDER); }
/** Unsafe version of {@link #descender}.
public static long ndescender(long struct) { return memGetCLong(struct + FT_Size_Metrics.DESCENDER); }
/** Unsafe version of {@link #height}.
public static long nheight(long struct) { return memGetCLong(struct + FT_Size_Metrics.HEIGHT); }
/** Unsafe version of {@link #max_advance}. | FT_Size_Metrics::nmax_advance | java | LWJGL/lwjgl3 | modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Size_Metrics.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_Size_Metrics.java | BSD-3-Clause |
public FT_UnitVector(ByteBuffer container) {
super(memAddress(container), __checkContainer(container, SIZEOF));
} |
Creates a {@code FT_UnitVector} 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_UnitVector::FT_UnitVector | java | LWJGL/lwjgl3 | modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_UnitVector.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_UnitVector.java | BSD-3-Clause |
public FT_UnitVector x(@NativeType("FT_F2Dot14") short value) { nx(address(), value); return this; } |
Creates a {@code FT_UnitVector} 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_UnitVector(ByteBuffer container) {
super(memAddress(container), __checkContainer(container, SIZEOF));
}
@Override
public int sizeof() { return SIZEOF; }
/** @return the value of the {@code x} field.
@NativeType("FT_F2Dot14")
public short x() { return nx(address()); }
/** @return the value of the {@code y} field.
@NativeType("FT_F2Dot14")
public short y() { return ny(address()); }
/** Sets the specified value to the {@code x} field. | FT_UnitVector::x | java | LWJGL/lwjgl3 | modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_UnitVector.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_UnitVector.java | BSD-3-Clause |
public FT_UnitVector y(@NativeType("FT_F2Dot14") short value) { ny(address(), value); return this; } |
Creates a {@code FT_UnitVector} 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_UnitVector(ByteBuffer container) {
super(memAddress(container), __checkContainer(container, SIZEOF));
}
@Override
public int sizeof() { return SIZEOF; }
/** @return the value of the {@code x} field.
@NativeType("FT_F2Dot14")
public short x() { return nx(address()); }
/** @return the value of the {@code y} field.
@NativeType("FT_F2Dot14")
public short y() { return ny(address()); }
/** Sets the specified value to the {@code x} field.
public FT_UnitVector x(@NativeType("FT_F2Dot14") short value) { nx(address(), value); return this; }
/** Sets the specified value to the {@code y} field. | FT_UnitVector::y | java | LWJGL/lwjgl3 | modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_UnitVector.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_UnitVector.java | BSD-3-Clause |
public FT_UnitVector set(
short x,
short y
) {
x(x);
y(y);
return this;
} |
Creates a {@code FT_UnitVector} 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_UnitVector(ByteBuffer container) {
super(memAddress(container), __checkContainer(container, SIZEOF));
}
@Override
public int sizeof() { return SIZEOF; }
/** @return the value of the {@code x} field.
@NativeType("FT_F2Dot14")
public short x() { return nx(address()); }
/** @return the value of the {@code y} field.
@NativeType("FT_F2Dot14")
public short y() { return ny(address()); }
/** Sets the specified value to the {@code x} field.
public FT_UnitVector x(@NativeType("FT_F2Dot14") short value) { nx(address(), value); return this; }
/** Sets the specified value to the {@code y} field.
public FT_UnitVector y(@NativeType("FT_F2Dot14") short value) { ny(address(), value); return this; }
/** Initializes this struct with the specified values. | FT_UnitVector::set | java | LWJGL/lwjgl3 | modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_UnitVector.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_UnitVector.java | BSD-3-Clause |
public static FT_UnitVector malloc() {
return new FT_UnitVector(nmemAllocChecked(SIZEOF), null);
} |
Copies the specified struct data to this struct.
@param src the source struct
@return this struct
public FT_UnitVector set(FT_UnitVector src) {
memCopy(src.address(), address(), SIZEOF);
return this;
}
// -----------------------------------
/** Returns a new {@code FT_UnitVector} instance allocated with {@link MemoryUtil#memAlloc memAlloc}. The instance must be explicitly freed. | FT_UnitVector::malloc | java | LWJGL/lwjgl3 | modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_UnitVector.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_UnitVector.java | BSD-3-Clause |
public static FT_UnitVector calloc() {
return new FT_UnitVector(nmemCallocChecked(1, SIZEOF), null);
} |
Copies the specified struct data to this struct.
@param src the source struct
@return this struct
public FT_UnitVector set(FT_UnitVector src) {
memCopy(src.address(), address(), SIZEOF);
return this;
}
// -----------------------------------
/** Returns a new {@code FT_UnitVector} instance allocated with {@link MemoryUtil#memAlloc memAlloc}. The instance must be explicitly freed.
public static FT_UnitVector malloc() {
return new FT_UnitVector(nmemAllocChecked(SIZEOF), null);
}
/** Returns a new {@code FT_UnitVector} instance allocated with {@link MemoryUtil#memCalloc memCalloc}. The instance must be explicitly freed. | FT_UnitVector::calloc | java | LWJGL/lwjgl3 | modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_UnitVector.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_UnitVector.java | BSD-3-Clause |
public static FT_UnitVector create() {
ByteBuffer container = BufferUtils.createByteBuffer(SIZEOF);
return new FT_UnitVector(memAddress(container), container);
} |
Copies the specified struct data to this struct.
@param src the source struct
@return this struct
public FT_UnitVector set(FT_UnitVector src) {
memCopy(src.address(), address(), SIZEOF);
return this;
}
// -----------------------------------
/** Returns a new {@code FT_UnitVector} instance allocated with {@link MemoryUtil#memAlloc memAlloc}. The instance must be explicitly freed.
public static FT_UnitVector malloc() {
return new FT_UnitVector(nmemAllocChecked(SIZEOF), null);
}
/** Returns a new {@code FT_UnitVector} instance allocated with {@link MemoryUtil#memCalloc memCalloc}. The instance must be explicitly freed.
public static FT_UnitVector calloc() {
return new FT_UnitVector(nmemCallocChecked(1, SIZEOF), null);
}
/** Returns a new {@code FT_UnitVector} instance allocated with {@link BufferUtils}. | FT_UnitVector::create | java | LWJGL/lwjgl3 | modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_UnitVector.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_UnitVector.java | BSD-3-Clause |
public static FT_UnitVector create(long address) {
return new FT_UnitVector(address, null);
} |
Copies the specified struct data to this struct.
@param src the source struct
@return this struct
public FT_UnitVector set(FT_UnitVector src) {
memCopy(src.address(), address(), SIZEOF);
return this;
}
// -----------------------------------
/** Returns a new {@code FT_UnitVector} instance allocated with {@link MemoryUtil#memAlloc memAlloc}. The instance must be explicitly freed.
public static FT_UnitVector malloc() {
return new FT_UnitVector(nmemAllocChecked(SIZEOF), null);
}
/** Returns a new {@code FT_UnitVector} instance allocated with {@link MemoryUtil#memCalloc memCalloc}. The instance must be explicitly freed.
public static FT_UnitVector calloc() {
return new FT_UnitVector(nmemCallocChecked(1, SIZEOF), null);
}
/** Returns a new {@code FT_UnitVector} instance allocated with {@link BufferUtils}.
public static FT_UnitVector create() {
ByteBuffer container = BufferUtils.createByteBuffer(SIZEOF);
return new FT_UnitVector(memAddress(container), container);
}
/** Returns a new {@code FT_UnitVector} instance for the specified memory address. | FT_UnitVector::create | java | LWJGL/lwjgl3 | modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_UnitVector.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_UnitVector.java | BSD-3-Clause |
public static @Nullable FT_UnitVector createSafe(long address) {
return address == NULL ? null : new FT_UnitVector(address, null);
} |
Copies the specified struct data to this struct.
@param src the source struct
@return this struct
public FT_UnitVector set(FT_UnitVector src) {
memCopy(src.address(), address(), SIZEOF);
return this;
}
// -----------------------------------
/** Returns a new {@code FT_UnitVector} instance allocated with {@link MemoryUtil#memAlloc memAlloc}. The instance must be explicitly freed.
public static FT_UnitVector malloc() {
return new FT_UnitVector(nmemAllocChecked(SIZEOF), null);
}
/** Returns a new {@code FT_UnitVector} instance allocated with {@link MemoryUtil#memCalloc memCalloc}. The instance must be explicitly freed.
public static FT_UnitVector calloc() {
return new FT_UnitVector(nmemCallocChecked(1, SIZEOF), null);
}
/** Returns a new {@code FT_UnitVector} instance allocated with {@link BufferUtils}.
public static FT_UnitVector create() {
ByteBuffer container = BufferUtils.createByteBuffer(SIZEOF);
return new FT_UnitVector(memAddress(container), container);
}
/** Returns a new {@code FT_UnitVector} instance for the specified memory address.
public static FT_UnitVector create(long address) {
return new FT_UnitVector(address, null);
}
/** Like {@link #create(long) create}, but returns {@code null} if {@code address} is {@code NULL}. | FT_UnitVector::createSafe | java | LWJGL/lwjgl3 | modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_UnitVector.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_UnitVector.java | BSD-3-Clause |
public static FT_UnitVector.Buffer malloc(int capacity) {
return new Buffer(nmemAllocChecked(__checkMalloc(capacity, SIZEOF)), capacity);
} |
Returns a new {@link FT_UnitVector.Buffer} instance allocated with {@link MemoryUtil#memAlloc memAlloc}. The instance must be explicitly freed.
@param capacity the buffer capacity
| FT_UnitVector::malloc | java | LWJGL/lwjgl3 | modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_UnitVector.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_UnitVector.java | BSD-3-Clause |
public static FT_UnitVector.Buffer calloc(int capacity) {
return new Buffer(nmemCallocChecked(capacity, SIZEOF), capacity);
} |
Returns a new {@link FT_UnitVector.Buffer} instance allocated with {@link MemoryUtil#memCalloc memCalloc}. The instance must be explicitly freed.
@param capacity the buffer capacity
| FT_UnitVector::calloc | java | LWJGL/lwjgl3 | modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_UnitVector.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_UnitVector.java | BSD-3-Clause |
public static FT_UnitVector.Buffer create(int capacity) {
ByteBuffer container = __create(capacity, SIZEOF);
return new Buffer(memAddress(container), container, -1, 0, capacity, capacity);
} |
Returns a new {@link FT_UnitVector.Buffer} instance allocated with {@link BufferUtils}.
@param capacity the buffer capacity
| FT_UnitVector::create | java | LWJGL/lwjgl3 | modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_UnitVector.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_UnitVector.java | BSD-3-Clause |
public static FT_UnitVector.Buffer create(long address, int capacity) {
return new Buffer(address, capacity);
} |
Create a {@link FT_UnitVector.Buffer} instance at the specified memory.
@param address the memory address
@param capacity the buffer capacity
| FT_UnitVector::create | java | LWJGL/lwjgl3 | modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_UnitVector.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_UnitVector.java | BSD-3-Clause |
public static FT_UnitVector.@Nullable Buffer createSafe(long address, int capacity) {
return address == NULL ? null : new Buffer(address, capacity);
} |
Create a {@link FT_UnitVector.Buffer} instance at the specified memory.
@param address the memory address
@param capacity the buffer capacity
public static FT_UnitVector.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_UnitVector::createSafe | java | LWJGL/lwjgl3 | modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_UnitVector.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_UnitVector.java | BSD-3-Clause |
public static FT_UnitVector malloc(MemoryStack stack) {
return new FT_UnitVector(stack.nmalloc(ALIGNOF, SIZEOF), null);
} |
Returns a new {@code FT_UnitVector} instance allocated on the specified {@link MemoryStack}.
@param stack the stack from which to allocate
| FT_UnitVector::malloc | java | LWJGL/lwjgl3 | modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_UnitVector.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_UnitVector.java | BSD-3-Clause |
public static FT_UnitVector calloc(MemoryStack stack) {
return new FT_UnitVector(stack.ncalloc(ALIGNOF, 1, SIZEOF), null);
} |
Returns a new {@code FT_UnitVector} instance allocated on the specified {@link MemoryStack} and initializes all its bits to zero.
@param stack the stack from which to allocate
| FT_UnitVector::calloc | java | LWJGL/lwjgl3 | modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_UnitVector.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_UnitVector.java | BSD-3-Clause |
public static FT_UnitVector.Buffer malloc(int capacity, MemoryStack stack) {
return new Buffer(stack.nmalloc(ALIGNOF, capacity * SIZEOF), capacity);
} |
Returns a new {@link FT_UnitVector.Buffer} instance allocated on the specified {@link MemoryStack}.
@param stack the stack from which to allocate
@param capacity the buffer capacity
| FT_UnitVector::malloc | java | LWJGL/lwjgl3 | modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_UnitVector.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_UnitVector.java | BSD-3-Clause |
public static FT_UnitVector.Buffer calloc(int capacity, MemoryStack stack) {
return new Buffer(stack.ncalloc(ALIGNOF, capacity, SIZEOF), capacity);
} |
Returns a new {@link FT_UnitVector.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_UnitVector::calloc | java | LWJGL/lwjgl3 | modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_UnitVector.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_UnitVector.java | BSD-3-Clause |
public static short nx(long struct) { return memGetShort(struct + FT_UnitVector.X); } |
Returns a new {@link FT_UnitVector.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_UnitVector.Buffer calloc(int capacity, MemoryStack stack) {
return new Buffer(stack.ncalloc(ALIGNOF, capacity, SIZEOF), capacity);
}
// -----------------------------------
/** Unsafe version of {@link #x}. | FT_UnitVector::nx | java | LWJGL/lwjgl3 | modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_UnitVector.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_UnitVector.java | BSD-3-Clause |
public static short ny(long struct) { return memGetShort(struct + FT_UnitVector.Y); } |
Returns a new {@link FT_UnitVector.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_UnitVector.Buffer calloc(int capacity, MemoryStack stack) {
return new Buffer(stack.ncalloc(ALIGNOF, capacity, SIZEOF), capacity);
}
// -----------------------------------
/** Unsafe version of {@link #x}.
public static short nx(long struct) { return memGetShort(struct + FT_UnitVector.X); }
/** Unsafe version of {@link #y}. | FT_UnitVector::ny | java | LWJGL/lwjgl3 | modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_UnitVector.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_UnitVector.java | BSD-3-Clause |
public static void nx(long struct, short value) { memPutShort(struct + FT_UnitVector.X, value); } |
Returns a new {@link FT_UnitVector.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_UnitVector.Buffer calloc(int capacity, MemoryStack stack) {
return new Buffer(stack.ncalloc(ALIGNOF, capacity, SIZEOF), capacity);
}
// -----------------------------------
/** Unsafe version of {@link #x}.
public static short nx(long struct) { return memGetShort(struct + FT_UnitVector.X); }
/** Unsafe version of {@link #y}.
public static short ny(long struct) { return memGetShort(struct + FT_UnitVector.Y); }
/** Unsafe version of {@link #x(short) x}. | FT_UnitVector::nx | java | LWJGL/lwjgl3 | modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_UnitVector.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_UnitVector.java | BSD-3-Clause |
public static void ny(long struct, short value) { memPutShort(struct + FT_UnitVector.Y, value); } |
Returns a new {@link FT_UnitVector.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_UnitVector.Buffer calloc(int capacity, MemoryStack stack) {
return new Buffer(stack.ncalloc(ALIGNOF, capacity, SIZEOF), capacity);
}
// -----------------------------------
/** Unsafe version of {@link #x}.
public static short nx(long struct) { return memGetShort(struct + FT_UnitVector.X); }
/** Unsafe version of {@link #y}.
public static short ny(long struct) { return memGetShort(struct + FT_UnitVector.Y); }
/** Unsafe version of {@link #x(short) x}.
public static void nx(long struct, short value) { memPutShort(struct + FT_UnitVector.X, value); }
/** Unsafe version of {@link #y(short) y}. | FT_UnitVector::ny | java | LWJGL/lwjgl3 | modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_UnitVector.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_UnitVector.java | BSD-3-Clause |
public FT_UnitVector.Buffer x(@NativeType("FT_F2Dot14") short value) { FT_UnitVector.nx(address(), value); return this; } |
Creates a new {@code FT_UnitVector.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_UnitVector#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_UnitVector getElementFactory() {
return ELEMENT_FACTORY;
}
/** @return the value of the {@code x} field.
@NativeType("FT_F2Dot14")
public short x() { return FT_UnitVector.nx(address()); }
/** @return the value of the {@code y} field.
@NativeType("FT_F2Dot14")
public short y() { return FT_UnitVector.ny(address()); }
/** Sets the specified value to the {@code x} field. | Buffer::x | java | LWJGL/lwjgl3 | modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_UnitVector.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_UnitVector.java | BSD-3-Clause |
public FT_UnitVector.Buffer y(@NativeType("FT_F2Dot14") short value) { FT_UnitVector.ny(address(), value); return this; } |
Creates a new {@code FT_UnitVector.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_UnitVector#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_UnitVector getElementFactory() {
return ELEMENT_FACTORY;
}
/** @return the value of the {@code x} field.
@NativeType("FT_F2Dot14")
public short x() { return FT_UnitVector.nx(address()); }
/** @return the value of the {@code y} field.
@NativeType("FT_F2Dot14")
public short y() { return FT_UnitVector.ny(address()); }
/** Sets the specified value to the {@code x} field.
public FT_UnitVector.Buffer x(@NativeType("FT_F2Dot14") short value) { FT_UnitVector.nx(address(), value); return this; }
/** Sets the specified value to the {@code y} field. | Buffer::y | java | LWJGL/lwjgl3 | modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_UnitVector.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_UnitVector.java | BSD-3-Clause |
public FT_StreamDesc(ByteBuffer container) {
super(memAddress(container), __checkContainer(container, SIZEOF));
} |
Creates a {@code FT_StreamDesc} 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_StreamDesc::FT_StreamDesc | java | LWJGL/lwjgl3 | modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_StreamDesc.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_StreamDesc.java | BSD-3-Clause |
public long value() { return nvalue(address()); } |
Creates a {@code FT_StreamDesc} 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_StreamDesc(ByteBuffer container) {
super(memAddress(container), __checkContainer(container, SIZEOF));
}
@Override
public int sizeof() { return SIZEOF; }
/** @return the value of the {@code value} field. | FT_StreamDesc::value | java | LWJGL/lwjgl3 | modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_StreamDesc.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_StreamDesc.java | BSD-3-Clause |
public FT_StreamDesc value(long value) { nvalue(address(), value); return this; } |
Creates a {@code FT_StreamDesc} 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_StreamDesc(ByteBuffer container) {
super(memAddress(container), __checkContainer(container, SIZEOF));
}
@Override
public int sizeof() { return SIZEOF; }
/** @return the value of the {@code value} field.
public long value() { return nvalue(address()); }
/** @return the value of the {@code pointer} field.
@NativeType("void *")
public long pointer() { return npointer(address()); }
/** Sets the specified value to the {@code value} field. | FT_StreamDesc::value | java | LWJGL/lwjgl3 | modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_StreamDesc.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_StreamDesc.java | BSD-3-Clause |
public FT_StreamDesc pointer(@NativeType("void *") long value) { npointer(address(), value); return this; } |
Creates a {@code FT_StreamDesc} 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_StreamDesc(ByteBuffer container) {
super(memAddress(container), __checkContainer(container, SIZEOF));
}
@Override
public int sizeof() { return SIZEOF; }
/** @return the value of the {@code value} field.
public long value() { return nvalue(address()); }
/** @return the value of the {@code pointer} field.
@NativeType("void *")
public long pointer() { return npointer(address()); }
/** Sets the specified value to the {@code value} field.
public FT_StreamDesc value(long value) { nvalue(address(), value); return this; }
/** Sets the specified value to the {@code pointer} field. | FT_StreamDesc::pointer | java | LWJGL/lwjgl3 | modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_StreamDesc.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_StreamDesc.java | BSD-3-Clause |
public static FT_StreamDesc malloc() {
return new FT_StreamDesc(nmemAllocChecked(SIZEOF), null);
} |
Copies the specified struct data to this struct.
@param src the source struct
@return this struct
public FT_StreamDesc set(FT_StreamDesc src) {
memCopy(src.address(), address(), SIZEOF);
return this;
}
// -----------------------------------
/** Returns a new {@code FT_StreamDesc} instance allocated with {@link MemoryUtil#memAlloc memAlloc}. The instance must be explicitly freed. | FT_StreamDesc::malloc | java | LWJGL/lwjgl3 | modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_StreamDesc.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_StreamDesc.java | BSD-3-Clause |
public static FT_StreamDesc calloc() {
return new FT_StreamDesc(nmemCallocChecked(1, SIZEOF), null);
} |
Copies the specified struct data to this struct.
@param src the source struct
@return this struct
public FT_StreamDesc set(FT_StreamDesc src) {
memCopy(src.address(), address(), SIZEOF);
return this;
}
// -----------------------------------
/** Returns a new {@code FT_StreamDesc} instance allocated with {@link MemoryUtil#memAlloc memAlloc}. The instance must be explicitly freed.
public static FT_StreamDesc malloc() {
return new FT_StreamDesc(nmemAllocChecked(SIZEOF), null);
}
/** Returns a new {@code FT_StreamDesc} instance allocated with {@link MemoryUtil#memCalloc memCalloc}. The instance must be explicitly freed. | FT_StreamDesc::calloc | java | LWJGL/lwjgl3 | modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_StreamDesc.java | https://github.com/LWJGL/lwjgl3/blob/master/modules/lwjgl/freetype/src/generated/java/org/lwjgl/util/freetype/FT_StreamDesc.java | BSD-3-Clause |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.