Class VkPhysicalDeviceSampleLocationsPropertiesEXT

All Implemented Interfaces:
AutoCloseable, NativeResource, Pointer

public class VkPhysicalDeviceSampleLocationsPropertiesEXT extends Struct<VkPhysicalDeviceSampleLocationsPropertiesEXT> implements NativeResource
Structure describing sample location limits that can be supported by an implementation.
Description

If the VkPhysicalDeviceSampleLocationsPropertiesEXT structure is included in the pNext chain of the VkPhysicalDeviceProperties2 structure passed to GetPhysicalDeviceProperties2, it is filled in with each corresponding implementation-dependent property.

Valid Usage (Implicit)
See Also

VkExtent2D

Layout


 struct VkPhysicalDeviceSampleLocationsPropertiesEXT {
     VkStructureType sType();
     void * pNext();
     VkSampleCountFlags sampleLocationSampleCounts();
     VkExtent2D maxSampleLocationGridSize();
     float sampleLocationCoordinateRange()[2];
     uint32_t sampleLocationSubPixelBits();
     VkBool32 variableSampleLocations();
 }