Class VkPhysicalDeviceConservativeRasterizationPropertiesEXT

All Implemented Interfaces:
AutoCloseable, NativeResource, Pointer

public class VkPhysicalDeviceConservativeRasterizationPropertiesEXT extends Struct<VkPhysicalDeviceConservativeRasterizationPropertiesEXT> implements NativeResource
Structure describing conservative raster properties that can be supported by an implementation.
Description

If the VkPhysicalDeviceConservativeRasterizationPropertiesEXT 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)

Layout


 struct VkPhysicalDeviceConservativeRasterizationPropertiesEXT {
     VkStructureType sType();
     void * pNext();
     float primitiveOverestimationSize();
     float maxExtraPrimitiveOverestimationSize();
     float extraPrimitiveOverestimationSizeGranularity();
     VkBool32 primitiveUnderestimation();
     VkBool32 conservativePointAndLineRasterization();
     VkBool32 degenerateTrianglesRasterized();
     VkBool32 degenerateLinesRasterized();
     VkBool32 fullyCoveredFragmentShaderInputVariable();
     VkBool32 conservativeRasterizationPostDepthCoverage();
 }