Class VkSamplerReductionModeCreateInfo

java.lang.Object
org.lwjgl.system.Pointer.Default
org.lwjgl.system.Struct<VkSamplerReductionModeCreateInfo>
org.lwjgl.vulkan.VkSamplerReductionModeCreateInfo
All Implemented Interfaces:
AutoCloseable, org.lwjgl.system.NativeResource, org.lwjgl.system.Pointer
Direct Known Subclasses:
VkSamplerReductionModeCreateInfoEXT

public class VkSamplerReductionModeCreateInfo extends org.lwjgl.system.Struct<VkSamplerReductionModeCreateInfo> implements org.lwjgl.system.NativeResource
Structure specifying sampler reduction mode.
Description

If the pNext chain of VkSamplerCreateInfo includes a VkSamplerReductionModeCreateInfo structure, then that structure includes a mode controlling how texture filtering combines texel values.

If this structure is not present, reductionMode is considered to be SAMPLER_REDUCTION_MODE_WEIGHTED_AVERAGE.

Valid Usage (Implicit)

Layout


 struct VkSamplerReductionModeCreateInfo {
     VkStructureType sType();
     void const * pNext();
     VkSamplerReductionMode reductionMode();
 }