C Specification
Bits which can be set in VkSamplerCreateInfo::flags
, specifying
additional parameters of a sampler, are:
// Provided by VK_VERSION_1_0
typedef enum VkSamplerCreateFlagBits {
// Provided by VK_EXT_fragment_density_map
VK_SAMPLER_CREATE_SUBSAMPLED_BIT_EXT = 0x00000001,
// Provided by VK_EXT_fragment_density_map
VK_SAMPLER_CREATE_SUBSAMPLED_COARSE_RECONSTRUCTION_BIT_EXT = 0x00000002,
// Provided by VK_EXT_non_seamless_cube_map
VK_SAMPLER_CREATE_NON_SEAMLESS_CUBE_MAP_BIT_EXT = 0x00000004,
} VkSamplerCreateFlagBits;
Description
-
VK_SAMPLER_CREATE_SUBSAMPLED_BIT_EXT
specifies that the sampler will read from an image created withflags
containingVK_IMAGE_CREATE_SUBSAMPLED_BIT_EXT
. -
VK_SAMPLER_CREATE_SUBSAMPLED_COARSE_RECONSTRUCTION_BIT_EXT
specifies that the implementation may use approximations when reconstructing a full color value for texture access from a subsampled image. -
VK_SAMPLER_CREATE_NON_SEAMLESS_CUBE_MAP_BIT_EXT
specifies that cube map edge handling is not performed.
Note
The approximations used when
|
Document Notes
For more information, see the Vulkan Specification
This page is extracted from the Vulkan Specification. Fixes and changes should be made to the Specification, not directly.