Record Class VkPhysicalDeviceFragmentShadingRateEnumsFeaturesNV
- All Implemented Interfaces:
IPointer
,IVkPhysicalDeviceFragmentShadingRateEnumsFeaturesNV
Represents a pointer to a VkPhysicalDeviceFragmentShadingRateEnumsFeaturesNV
structure in native memory.
Structure
typedef struct VkPhysicalDeviceFragmentShadingRateEnumsFeaturesNV {
VkStructureType
sType
;
void* pNext
; // optional
VkBool32 fragmentShadingRateEnums
;
VkBool32 supersampleFragmentShadingRates
;
VkBool32 noInvocationFragmentShadingRates
;
} VkPhysicalDeviceFragmentShadingRateEnumsFeaturesNV;
Auto initialization
This structure has the following members that can be automatically initialized:
sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FRAGMENT_SHADING_RATE_ENUMS_FEATURES_NV
The allocate
(allocate(Arena)
, allocate(Arena, long)
)
functions will automatically initialize these fields. Also, you may call autoInit()
to initialize these fields manually for non-allocated instances.
Contracts
The property segment()
should always be not-null
(segment != NULL && !segment.equals(MemorySegment.NULL)
), and properly aligned to
LAYOUT.byteAlignment()
bytes. To represent null pointer, you may use a Java
null
instead. See the documentation of IPointer.segment()
for more details.
The constructor of this class is marked as UnsafeConstructor
, because it does not
perform any runtime check. The constructor can be useful for automatic code generators.
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final record
Represents a pointer to / an array ofVkPhysicalDeviceFragmentShadingRateEnumsFeaturesNV
structure(s) in native memory. -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final long
static final StructLayout
static final ValueLayout.OfInt
static final ValueLayout.OfInt
static final AddressLayout
static final ValueLayout.OfInt
static final ValueLayout.OfInt
static final long
static final long
static final long
static final long
static final long
static final MemoryLayout.PathElement
static final MemoryLayout.PathElement
static final MemoryLayout.PathElement
static final MemoryLayout.PathElement
static final MemoryLayout.PathElement
static final long
static final long
static final long
static final long
static final long
-
Constructor Summary
ConstructorsConstructorDescriptionVkPhysicalDeviceFragmentShadingRateEnumsFeaturesNV
(@NotNull MemorySegment segment) Creates an instance of aVkPhysicalDeviceFragmentShadingRateEnumsFeaturesNV
record class. -
Method Summary
Modifier and TypeMethodDescriptionvoid
autoInit()
final boolean
Indicates whether some other object is "equal to" this one.int
fragmentShadingRateEnums
(int value) final int
hashCode()
Returns a hash code value for this object.int
noInvocationFragmentShadingRates
(int value) pNext()
void
pNext
(MemorySegment value) @NotNull MemorySegment
segment()
Returns the value of thesegment
record component.int
sType()
sType
(int value) int
supersampleFragmentShadingRates
(int value) final String
toString()
Returns a string representation of this record class.
-
Field Details
-
LAYOUT
-
BYTES
public static final long BYTES -
PATH$sType
-
PATH$pNext
-
PATH$fragmentShadingRateEnums
-
PATH$supersampleFragmentShadingRates
-
PATH$noInvocationFragmentShadingRates
-
LAYOUT$sType
-
LAYOUT$pNext
-
LAYOUT$fragmentShadingRateEnums
-
LAYOUT$supersampleFragmentShadingRates
-
LAYOUT$noInvocationFragmentShadingRates
-
SIZE$sType
public static final long SIZE$sType -
SIZE$pNext
public static final long SIZE$pNext -
SIZE$fragmentShadingRateEnums
public static final long SIZE$fragmentShadingRateEnums -
SIZE$supersampleFragmentShadingRates
public static final long SIZE$supersampleFragmentShadingRates -
SIZE$noInvocationFragmentShadingRates
public static final long SIZE$noInvocationFragmentShadingRates -
OFFSET$sType
public static final long OFFSET$sType -
OFFSET$pNext
public static final long OFFSET$pNext -
OFFSET$fragmentShadingRateEnums
public static final long OFFSET$fragmentShadingRateEnums -
OFFSET$supersampleFragmentShadingRates
public static final long OFFSET$supersampleFragmentShadingRates -
OFFSET$noInvocationFragmentShadingRates
public static final long OFFSET$noInvocationFragmentShadingRates
-
-
Constructor Details
-
VkPhysicalDeviceFragmentShadingRateEnumsFeaturesNV
Creates an instance of aVkPhysicalDeviceFragmentShadingRateEnumsFeaturesNV
record class.- Parameters:
segment
- the value for thesegment
record component
-
-
Method Details
-
allocate
-
allocate
public static VkPhysicalDeviceFragmentShadingRateEnumsFeaturesNV.Ptr allocate(Arena arena, long count) -
clone
public static VkPhysicalDeviceFragmentShadingRateEnumsFeaturesNV clone(Arena arena, VkPhysicalDeviceFragmentShadingRateEnumsFeaturesNV src) -
autoInit
public void autoInit() -
sType
-
sType
public VkPhysicalDeviceFragmentShadingRateEnumsFeaturesNV sType(@EnumType(VkStructureType.class) int value) -
pNext
-
pNext
-
pNext
public VkPhysicalDeviceFragmentShadingRateEnumsFeaturesNV pNext(@Nullable @Nullable IPointer pointer) -
fragmentShadingRateEnums
-
fragmentShadingRateEnums
public VkPhysicalDeviceFragmentShadingRateEnumsFeaturesNV fragmentShadingRateEnums(@NativeType("VkBool32") @Unsigned int value) -
supersampleFragmentShadingRates
-
supersampleFragmentShadingRates
public VkPhysicalDeviceFragmentShadingRateEnumsFeaturesNV supersampleFragmentShadingRates(@NativeType("VkBool32") @Unsigned int value) -
noInvocationFragmentShadingRates
-
noInvocationFragmentShadingRates
public VkPhysicalDeviceFragmentShadingRateEnumsFeaturesNV noInvocationFragmentShadingRates(@NativeType("VkBool32") @Unsigned int value) -
toString
-
hashCode
-
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object)
. -
segment
Returns the value of thesegment
record component.
-