Class VkTextureLODGatherFormatPropertiesAMD

  • All Implemented Interfaces:
    java.lang.AutoCloseable, org.lwjgl.system.NativeResource, org.lwjgl.system.Pointer

    public class VkTextureLODGatherFormatPropertiesAMD
    extends org.lwjgl.system.Struct
    implements org.lwjgl.system.NativeResource
    Structure informing whether or not texture gather bias/LOD functionality is supported for a given image format and a given physical device.
    Valid Usage (Implicit)

    Member documentation

    • sType – the type of this structure.
    • pNextNULL.
    • supportsTextureGatherLODBiasAMD – tells if the image format can be used with texture gather bias/LOD functions, as introduced by the VK_AMD_texture_gather_bias_lod extension. This field is set by the implementation. User-specified value is ignored.

    Layout

    
     struct VkTextureLODGatherFormatPropertiesAMD {
         VkStructureType sType;
         void * pNext;
         VkBool32 supportsTextureGatherLODBiasAMD;
     }