Class VkRenderingFragmentShadingRateAttachmentInfoKHR

java.lang.Object
org.lwjgl.system.Pointer.Default
org.lwjgl.system.Struct<VkRenderingFragmentShadingRateAttachmentInfoKHR>
org.lwjgl.vulkan.VkRenderingFragmentShadingRateAttachmentInfoKHR
All Implemented Interfaces:
AutoCloseable, org.lwjgl.system.NativeResource, org.lwjgl.system.Pointer

public class VkRenderingFragmentShadingRateAttachmentInfoKHR extends org.lwjgl.system.Struct<VkRenderingFragmentShadingRateAttachmentInfoKHR> implements org.lwjgl.system.NativeResource
Structure specifying fragment shading rate attachment information.
Description

This structure can be included in the pNext chain of VkRenderingInfo to define a fragment shading rate attachment. If imageView is NULL_HANDLE, or if this structure is not specified, the implementation behaves as if a valid shading rate attachment was specified with all texels specifying a single pixel per fragment.

Valid Usage
Valid Usage (Implicit)
See Also

VkExtent2D

Layout


 struct VkRenderingFragmentShadingRateAttachmentInfoKHR {
     VkStructureType sType();
     void const * pNext();
     VkImageView imageView();
     VkImageLayout imageLayout();
     VkExtent2D shadingRateAttachmentTexelSize();
 }