org.lwjgl.vulkan.VkPhysicalDeviceSampleLocationsPropertiesEXT Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lwjgl-vulkan Show documentation
Show all versions of lwjgl-vulkan Show documentation
A new generation graphics and compute API that provides high-efficiency, cross-platform access to modern GPUs used in a wide variety of devices from PCs and consoles to mobile phones and embedded platforms.
/*
* Copyright LWJGL. All rights reserved.
* License terms: https://www.lwjgl.org/license
* MACHINE GENERATED FILE, DO NOT EDIT
*/
package org.lwjgl.vulkan;
import java.nio.*;
import org.lwjgl.system.*;
import static org.lwjgl.system.Checks.*;
import static org.lwjgl.system.MemoryUtil.*;
/**
* Structure describing sample location limits that can be supported by an implementation.
*
* Description
*
*
* - {@code sampleLocationSampleCounts} is a bitmask of {@code VkSampleCountFlagBits} indicating the sample counts supporting custom sample locations.
* - {@code maxSampleLocationGridSize} is the maximum size of the pixel grid in which sample locations can vary that is supported for all sample counts in {@code sampleLocationSampleCounts}.
* - {@code sampleLocationCoordinateRange}[2] is the range of supported sample location coordinates.
* - {@code sampleLocationSubPixelBits} is the number of bits of subpixel precision for sample locations.
* - {@code variableSampleLocations} indicates whether the sample locations used by all pipelines that will be bound to a command buffer during a subpass must match. If set to {@link VK10#VK_TRUE TRUE}, the implementation supports variable sample locations in a subpass. If set to {@link VK10#VK_FALSE FALSE}, then the sample locations must stay constant in any given subpass.
*
*
* Valid Usage (Implicit)
*
*
* - {@code sType} must be {@link EXTSampleLocations#VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SAMPLE_LOCATIONS_PROPERTIES_EXT STRUCTURE_TYPE_PHYSICAL_DEVICE_SAMPLE_LOCATIONS_PROPERTIES_EXT}
* - {@code pNext} must be {@code NULL}
*
*
* If the {@link VkPhysicalDeviceSampleLocationsPropertiesEXT} structure is included in the {@code pNext} chain of {@link VkPhysicalDeviceProperties2KHR}, it is filled with the implementation-dependent limits.
*
* See Also
*
* {@link VkExtent2D}
*
* Layout
*
*
* struct VkPhysicalDeviceSampleLocationsPropertiesEXT {
* VkStructureType sType;
* void * pNext;
* VkSampleCountFlags sampleLocationSampleCounts;
* {@link VkExtent2D VkExtent2D} maxSampleLocationGridSize;
* float sampleLocationCoordinateRange[2];
* uint32_t sampleLocationSubPixelBits;
* VkBool32 variableSampleLocations;
* }
*/
public class VkPhysicalDeviceSampleLocationsPropertiesEXT extends Struct {
/** The struct size in bytes. */
public static final int SIZEOF;
public static final int ALIGNOF;
/** The struct member offsets. */
public static final int
STYPE,
PNEXT,
SAMPLELOCATIONSAMPLECOUNTS,
MAXSAMPLELOCATIONGRIDSIZE,
SAMPLELOCATIONCOORDINATERANGE,
SAMPLELOCATIONSUBPIXELBITS,
VARIABLESAMPLELOCATIONS;
static {
Layout layout = __struct(
__member(4),
__member(POINTER_SIZE),
__member(4),
__member(VkExtent2D.SIZEOF, VkExtent2D.ALIGNOF),
__array(4, 2),
__member(4),
__member(4)
);
SIZEOF = layout.getSize();
ALIGNOF = layout.getAlignment();
STYPE = layout.offsetof(0);
PNEXT = layout.offsetof(1);
SAMPLELOCATIONSAMPLECOUNTS = layout.offsetof(2);
MAXSAMPLELOCATIONGRIDSIZE = layout.offsetof(3);
SAMPLELOCATIONCOORDINATERANGE = layout.offsetof(4);
SAMPLELOCATIONSUBPIXELBITS = layout.offsetof(5);
VARIABLESAMPLELOCATIONS = layout.offsetof(6);
}
VkPhysicalDeviceSampleLocationsPropertiesEXT(long address, ByteBuffer container) {
super(address, container);
}
/**
* Creates a {@link VkPhysicalDeviceSampleLocationsPropertiesEXT} 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.
*
* The created instance holds a strong reference to the container object.
*/
public VkPhysicalDeviceSampleLocationsPropertiesEXT(ByteBuffer container) {
this(memAddress(container), checkContainer(container, SIZEOF));
}
@Override
public int sizeof() { return SIZEOF; }
/** Returns the value of the {@code sType} field. */
@NativeType("VkStructureType")
public int sType() { return nsType(address()); }
/** Returns the value of the {@code pNext} field. */
@NativeType("void *")
public long pNext() { return npNext(address()); }
/** Returns the value of the {@code sampleLocationSampleCounts} field. */
@NativeType("VkSampleCountFlags")
public int sampleLocationSampleCounts() { return nsampleLocationSampleCounts(address()); }
/** Returns a {@link VkExtent2D} view of the {@code maxSampleLocationGridSize} field. */
public VkExtent2D maxSampleLocationGridSize() { return nmaxSampleLocationGridSize(address()); }
/** Returns a {@link FloatBuffer} view of the {@code sampleLocationCoordinateRange} field. */
@NativeType("float[2]")
public FloatBuffer sampleLocationCoordinateRange() { return nsampleLocationCoordinateRange(address()); }
/** Returns the value at the specified index of the {@code sampleLocationCoordinateRange} field. */
public float sampleLocationCoordinateRange(int index) { return nsampleLocationCoordinateRange(address(), index); }
/** Returns the value of the {@code sampleLocationSubPixelBits} field. */
@NativeType("uint32_t")
public int sampleLocationSubPixelBits() { return nsampleLocationSubPixelBits(address()); }
/** Returns the value of the {@code variableSampleLocations} field. */
@NativeType("VkBool32")
public boolean variableSampleLocations() { return nvariableSampleLocations(address()) != 0; }
// -----------------------------------
/** Returns a new {@link VkPhysicalDeviceSampleLocationsPropertiesEXT} instance for the specified memory address or {@code null} if the address is {@code NULL}. */
public static VkPhysicalDeviceSampleLocationsPropertiesEXT create(long address) {
return address == NULL ? null : new VkPhysicalDeviceSampleLocationsPropertiesEXT(address, null);
}
/**
* Create a {@link VkPhysicalDeviceSampleLocationsPropertiesEXT.Buffer} instance at the specified memory.
*
* @param address the memory address
* @param capacity the buffer capacity
*/
public static Buffer create(long address, int capacity) {
return address == NULL ? null : new Buffer(address, null, -1, 0, capacity, capacity);
}
// -----------------------------------
/** Unsafe version of {@link #sType}. */
public static int nsType(long struct) { return memGetInt(struct + VkPhysicalDeviceSampleLocationsPropertiesEXT.STYPE); }
/** Unsafe version of {@link #pNext}. */
public static long npNext(long struct) { return memGetAddress(struct + VkPhysicalDeviceSampleLocationsPropertiesEXT.PNEXT); }
/** Unsafe version of {@link #sampleLocationSampleCounts}. */
public static int nsampleLocationSampleCounts(long struct) { return memGetInt(struct + VkPhysicalDeviceSampleLocationsPropertiesEXT.SAMPLELOCATIONSAMPLECOUNTS); }
/** Unsafe version of {@link #maxSampleLocationGridSize}. */
public static VkExtent2D nmaxSampleLocationGridSize(long struct) { return VkExtent2D.create(struct + VkPhysicalDeviceSampleLocationsPropertiesEXT.MAXSAMPLELOCATIONGRIDSIZE); }
/** Unsafe version of {@link #sampleLocationCoordinateRange}. */
public static FloatBuffer nsampleLocationCoordinateRange(long struct) { return memFloatBuffer(struct + VkPhysicalDeviceSampleLocationsPropertiesEXT.SAMPLELOCATIONCOORDINATERANGE, 2); }
/** Unsafe version of {@link #sampleLocationCoordinateRange(int) sampleLocationCoordinateRange}. */
public static float nsampleLocationCoordinateRange(long struct, int index) {
if (CHECKS) { check(index, 2); }
return memGetFloat(struct + VkPhysicalDeviceSampleLocationsPropertiesEXT.SAMPLELOCATIONCOORDINATERANGE + index * 4);
}
/** Unsafe version of {@link #sampleLocationSubPixelBits}. */
public static int nsampleLocationSubPixelBits(long struct) { return memGetInt(struct + VkPhysicalDeviceSampleLocationsPropertiesEXT.SAMPLELOCATIONSUBPIXELBITS); }
/** Unsafe version of {@link #variableSampleLocations}. */
public static int nvariableSampleLocations(long struct) { return memGetInt(struct + VkPhysicalDeviceSampleLocationsPropertiesEXT.VARIABLESAMPLELOCATIONS); }
// -----------------------------------
/** An array of {@link VkPhysicalDeviceSampleLocationsPropertiesEXT} structs. */
public static class Buffer extends StructBuffer {
/**
* Creates a new {@link VkPhysicalDeviceSampleLocationsPropertiesEXT.Buffer} instance backed by the specified container.
*
* Changes to the container's content will be visible to the struct buffer instance and vice versa. The two buffers' position, limit, and mark values
* will be independent. The new buffer's position will be zero, its capacity and its limit will be the number of bytes remaining in this buffer divided
* by {@link VkPhysicalDeviceSampleLocationsPropertiesEXT#SIZEOF}, and its mark will be undefined.
*
* The created buffer instance holds a strong reference to the container object.
*/
public Buffer(ByteBuffer container) {
super(container, container.remaining() / SIZEOF);
}
Buffer(long address, 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 newBufferInstance(long address, ByteBuffer container, int mark, int pos, int lim, int cap) {
return new Buffer(address, container, mark, pos, lim, cap);
}
@Override
protected VkPhysicalDeviceSampleLocationsPropertiesEXT newInstance(long address) {
return new VkPhysicalDeviceSampleLocationsPropertiesEXT(address, container);
}
@Override
public int sizeof() {
return SIZEOF;
}
/** Returns the value of the {@code sType} field. */
@NativeType("VkStructureType")
public int sType() { return VkPhysicalDeviceSampleLocationsPropertiesEXT.nsType(address()); }
/** Returns the value of the {@code pNext} field. */
@NativeType("void *")
public long pNext() { return VkPhysicalDeviceSampleLocationsPropertiesEXT.npNext(address()); }
/** Returns the value of the {@code sampleLocationSampleCounts} field. */
@NativeType("VkSampleCountFlags")
public int sampleLocationSampleCounts() { return VkPhysicalDeviceSampleLocationsPropertiesEXT.nsampleLocationSampleCounts(address()); }
/** Returns a {@link VkExtent2D} view of the {@code maxSampleLocationGridSize} field. */
public VkExtent2D maxSampleLocationGridSize() { return VkPhysicalDeviceSampleLocationsPropertiesEXT.nmaxSampleLocationGridSize(address()); }
/** Returns a {@link FloatBuffer} view of the {@code sampleLocationCoordinateRange} field. */
@NativeType("float[2]")
public FloatBuffer sampleLocationCoordinateRange() { return VkPhysicalDeviceSampleLocationsPropertiesEXT.nsampleLocationCoordinateRange(address()); }
/** Returns the value at the specified index of the {@code sampleLocationCoordinateRange} field. */
public float sampleLocationCoordinateRange(int index) { return VkPhysicalDeviceSampleLocationsPropertiesEXT.nsampleLocationCoordinateRange(address(), index); }
/** Returns the value of the {@code sampleLocationSubPixelBits} field. */
@NativeType("uint32_t")
public int sampleLocationSubPixelBits() { return VkPhysicalDeviceSampleLocationsPropertiesEXT.nsampleLocationSubPixelBits(address()); }
/** Returns the value of the {@code variableSampleLocations} field. */
@NativeType("VkBool32")
public boolean variableSampleLocations() { return VkPhysicalDeviceSampleLocationsPropertiesEXT.nvariableSampleLocations(address()) != 0; }
}
}